agentikit 0.0.12 → 0.0.14

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 (146) hide show
  1. package/LICENSE +385 -0
  2. package/README.md +186 -100
  3. package/dist/cli.js +671 -0
  4. package/dist/common.js +192 -0
  5. package/dist/{src/config-cli.js → config-cli.js} +14 -6
  6. package/dist/{src/config.js → config.js} +92 -24
  7. package/dist/{src/db.js → db.js} +109 -35
  8. package/dist/{src/embedder.js → embedder.js} +57 -2
  9. package/dist/file-context.js +158 -0
  10. package/dist/{src/handlers → handlers}/command-handler.js +2 -0
  11. package/dist/{src/handlers → handlers}/index.js +0 -6
  12. package/dist/{src/indexer.js → indexer.js} +34 -10
  13. package/dist/init.js +43 -0
  14. package/dist/lockfile.js +55 -0
  15. package/dist/matchers.js +157 -0
  16. package/dist/{src/metadata.js → metadata.js} +12 -1
  17. package/dist/{src/origin-resolve.js → origin-resolve.js} +10 -9
  18. package/dist/paths.js +82 -0
  19. package/dist/{src/registry-install.js → registry-install.js} +145 -17
  20. package/dist/{src/registry-resolve.js → registry-resolve.js} +178 -18
  21. package/dist/{src/registry-search.js → registry-search.js} +8 -16
  22. package/dist/renderers.js +276 -0
  23. package/dist/{src/ripgrep-install.js → ripgrep-install.js} +5 -5
  24. package/dist/{src/ripgrep-resolve.js → ripgrep-resolve.js} +21 -11
  25. package/dist/self-update.js +220 -0
  26. package/dist/{src/stash-add.js → stash-add.js} +11 -2
  27. package/dist/stash-clone.js +115 -0
  28. package/dist/{src/stash-registry.js → stash-registry.js} +15 -41
  29. package/dist/{src/stash-search.js → stash-search.js} +67 -55
  30. package/dist/{src/stash-show.js → stash-show.js} +30 -3
  31. package/dist/{src/stash-source.js → stash-source.js} +56 -9
  32. package/dist/submit.js +552 -0
  33. package/dist/{src/walker.js → walker.js} +38 -0
  34. package/package.json +7 -16
  35. package/dist/index.d.ts +0 -28
  36. package/dist/index.js +0 -15
  37. package/dist/src/asset-spec.d.ts +0 -16
  38. package/dist/src/asset-type-handler.d.ts +0 -27
  39. package/dist/src/cli.d.ts +0 -2
  40. package/dist/src/cli.js +0 -399
  41. package/dist/src/common.d.ts +0 -13
  42. package/dist/src/common.js +0 -60
  43. package/dist/src/config-cli.d.ts +0 -9
  44. package/dist/src/config.d.ts +0 -50
  45. package/dist/src/db.d.ts +0 -46
  46. package/dist/src/embedder.d.ts +0 -10
  47. package/dist/src/frontmatter.d.ts +0 -30
  48. package/dist/src/github.d.ts +0 -4
  49. package/dist/src/handlers/agent-handler.d.ts +0 -2
  50. package/dist/src/handlers/command-handler.d.ts +0 -2
  51. package/dist/src/handlers/index.d.ts +0 -6
  52. package/dist/src/handlers/knowledge-handler.d.ts +0 -2
  53. package/dist/src/handlers/markdown-helpers.d.ts +0 -7
  54. package/dist/src/handlers/script-handler.d.ts +0 -2
  55. package/dist/src/handlers/skill-handler.d.ts +0 -2
  56. package/dist/src/handlers/tool-handler.d.ts +0 -2
  57. package/dist/src/indexer.d.ts +0 -22
  58. package/dist/src/init.d.ts +0 -19
  59. package/dist/src/init.js +0 -99
  60. package/dist/src/llm.d.ts +0 -15
  61. package/dist/src/markdown.d.ts +0 -18
  62. package/dist/src/metadata.d.ts +0 -41
  63. package/dist/src/origin-resolve.d.ts +0 -19
  64. package/dist/src/registry-install.d.ts +0 -11
  65. package/dist/src/registry-resolve.d.ts +0 -3
  66. package/dist/src/registry-search.d.ts +0 -27
  67. package/dist/src/registry-types.d.ts +0 -62
  68. package/dist/src/ripgrep-install.d.ts +0 -12
  69. package/dist/src/ripgrep-resolve.d.ts +0 -13
  70. package/dist/src/ripgrep.d.ts +0 -3
  71. package/dist/src/similarity.js +0 -211
  72. package/dist/src/stash-add.d.ts +0 -4
  73. package/dist/src/stash-clone.d.ts +0 -22
  74. package/dist/src/stash-clone.js +0 -83
  75. package/dist/src/stash-ref.d.ts +0 -31
  76. package/dist/src/stash-registry.d.ts +0 -18
  77. package/dist/src/stash-resolve.d.ts +0 -2
  78. package/dist/src/stash-search.d.ts +0 -8
  79. package/dist/src/stash-show.d.ts +0 -5
  80. package/dist/src/stash-source.d.ts +0 -24
  81. package/dist/src/stash-types.d.ts +0 -227
  82. package/dist/src/stash.d.ts +0 -16
  83. package/dist/src/stash.js +0 -9
  84. package/dist/src/tool-runner.d.ts +0 -35
  85. package/dist/src/walker.d.ts +0 -19
  86. package/src/asset-spec.ts +0 -85
  87. package/src/asset-type-handler.ts +0 -77
  88. package/src/cli.ts +0 -427
  89. package/src/common.ts +0 -76
  90. package/src/config-cli.ts +0 -499
  91. package/src/config.ts +0 -305
  92. package/src/db.ts +0 -411
  93. package/src/embedder.ts +0 -128
  94. package/src/frontmatter.ts +0 -95
  95. package/src/github.ts +0 -21
  96. package/src/handlers/agent-handler.ts +0 -32
  97. package/src/handlers/command-handler.ts +0 -29
  98. package/src/handlers/index.ts +0 -25
  99. package/src/handlers/knowledge-handler.ts +0 -62
  100. package/src/handlers/markdown-helpers.ts +0 -19
  101. package/src/handlers/script-handler.ts +0 -92
  102. package/src/handlers/skill-handler.ts +0 -37
  103. package/src/handlers/tool-handler.ts +0 -71
  104. package/src/indexer.ts +0 -392
  105. package/src/init.ts +0 -114
  106. package/src/llm.ts +0 -125
  107. package/src/markdown.ts +0 -106
  108. package/src/metadata.ts +0 -333
  109. package/src/origin-resolve.ts +0 -67
  110. package/src/registry-install.ts +0 -361
  111. package/src/registry-resolve.ts +0 -341
  112. package/src/registry-search.ts +0 -335
  113. package/src/registry-types.ts +0 -72
  114. package/src/ripgrep-install.ts +0 -200
  115. package/src/ripgrep-resolve.ts +0 -72
  116. package/src/ripgrep.ts +0 -3
  117. package/src/stash-add.ts +0 -63
  118. package/src/stash-clone.ts +0 -127
  119. package/src/stash-ref.ts +0 -99
  120. package/src/stash-registry.ts +0 -259
  121. package/src/stash-resolve.ts +0 -50
  122. package/src/stash-search.ts +0 -613
  123. package/src/stash-show.ts +0 -55
  124. package/src/stash-source.ts +0 -103
  125. package/src/stash-types.ts +0 -231
  126. package/src/stash.ts +0 -39
  127. package/src/tool-runner.ts +0 -142
  128. package/src/walker.ts +0 -53
  129. /package/dist/{src/asset-spec.js → asset-spec.js} +0 -0
  130. /package/dist/{src/asset-type-handler.js → asset-type-handler.js} +0 -0
  131. /package/dist/{src/frontmatter.js → frontmatter.js} +0 -0
  132. /package/dist/{src/github.js → github.js} +0 -0
  133. /package/dist/{src/handlers → handlers}/agent-handler.js +0 -0
  134. /package/dist/{src/handlers → handlers}/knowledge-handler.js +0 -0
  135. /package/dist/{src/handlers → handlers}/markdown-helpers.js +0 -0
  136. /package/dist/{src/handlers → handlers}/script-handler.js +0 -0
  137. /package/dist/{src/handlers → handlers}/skill-handler.js +0 -0
  138. /package/dist/{src/handlers → handlers}/tool-handler.js +0 -0
  139. /package/dist/{src/llm.js → llm.js} +0 -0
  140. /package/dist/{src/markdown.js → markdown.js} +0 -0
  141. /package/dist/{src/registry-types.js → registry-types.js} +0 -0
  142. /package/dist/{src/ripgrep.js → ripgrep.js} +0 -0
  143. /package/dist/{src/stash-ref.js → stash-ref.js} +0 -0
  144. /package/dist/{src/stash-resolve.js → stash-resolve.js} +0 -0
  145. /package/dist/{src/stash-types.js → stash-types.js} +0 -0
  146. /package/dist/{src/tool-runner.js → tool-runner.js} +0 -0
