agentikit 0.0.13 → 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 (145) hide show
  1. package/LICENSE +385 -0
  2. package/README.md +180 -110
  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/stash-add.d.ts +0 -4
  72. package/dist/src/stash-clone.d.ts +0 -22
  73. package/dist/src/stash-clone.js +0 -83
  74. package/dist/src/stash-ref.d.ts +0 -31
  75. package/dist/src/stash-registry.d.ts +0 -18
  76. package/dist/src/stash-resolve.d.ts +0 -2
  77. package/dist/src/stash-search.d.ts +0 -8
  78. package/dist/src/stash-show.d.ts +0 -5
  79. package/dist/src/stash-source.d.ts +0 -24
  80. package/dist/src/stash-types.d.ts +0 -227
  81. package/dist/src/stash.d.ts +0 -16
  82. package/dist/src/stash.js +0 -9
  83. package/dist/src/tool-runner.d.ts +0 -35
  84. package/dist/src/walker.d.ts +0 -19
  85. package/src/asset-spec.ts +0 -85
  86. package/src/asset-type-handler.ts +0 -77
  87. package/src/cli.ts +0 -427
  88. package/src/common.ts +0 -76
  89. package/src/config-cli.ts +0 -499
  90. package/src/config.ts +0 -305
  91. package/src/db.ts +0 -411
  92. package/src/embedder.ts +0 -128
  93. package/src/frontmatter.ts +0 -95
  94. package/src/github.ts +0 -21
  95. package/src/handlers/agent-handler.ts +0 -32
  96. package/src/handlers/command-handler.ts +0 -29
  97. package/src/handlers/index.ts +0 -25
  98. package/src/handlers/knowledge-handler.ts +0 -62
  99. package/src/handlers/markdown-helpers.ts +0 -19
  100. package/src/handlers/script-handler.ts +0 -92
  101. package/src/handlers/skill-handler.ts +0 -37
  102. package/src/handlers/tool-handler.ts +0 -71
  103. package/src/indexer.ts +0 -392
  104. package/src/init.ts +0 -114
  105. package/src/llm.ts +0 -125
  106. package/src/markdown.ts +0 -106
  107. package/src/metadata.ts +0 -333
  108. package/src/origin-resolve.ts +0 -67
  109. package/src/registry-install.ts +0 -361
  110. package/src/registry-resolve.ts +0 -341
  111. package/src/registry-search.ts +0 -335
  112. package/src/registry-types.ts +0 -72
  113. package/src/ripgrep-install.ts +0 -200
  114. package/src/ripgrep-resolve.ts +0 -72
  115. package/src/ripgrep.ts +0 -3
  116. package/src/stash-add.ts +0 -63
  117. package/src/stash-clone.ts +0 -127
  118. package/src/stash-ref.ts +0 -99
  119. package/src/stash-registry.ts +0 -259
  120. package/src/stash-resolve.ts +0 -50
  121. package/src/stash-search.ts +0 -613
  122. package/src/stash-show.ts +0 -55
  123. package/src/stash-source.ts +0 -103
  124. package/src/stash-types.ts +0 -231
  125. package/src/stash.ts +0 -39
  126. package/src/tool-runner.ts +0 -142
  127. package/src/walker.ts +0 -53
  128. /package/dist/{src/asset-spec.js → asset-spec.js} +0 -0
  129. /package/dist/{src/asset-type-handler.js → asset-type-handler.js} +0 -0
  130. /package/dist/{src/frontmatter.js → frontmatter.js} +0 -0
  131. /package/dist/{src/github.js → github.js} +0 -0
  132. /package/dist/{src/handlers → handlers}/agent-handler.js +0 -0
  133. /package/dist/{src/handlers → handlers}/knowledge-handler.js +0 -0
  134. /package/dist/{src/handlers → handlers}/markdown-helpers.js +0 -0
  135. /package/dist/{src/handlers → handlers}/script-handler.js +0 -0
  136. /package/dist/{src/handlers → handlers}/skill-handler.js +0 -0
  137. /package/dist/{src/handlers → handlers}/tool-handler.js +0 -0
  138. /package/dist/{src/llm.js → llm.js} +0 -0
  139. /package/dist/{src/markdown.js → markdown.js} +0 -0
  140. /package/dist/{src/registry-types.js → registry-types.js} +0 -0
  141. /package/dist/{src/ripgrep.js → ripgrep.js} +0 -0
  142. /package/dist/{src/stash-ref.js → stash-ref.js} +0 -0
  143. /package/dist/{src/stash-resolve.js → stash-resolve.js} +0 -0
  144. /package/dist/{src/stash-types.js → stash-types.js} +0 -0
  145. /package/dist/{src/tool-runner.js → tool-runner.js} +0 -0
