Skip to content

Commit 0b80d65

Browse files
committed
☕ chore: add info for the packages
1 parent 3d7799a commit 0b80d65

25 files changed

Lines changed: 323 additions & 25 deletions

File tree

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "tinyclaw-monorepo",
33
"version": "1.0.0",
4+
"description": "Your autonomous AI companion",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"private": true,
58
"workspaces": [
69
"packages/*",

packages/compactor/package.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
{
22
"name": "@tinyclaw/compactor",
3-
"version": "0.0.1",
4-
"description": "Context compaction engine for Tiny Claw",
5-
"license": "MIT",
6-
"private": true,
3+
"version": "1.0.0",
4+
"description": "Layered conversation compaction and token optimization for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
77
"main": "src/index.ts",
88
"types": "src/index.ts",
99
"files": [
1010
"dist"
1111
],
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
15+
"directory": "packages/compactor"
16+
},
17+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/compactor#readme",
18+
"bugs": {
19+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
20+
},
21+
"keywords": ["tinyclaw", "context", "compaction", "compression"],
1222
"engines": {
1323
"node": ">=18"
1424
},

packages/config/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
{
22
"name": "@tinyclaw/config",
33
"version": "1.0.0",
4+
"description": "SQLite-backed persistent configuration for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
69
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/config"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/config#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "configuration", "settings"],
720
"dependencies": {
821
"@tinyclaw/core": "workspace:*",
922
"@tinyclaw/types": "workspace:*",

packages/core/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"name": "@tinyclaw/core",
33
"version": "1.0.0",
4+
"description": "Core agent runtime for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
69
"types": "src/index.ts",
@@ -9,6 +12,16 @@
912
"./messages": "./src/messages.ts",
1013
"./owner-auth": "./src/owner-auth.ts"
1114
},
15+
"repository": {
16+
"type": "git",
17+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
18+
"directory": "packages/core"
19+
},
20+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/core#readme",
21+
"bugs": {
22+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
23+
},
24+
"keywords": ["tinyclaw", "ai", "agent", "runtime"],
1225
"scripts": {
1326
"build": "bun build src/index.ts --outdir ./dist --target bun",
1427
"dev": "bun run --watch src/index.ts"

packages/delegation/package.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,22 @@
11
{
22
"name": "@tinyclaw/delegation",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
4+
"description": "Sub-agent delegation and lifecycle management for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
7+
"type": "module",
48
"main": "src/index.ts",
59
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/delegation"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/delegation#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "delegation", "sub-agent", "tasks"],
620
"dependencies": {
721
"@tinyclaw/types": "workspace:*",
822
"@tinyclaw/logger": "workspace:*",

packages/heartware/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
{
22
"name": "@tinyclaw/heartware",
33
"version": "1.0.0",
4+
"description": "Personality and self-configuration system for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
69
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/heartware"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/heartware#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "personality", "self-configuration"],
720
"dependencies": {
821
"@tinyclaw/types": "workspace:*",
922
"@tinyclaw/logger": "workspace:*"

packages/intercom/package.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
{
22
"name": "@tinyclaw/intercom",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
4+
"description": "Lightweight pub/sub event bus for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
6-
"types": "src/index.ts"
9+
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/intercom"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/intercom#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "pubsub", "events", "inter-agent"]
720
}

packages/learning/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
{
22
"name": "@tinyclaw/learning",
33
"version": "1.0.0",
4+
"description": "Pattern detection and adaptive learning engine for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
69
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/learning"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/learning#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "learning", "adaptation", "patterns"],
720
"dependencies": {
821
"@tinyclaw/types": "workspace:*"
922
}

packages/logger/package.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,22 @@
11
{
22
"name": "@tinyclaw/logger",
33
"version": "1.0.0",
4+
"description": "Context-aware structured logging for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
69
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/logger"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/logger#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "logging", "structured-logging"],
720
"dependencies": {
821
"@wgtechlabs/log-engine": "^2.3.0"
922
}

packages/matcher/package.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
{
22
"name": "@tinyclaw/matcher",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
4+
"description": "Hybrid semantic text matching engine for Tiny Claw",
5+
"license": "GPL-3.0",
6+
"author": "Waren Gonzaga",
47
"type": "module",
58
"main": "src/index.ts",
6-
"types": "src/index.ts"
9+
"types": "src/index.ts",
10+
"repository": {
11+
"type": "git",
12+
"url": "git+https://github.com/warengonzaga/tinyclaw.git",
13+
"directory": "packages/matcher"
14+
},
15+
"homepage": "https://github.com/warengonzaga/tinyclaw/tree/main/packages/matcher#readme",
16+
"bugs": {
17+
"url": "https://github.com/warengonzaga/tinyclaw/issues"
18+
},
19+
"keywords": ["tinyclaw", "text-matching", "semantic", "fuzzy"]
720
}

0 commit comments

Comments
 (0)