package/README.md CHANGED
@@ -1,75 +1,154 @@
1
1
  # Agent-i-Kit
2
2
 
3
- Agent-i-Kit gives AI coding agents a shared library of capabilities they can
4
- search and use. You organize tools, skills, commands, agents, knowledge, and
5
- scripts into a **stash**, and agents discover what they need through
6
- `akm` (Agent Kit Manager).
3
+ A package manager for AI agent capabilities tools, skills, commands, agents,
4
+ knowledge, and scripts that works with any AI coding assistant that can run
5
+ shell commands.
7
6
 
8
- ## What Is a Kit?
7
+ You build up useful scripts, prompts, and agent configs. Agent-i-Kit lets you
8
+ organize them into a searchable **stash**, share them as installable **kits**,
9
+ and give any model a way to discover and use them through `akm` (Agent Kit
10
+ Manager). No plugins required — just CLI output any tool-calling model can read.
9
11
 
10
- A kit is a shareable package of assets. Any directory with asset
11
- subdirectories is a valid kit:
12
+ ## Quick Start
12
13
 
13
- ```text
14
- my-kit/
15
- tools/ # Executable scripts (.sh, .ts, .js)
16
- skills/ # Skill definitions (directories with SKILL.md)
17
- commands/ # Slash commands (.md)
18
- agents/ # Agent definitions (.md)
19
- knowledge/ # Reference documents (.md)
20
- scripts/ # General scripts (.py, .rb, .go, etc.)
14
+ ```sh
15
+ # Install (requires Bun v1.0+)
16
+ bun install -g agentikit
17
+
18
+ # Initialize your stash
19
+ akm init
20
+
21
+ # Add a kit from GitHub
22
+ akm add github:owner/repo
23
+
24
+ # Search for assets
25
+ akm search "deploy"
26
+
27
+ # Show an asset
28
+ akm show script:deploy.sh
21
29
  ```
22
30
 
23
- Kits can be published to npm or hosted on GitHub. Tag them with `akm` or
24
- `agentikit` so others can discover them through registry search.
31
+ > **Don't want Bun?** Use the [standalone binary](#standalone-binary) instead it
32
+ > bundles everything and has no runtime dependencies.
25
33
 
26
- ## What Is a Stash?
34
+ ## Using With Any AI Agent
27
35
 
28
- The stash is your local library of assets. It combines three sources:
36
+ Agent-i-Kit is platform agnostic. Any model that can execute shell commands can
37
+ search your stash and use what it finds. The workflow is three commands:
29
38
 
30
- 1. **Working stash** -- Your personal assets (`AKM_STASH_DIR`). Read-write.
31
- 2. **Mounted dirs** -- Shared team directories. Read-only.
32
- 3. **Installed kits** -- Kits from npm or GitHub via `akm add`. Read-only.
39
+ 1. `akm search "what you need"` — find relevant assets (returns JSON)
40
+ 2. `akm show <openRef>` get the details (run command, instructions, prompt, etc.)
41
+ 3. Use the asset execute the `runCmd`, follow the skill instructions, fill in the template
33
42
 
34
- When you search or open an asset, the working stash takes priority. This
35
- means you can install a kit and override individual assets by cloning them
36
- into your working stash.
43
+ ### Drop-in prompt snippet
37
44
 
38
- ## Quick Start
45
+ Add this to your `AGENTS.md`, `CLAUDE.md`, system prompt, or any instruction
46
+ file to give your agent access to your stash without any additional setup:
47
+
48
+ ~~~markdown
49
+ ## Agent-i-Kit
50
+
51
+ You have access to a searchable library of tools, skills, commands, agents,
52
+ and knowledge documents via `akm` (Agent Kit Manager). Use it to find and
53
+ use capabilities before writing something from scratch.
39
54
 
55
+ **Finding assets:**
40
56
  ```sh