package/README.md CHANGED
@@ -1,91 +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
- ## Prerequisites
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:
39
47
 
40
- Agent-i-Kit requires [Bun](https://bun.sh) (v1.0+) as its runtime. It uses
41
- Bun-specific APIs (`bun:sqlite`) that are not available in Node.js.
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.
42
54
 
55
+ **Finding assets:**
43
56
  ```sh
44
- # Install Bun if you don't have it
45
- curl -fsSL https://bun.sh/install | bash
57
+ akm search "<query>" # Search by keyword
58
+ akm search "<query>" --type tool # Filter by type (tool, skill, command, agent, knowledge, script)
46
59
  ```
47
60
 
48
- > **Don't want to install Bun?** Use the [standalone binary](#standalone-binary)
49
- > instead -- it has no runtime dependencies.
50
-
51
- ## Quick Start
61
+ Search returns JSON with scored results. Each hit includes an `openRef` you
62
+ use to retrieve the full asset.
52
63
 
64
+ **Using assets:**
53
65
  ```sh
54
- # Install
55
- bun install -g agentikit
66
+ akm show <openRef> # Get full asset details
67
+ ```
56
68
 
57
- # Initialize your stash
58
- akm init
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)
59
75
 
60
- # Search for assets
61
- akm search "deploy"
76
+ Always search the stash first when you need a capability. Prefer existing
77
+ assets over writing new code.
78
+ ~~~
62
79
 
63
- # Show an asset
64
- akm show tool:deploy.sh
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.
65
88
 
66
- # Install a kit from npm
67
- 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`:
68
90
 
69
- # Search installed and registry kits
70
- akm search "lint" --source both
91
+ ```json
92
+ {
93
+ "plugin": ["agentikit-opencode"]
94
+ }
71
95
  ```
72
96
 
73
- ### 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.
74
99
 
75
- The standalone binary bundles everything it needs and does **not** require Bun
76
- or Node.js.
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.
77
102
 
78
- ```sh
79
- # macOS / Linux
80
- curl -fsSL https://raw.githubusercontent.com/itlackey/agentikit/main/install.sh | bash
103
+ ## What's In a Kit?
81
104
 
82
- # Windows (PowerShell)
83
- irm https://raw.githubusercontent.com/itlackey/agentikit/main/install.ps1 -OutFile install.ps1; ./install.ps1
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)
84
121
  ```
85
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
+
86
149
  ## Searching and Showing Assets
87
150
 
88
- Search returns scored results with metadata explaining why each hit matched:
151
+ Search returns scored results with explainability:
89
152
 
90
153
  ```sh
91
154
  akm search "docker" --type tool
@@ -106,7 +169,7 @@ akm search "docker" --type tool
106
169
  }
107
170
  ```
108
171
 
109
- Use `openRef` from search results to show the full asset:
172
+ Show returns everything the agent needs to act:
110
173
 
111
174
  ```sh
112
175
  akm show tool:docker-build.sh
@@ -121,97 +184,104 @@ akm show tool:docker-build.sh
121
184
  }
122
185
  ```
123
186
 
124
- For knowledge assets, views let you navigate large documents:
187
+ For knowledge assets, navigate without loading the entire document:
125
188
 
126
189
  ```sh
