@toolkit-cli/toolkode 1.3.7 → 1.3.8

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 (2) hide show
  1. package/README.md +86 -6
  2. package/package.json +12 -2
package/README.md CHANGED
@@ -1,15 +1,95 @@
1
- # js
1
+ # tk_ toolkode
2
2
 
3
- To install dependencies:
3
+ **The AI engineering terminal. Free.**
4
+
5
+ ```
6
+ $ npm i -g @toolkit-cli/toolkode
7
+ ```
8
+
9
+ ```
10
+ $ toolkode
11
+
12
+ fix broken tests
13
+
14
+ [agent] Reading test files
15
+ [agent] Found 3 failures in auth.test.ts
16
+ [agent] Fixing import path
17
+ [agent] Re-running tests
18
+ [agent] All tests passing
19
+
20
+ ~/project:main ● tk_
21
+ ```
22
+
23
+ ## Install
4
24
 
5
25
  ```bash
6
- bun install
26
+ # npm
27
+ npm i -g @toolkit-cli/toolkode
28
+
29
+ # brew
30
+ brew install aaronmrosenthal/tap/toolkode
31
+
32
+ # curl
33
+ curl -fsSL https://toolkode.com/install | bash
7
34
  ```
8
35
 
9
- To run:
36
+ Then: `cd your-project && toolkode`
37
+
38
+ ## What you get
39
+
40
+ - **Spec-driven workflow** — `/specify` → `/plan` → `/tasks` → `/implement`. Not a chat app.
41
+ - **Sub-agents** — background tasks, git worktree isolation, parallel execution
42
+ - **Agent teams** — multiple agents coordinating on shared task lists
43
+ - **Any model** — Toolkit-LLM, Claude, GPT, Gemini, Ollama, or any OpenAI-compatible endpoint
44
+ - **39 bundled skills** — commit, review, debug, security-review, release-notes, and more
45
+ - **MCP servers** — connect external tools and data sources
46
+ - **Auto-memory** — learns your project across sessions, stored locally
47
+ - **Hooks** — 20 events, 4 types (command, http, prompt, agent)
48
+ - **51 themes** — gruvbox, catppuccin, dracula, nord, tokyonight, rose-pine, and retro classics
49
+ - **Vim mode** — for when you mean it
50
+ - **Headless mode** — `toolkode -p "fix the build"` for CI/scripts
51
+ - **Skills marketplace** — 90K+ community skills
52
+ - **Private by default** — no telemetry, no session sharing, your code stays local
53
+
54
+ ## Quick start
10
55
 
11
56
  ```bash
12
- bun run index.ts
57
+ toolkode # start
58
+ /specify "add auth" # describe what to build
59
+ /plan # design the approach
60
+ /tasks # break into steps
61
+ /implement # execute every task
13
62
  ```
14
63
 
15
- This project was created using `bun init` in bun v1.2.12. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
64
+ Side conversations without polluting your main thread:
65
+
66
+ ```bash
67
+ /ask "how does the auth middleware work?"
68
+ ```
69
+
70
+ Schedule recurring checks:
71
+
72
+ ```bash
73
+ /loop 5m check if the build is green
74
+ ```
75
+
76
+ ## Models
77
+
78
+ Toolkit-LLM models included with every plan. Or bring your own:
79
+
80
+ ```bash
81
+ # Use any provider
82
+ toolkode --provider anthropic
83
+ toolkode --provider openai
84
+ toolkode --provider ollama --model codellama
85
+ ```
86
+
87
+ ## Links
88
+
89
+ - [toolkode.com](https://toolkode.com) — Homepage
90
+ - [Quickstart](https://toolkode.com/quickstart) — Get started
91
+ - [Bug reports](https://github.com/aaronmrosenthal/toolkode-releases/issues) — Report issues
92
+
93
+ ## License
94
+
95
+ Copyright (c) 2026 Toolkit-CLI LLC. All rights reserved. See [LICENSE](https://github.com/aaronmrosenthal/toolkode-releases/blob/main/LICENSE) for details.
package/package.json CHANGED
@@ -1,9 +1,19 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
- "version": "1.3.7",
3
+ "version": "1.3.8",
4
4
  "name": "@toolkit-cli/toolkode",
5
5
  "type": "module",
6
- "license": "MIT",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "description": "The AI engineering terminal. Free. Write code. Run agents. Ship faster.",
8
+ "keywords": ["ai", "terminal", "coding-agent", "cli", "llm", "code-generation", "subagents", "mcp", "toolkode"],
9
+ "homepage": "https://toolkode.com",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/aaronmrosenthal/toolkode-releases"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/aaronmrosenthal/toolkode-releases/issues"
16
+ },
7
17
  "scripts": {
8
18
  "prepare": "effect-language-service patch || true",
9
19
  "typecheck": "tsgo --noEmit",