41
- # Install
42
- npm install -g agentikit
57
+ akm search "<query>" # Search by keyword
58
+ akm search "<query>" --type tool # Filter by type (tool, skill, command, agent, knowledge, script)
59
+ ```
43
60
 
44
- # Initialize your stash
45
- akm init
61
+ Search returns JSON with scored results. Each hit includes an `openRef` you
62
+ use to retrieve the full asset.
46
63
 
47
- # Search for assets
48
- akm search "deploy"
64
+ **Using assets:**
65
+ ```sh
66
+ akm show <openRef> # Get full asset details
67
+ ```
49
68
 
50
- # Show an asset
51
- akm show tool:deploy.sh
69
+ What you get back depends on the asset type:
70
+ - **script/tool** — A `runCmd` you can execute directly
71
+ - **skill** — Instructions to follow (read the full content)
72
+ - **command** — A prompt template with placeholders to fill in
73
+ - **agent** — A system prompt with model and tool hints
74
+ - **knowledge** — A reference doc (use `--view toc` or `--view section --heading "..."` to navigate)
75
+
76
+ Always search the stash first when you need a capability. Prefer existing
77
+ assets over writing new code.
78
+ ~~~
79
+
80
+ That's it. No plugin, no SDK, no integration code. The model reads the JSON
81
+ output from `akm` and acts on it.
82
+
83
+ ### Platform plugins (optional)
84
+
85
+ For tighter integration, plugins are available for some platforms. These add
86
+ native tool bindings so the agent doesn't need to shell out, but they're
87
+ purely optional — the CLI works everywhere.
52
88
 
53
- # Install a kit from npm
54
- akm add @scope/my-kit
89
+ **OpenCode** Add the [OpenCode plugin](https://github.com/itlackey/agentikit-plugins?tab=readme-ov-file#agentikit-opencode) to your `opencode.json`:
55
90
 
56
- # Search installed and registry kits
57
- akm search "lint" --source both
91
+ ```json
92
+ {
93
+ "plugin": ["agentikit-opencode"]
94
+ }
58
95
  ```
59
96
 
60
- ### Standalone Binary
97
+ **Claude Code** — Add the prompt snippet above to your `CLAUDE.md` or
98
+ project instructions. Claude Code can run `akm` commands directly.
61
99
 
62
- ```sh
63
- # macOS / Linux
64
- curl -fsSL https://raw.githubusercontent.com/itlackey/agentikit/main/install.sh | bash
100
+ **Everything else** — If your agent can run shell commands, it can use `akm`.
101
+ Add the prompt snippet to whatever instruction mechanism your platform uses.
65
102
 
