tako-cli 0.3.1 → 0.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +58 -1
  2. package/dist/index.js +265 -319
  3. package/package.json +25 -4
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "tako-cli",
3
- "version": "0.3.1",
4
- "description": "Tako CLI - AI coding tools launcher",
3
+ "version": "0.3.2",
4
+ "description": "Tako CLI unified launcher for AI coding tools (Claude Code, Codex, Gemini) with multi-agent session management",
5
5
  "type": "module",
6
+ "homepage": "https://github.com/tako-dev/cli#readme",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/tako-dev/cli.git"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/tako-dev/cli/issues"
13
+ },
14
+ "author": "Barrierml",
6
15
  "bin": {
7
16
  "tako": "./dist/index.js"
8
17
  },
@@ -20,9 +29,11 @@
20
29
  "test:platform": "bun test tests/platform.*.test.ts",
21
30
  "test:pre-release": "bun test tests/pre-release.test.ts",
22
31
  "test:e2e": "bash scripts/test-install.sh",
32
+ "test:e2e-installer": "TAKO_HOME=$(mktemp -d) bun tests/e2e/installer-driver.ts",
23
33
  "test:watch": "bun test --watch",
24
34
  "test:coverage": "bun test --coverage",
25
- "release": "bun run test:pre-release && bun scripts/bump.ts patch && npm publish --registry https://registry.npmjs.org && ./scripts/sync-gitee.sh",
35
+ "release": "bun scripts/bump.ts patch && git add package.json && git commit -m \"chore: release v$(node -p 'require(\\\"./package.json\\\").version')\" && git tag v$(node -p 'require(\\\"./package.json\\\").version') && git push && git push --tags",
36
+ "release:minor": "bun scripts/bump.ts minor && git add package.json && git commit -m \"chore: release v$(node -p 'require(\\\"./package.json\\\").version')\" && git tag v$(node -p 'require(\\\"./package.json\\\").version') && git push && git push --tags",
26
37
  "prepublishOnly": "bun run build"
27
38
  },
28
39
  "devDependencies": {
@@ -33,7 +44,17 @@
33
44
  "cli",
34
45
  "ai",
35
46
  "claude",
36
- "codex"
47
+ "claude-code",
48
+ "codex",
49
+ "gemini-cli",
50
+ "ai-agent",
51
+ "coding-agent",
52
+ "llm",
53
+ "tui",
54
+ "terminal",
55
+ "deepseek",
56
+ "developer-tools",
57
+ "ai-coding"
37
58
  ],
38
59
  "license": "MIT",
39
60
  "dependencies": {