127
190
  akm show knowledge:api-guide.md --view toc
128
191
  akm show knowledge:api-guide.md --view section --heading "Authentication"
129
192
  ```
130
193
 
131
- ## Using With AI Agents
194
+ ## Installing and Sharing Kits
132
195
 
133
- Agent-i-Kit is designed to be called by AI coding agents. The agent searches
134
- for capabilities, reads the results, and acts on them.
196
+ Install kits from npm, GitHub, any git host, or local directories:
135
197
 
136
- ### OpenCode
137
-
138
- In an OpenCode project, add akm as a tool in your configuration. The agent
139
- can then search the stash and run tools directly:
140
-
141
- ```text
142
- 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
143
203
  ```
144
204
 
145
- The agent calls `akm search "deploy" --type tool`, picks the top result,
146
- reads its `runCmd` from `akm show`, and executes it.
147
-
148
- ### Claude Code
205
+ Search the registry for community kits:
149
206
 
150
- Add akm commands as tools or reference them from your CLAUDE.md:
207
+ ```sh
208
+ akm search "code review" --source registry
209
+ ```
151
210
 
152
- ```markdown
153
- ## Available Tools
211
+ Manage installed kits:
154
212
 
155
- Use `akm search <query>` to find tools, skills, and commands in the stash.
156
- 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
157
218
  ```
158
219
 
159
- ### Any Agent
220
+ ### Publishing your own kit
160
221
 
161
- The JSON output from `akm search` and `akm show` is designed for machine
162
- 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`
163
227
 
164
- 1. `akm search "what you need"` -- Find relevant assets
165
- 2. `akm show <openRef>` -- Get the details
166
- 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.
167
229
 
168
- ## Installing Kits
230
+ ## Installation
169
231
 
170
- 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.
171
234
 
172
235
  ```sh
173
- akm add @scope/my-kit # npm package
174
- akm add github:owner/repo # GitHub repo
175
- 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
176
241
  ```
177
242
 
178
- 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.
179
247
 
180
248
  ```sh
181
- akm search "code review" --source registry
182
- ```
249
+ # macOS / Linux
250
+ curl -fsSL https://raw.githubusercontent.com/itlackey/agentikit/main/install.sh | bash
183
251
 
184
- Only packages tagged with `akm` or `agentikit` appear in registry results.
185
- 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
+ ```
186
255
 
187
- ## Publishing a Kit
256
+ The shell installer verifies the binary against release checksums.
188
257
 
189
- 1. Organize your assets into the standard directory structure
190
- 2. Add `"akm"` to `keywords` in `package.json` (for npm) or add the `akm`
191
- topic to your GitHub repo
192
- 3. Optionally add an `agentikit.include` array in `package.json` to control
193
- which paths are included when installed
258
+ Upgrade the binary in place:
194
259
 
195
- ```json
196
- {
197
- "name": "@scope/my-kit",
198
- "keywords": ["akm"],
199
- "agentikit": {
200
- "include": ["tools", "skills", "commands"]
201
- }
202
- }
260
+ ```sh
261
+ akm upgrade # Download and replace the running binary
262
+ akm upgrade --check # Check for updates without installing
203
263
  ```
204
264
 
205
265
  ## Documentation
206
266
 
207
267
  | Doc | Description |
208
268
  | --- | --- |
209
- | [Concepts](docs/concepts.md) | Asset types, stash sources, metadata, tool execution |
210
- | [CLI Reference](docs/cli.md) | All akm commands and flags |
211
- | [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 |
212
272
  | [Registry](docs/registry.md) | Finding, installing, and publishing kits |
213
273
  | [Search](docs/search.md) | Hybrid search architecture and scoring |
214
274
  | [Indexing](docs/indexing.md) | How the search index is built |
215
275
  | [Filesystem](docs/filesystem.md) | Directory layout and `.stash.json` schema |
216
276
  | [Configuration](docs/configuration.md) | Providers, settings, and Ollama setup |
217
- | [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)