66
- # Windows (PowerShell)
67
- irm https://raw.githubusercontent.com/itlackey/agentikit/main/install.ps1 -OutFile install.ps1; ./install.ps1
103
+ ## What's In a Kit?
104
+
105
+ A kit is a directory of assets you can share and install. There's no required
106
+ structure — agentikit classifies assets by **file extension and content**, not
107
+ by directory name. A `.sh` file is a script whether it lives in `scripts/`,
108
+ `deploy/`, or at the root. A `.md` file with `tools` in its frontmatter is an
109
+ agent definition wherever you put it.
110
+
111
+ That said, using these directory names as an opt-in convention improves
112
+ indexing confidence:
113
+
114
+ ```text
115
+ my-kit/
116
+ scripts/ # Executable scripts (.sh, .ts, .js, .py, .rb, .go, etc.)
117
+ skills/ # Skill definitions (directories with SKILL.md)
118
+ commands/ # Slash commands (.md with $ARGUMENTS or agent frontmatter)
119
+ agents/ # Agent definitions (.md with model/tools frontmatter)
120
+ knowledge/ # Reference documents (.md)
68
121
  ```
69
122
 
123
+ ### Asset types
124
+
125
+ | Type | What it is | What the agent gets |
126
+ | --- | --- | --- |
127
+ | **script** | An executable script | A `runCmd` the agent can execute, or source for unsupported runtimes |
128
+ | **skill** | A set of instructions | Step-by-step guidance the agent follows |
129
+ | **command** | A prompt template | A template with placeholders to fill in |
130
+ | **agent** | An agent definition | A system prompt, model hint, and tool policy |
131
+ | **knowledge** | A reference document | Navigable content with TOC and section views |
132
+
133
+ Assets are referenced by type and name (e.g. `script:deploy.sh`,
134
+ `knowledge:api-guide.md`). See [Concepts](docs/concepts.md) for details on
135
+ how classification works.
136
+
137
+ ## The Stash
138
+
139
+ Your stash is the local library where assets live. It combines three sources
140
+ in priority order:
141
+
142
+ 1. **Primary stash** — Your personal assets (`AKM_STASH_DIR`), created by `akm init`
143
+ 2. **Search paths** — Additional directories (team shares, project dirs, etc.)
144
+ 3. **Installed kits** — Kits from npm, GitHub, or git via `akm add` (cache-managed)
145
+
146
+ The first match wins, so local assets always override installed ones. Use
147
+ `akm clone` to fork an installed asset into your stash for editing.
148
+
70
149
  ## Searching and Showing Assets
71
150
 
72
- Search returns scored results with metadata explaining why each hit matched:
151
+ Search returns scored results with explainability:
73
152
 
74
153
  ```sh
75
154
  akm search "docker" --type tool
@@ -90,7 +169,7 @@ akm search "docker" --type tool
90
169
  }
91
170
  ```
92
171
 
93
- Use `openRef` from search results to show the full asset:
172
+ Show returns everything the agent needs to act:
94
173
 
95
174
  ```sh
96
175
  akm show tool:docker-build.sh
@@ -105,97 +184,104 @@ akm show tool:docker-build.sh
105
184
  }
106
185
  ```
107
186
 
108
- For knowledge assets, views let you navigate large documents:
187
+ For knowledge assets, navigate without loading the entire document:
109
188
 
110
189
  ```sh
111
190
  akm show knowledge:api-guide.md --view toc
112
191
  akm show knowledge:api-guide.md --view section --heading "Authentication"
113
192
  ```
114
193
 
115
- ## Using With AI Agents
116
-
117
- Agent-i-Kit is designed to be called by AI coding agents. The agent searches
118
- for capabilities, reads the results, and acts on them.
119
-
120
- ### OpenCode
194
+ ## Installing and Sharing Kits
121
195
 
122
- In an OpenCode project, add akm as a tool in your configuration. The agent
123
- can then search the stash and run tools directly:
196
+ Install kits from npm, GitHub, any git host, or local directories:
124
197
 
125
- ```text
126
- Search the stash for deployment tools, then run the best match.
198
+ ```sh
199
+ akm add @scope/my-kit # npm
200
+ akm add github:owner/repo#v1.2.3 # GitHub with tag
201
+ akm add git+https://gitlab.com/org/kit # Any git repo
202
+ akm add ./path/to/local/kit # Local directory
127
203
  ```
128
204
 
129
- The agent calls `akm search "deploy" --type tool`, picks the top result,
130
- reads its `runCmd` from `akm show`, and executes it.
131
-
132
- ### Claude Code
205
+ Search the registry for community kits:
133
206
 
134
- Add akm commands as tools or reference them from your CLAUDE.md:
207
+ ```sh
208
+ akm search "code review" --source registry
209
+ ```
135
210
 
136
- ```markdown
137
- ## Available Tools
211
+ Manage installed kits:
138
212
 
139
- Use `akm search <query>` to find tools, skills, and commands in the stash.
140
- Use `akm show <ref>` to read asset details before using them.
213
+ ```sh
214
+ akm list # Show installed kits with status
215
+ akm update --all # Update all (reports version changes)
216
+ akm remove owner/repo # Remove and reindex
217
+ akm clone tool:deploy.sh # Fork an asset into your stash for editing
141
218
  ```
142
219
 
143
- ### Any Agent
220
+ ### Publishing your own kit
144
221
 
145
- The JSON output from `akm search` and `akm show` is designed for machine
146
- consumption. Any agent that can run shell commands can use akm:
222
+ 1. Organize your assets (directory conventions are optional)
223
+ 2. Add `"akm"` to `keywords` in `package.json` or add the `akm` topic to your GitHub repo
224
+ 3. Optionally add `agentikit.include` to control what gets installed
225
+ 4. Publish to npm or push to GitHub
226
+ 5. Submit to the registry with `akm submit` to appear in `akm search --source registry`
147
227
 
148
- 1. `akm search "what you need"` -- Find relevant assets
149
- 2. `akm show <openRef>` -- Get the details
150
- 3. Use the asset (run the `runCmd`, follow the skill instructions, etc.)
228
+ See the [Kit Maker's Guide](docs/kit-makers.md) for a full walkthrough.
151
229
 
152
- ## Installing Kits
230
+ ## Installation
153
231
 
154
- Install kits from npm, GitHub, or local directories:
232
+ Agent-i-Kit requires [Bun](https://bun.sh) v1.0+ as its runtime. It uses
233
+ Bun-specific APIs (`bun:sqlite`) that are not available in Node.js.
155
234
 
156
235
  ```sh
157
- akm add @scope/my-kit # npm package
158
- akm add github:owner/repo # GitHub repo
159
- akm add ./path/to/local/kit # Local git directory
236
+ # Install Bun if you don't have it
237
+ curl -fsSL https://bun.sh/install | bash
238
+
239
+ # Install agentikit
240
+ bun install -g agentikit
160
241
  ```
161
242
 
162
- Search the registry to discover kits:
243
+ ### Standalone binary
244
+
245
+ The standalone binary bundles everything and has **no runtime dependencies** —
246
+ no Bun, no Node.js.
163
247
 
164
248
  ```sh
165
- akm search "code review" --source registry
166
- ```
249
+ # macOS / Linux
250
+ curl -fsSL https://raw.githubusercontent.com/itlackey/agentikit/main/install.sh | bash
167
251
 
168
- Only packages tagged with `akm` or `agentikit` appear in registry results.
169
- See [docs/registry.md](docs/registry.md) for details.
252
+ # Windows (PowerShell)
253
+ irm https://raw.githubusercontent.com/itlackey/agentikit/main/install.ps1 -OutFile install.ps1; ./install.ps1
254
+ ```
170
255
 
171
- ## Publishing a Kit
256
+ The shell installer verifies the binary against release checksums.
172
257
 
173
- 1. Organize your assets into the standard directory structure
174
- 2. Add `"akm"` to `keywords` in `package.json` (for npm) or add the `akm`
175
- topic to your GitHub repo
176
- 3. Optionally add an `agentikit.include` array in `package.json` to control
177
- which paths are included when installed
258
+ Upgrade the binary in place:
178
259
 
179
- ```json
180
- {
181
- "name": "@scope/my-kit",
182
- "keywords": ["akm"],
183
- "agentikit": {
184
- "include": ["tools", "skills", "commands"]
185
- }
186
- }
260
+ ```sh
261
+ akm upgrade # Download and replace the running binary
262
+ akm upgrade --check # Check for updates without installing
187
263
  ```
188
264
 
189
265
  ## Documentation
190
266
 
191
267
  | Doc | Description |
192
268
  | --- | --- |
193
- | [Concepts](docs/concepts.md) | Asset types, stash sources, metadata, tool execution |
194
- | [CLI Reference](docs/cli.md) | All akm commands and flags |
195
- | [Kit Maker's Guide](docs/kit-makers.md) | How to build and share a kit |
269
+ | [Concepts](docs/concepts.md) | Asset types, classification, stash sources, metadata |
270
+ | [CLI Reference](docs/cli.md) | All `akm` commands and flags |
271
+ | [Kit Maker's Guide](docs/kit-makers.md) | Build and share a kit on GitHub, npm, or a network share |
196
272
  | [Registry](docs/registry.md) | Finding, installing, and publishing kits |
197
273
  | [Search](docs/search.md) | Hybrid search architecture and scoring |
198
274
  | [Indexing](docs/indexing.md) | How the search index is built |
199
275
  | [Filesystem](docs/filesystem.md) | Directory layout and `.stash.json` schema |
200
276
  | [Configuration](docs/configuration.md) | Providers, settings, and Ollama setup |
201
- | [Library API](docs/api.md) | Using agentikit as a TypeScript/JS library |
277
+
278
+ ## Status
279
+
280
+ Agent-i-Kit is in early development (v0.0.x). The core CLI, stash model, and
281
+ registry are functional and in daily use. Feedback, issues, and PRs welcome —
282
+ especially around real-world usage patterns and integrations with different
283
+ AI coding assistants.
284
+
285
+ ## License
286
+
287
+ [CC-BY-4.0](LICENSE)