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.
- package/LICENSE +385 -0
- package/README.md +186 -100
- package/dist/cli.js +671 -0
- package/dist/common.js +192 -0
- package/dist/{src/config-cli.js → config-cli.js} +14 -6
- package/dist/{src/config.js → config.js} +92 -24
- package/dist/{src/db.js → db.js} +109 -35
- package/dist/{src/embedder.js → embedder.js} +57 -2
- package/dist/file-context.js +158 -0
- package/dist/{src/handlers → handlers}/command-handler.js +2 -0
- package/dist/{src/handlers → handlers}/index.js +0 -6
- package/dist/{src/indexer.js → indexer.js} +34 -10
- package/dist/init.js +43 -0
- package/dist/lockfile.js +55 -0
- package/dist/matchers.js +157 -0
- package/dist/{src/metadata.js → metadata.js} +12 -1
- package/dist/{src/origin-resolve.js → origin-resolve.js} +10 -9
- package/dist/paths.js +82 -0
- package/dist/{src/registry-install.js → registry-install.js} +145 -17
- package/dist/{src/registry-resolve.js → registry-resolve.js} +178 -18
- package/dist/{src/registry-search.js → registry-search.js} +8 -16
- package/dist/renderers.js +276 -0
- package/dist/{src/ripgrep-install.js → ripgrep-install.js} +5 -5
- package/dist/{src/ripgrep-resolve.js → ripgrep-resolve.js} +21 -11
- package/dist/self-update.js +220 -0
- package/dist/{src/stash-add.js → stash-add.js} +11 -2
- package/dist/stash-clone.js +115 -0
- package/dist/{src/stash-registry.js → stash-registry.js} +15 -41
- package/dist/{src/stash-search.js → stash-search.js} +67 -55
- package/dist/{src/stash-show.js → stash-show.js} +30 -3
- package/dist/{src/stash-source.js → stash-source.js} +56 -9
- package/dist/submit.js +552 -0
- package/dist/{src/walker.js → walker.js} +38 -0
- package/package.json +7 -16
- package/dist/index.d.ts +0 -28
- package/dist/index.js +0 -15
- package/dist/src/asset-spec.d.ts +0 -16
- package/dist/src/asset-type-handler.d.ts +0 -27
- package/dist/src/cli.d.ts +0 -2
- package/dist/src/cli.js +0 -399
- package/dist/src/common.d.ts +0 -13
- package/dist/src/common.js +0 -60
- package/dist/src/config-cli.d.ts +0 -9
- package/dist/src/config.d.ts +0 -50
- package/dist/src/db.d.ts +0 -46
- package/dist/src/embedder.d.ts +0 -10
- package/dist/src/frontmatter.d.ts +0 -30
- package/dist/src/github.d.ts +0 -4
- package/dist/src/handlers/agent-handler.d.ts +0 -2
- package/dist/src/handlers/command-handler.d.ts +0 -2
- package/dist/src/handlers/index.d.ts +0 -6
- package/dist/src/handlers/knowledge-handler.d.ts +0 -2
- package/dist/src/handlers/markdown-helpers.d.ts +0 -7
- package/dist/src/handlers/script-handler.d.ts +0 -2
- package/dist/src/handlers/skill-handler.d.ts +0 -2
- package/dist/src/handlers/tool-handler.d.ts +0 -2
- package/dist/src/indexer.d.ts +0 -22
- package/dist/src/init.d.ts +0 -19
- package/dist/src/init.js +0 -99
- package/dist/src/llm.d.ts +0 -15
- package/dist/src/markdown.d.ts +0 -18
- package/dist/src/metadata.d.ts +0 -41
- package/dist/src/origin-resolve.d.ts +0 -19
- package/dist/src/registry-install.d.ts +0 -11
- package/dist/src/registry-resolve.d.ts +0 -3
- package/dist/src/registry-search.d.ts +0 -27
- package/dist/src/registry-types.d.ts +0 -62
- package/dist/src/ripgrep-install.d.ts +0 -12
- package/dist/src/ripgrep-resolve.d.ts +0 -13
- package/dist/src/ripgrep.d.ts +0 -3
- package/dist/src/similarity.js +0 -211
- package/dist/src/stash-add.d.ts +0 -4
- package/dist/src/stash-clone.d.ts +0 -22
- package/dist/src/stash-clone.js +0 -83
- package/dist/src/stash-ref.d.ts +0 -31
- package/dist/src/stash-registry.d.ts +0 -18
- package/dist/src/stash-resolve.d.ts +0 -2
- package/dist/src/stash-search.d.ts +0 -8
- package/dist/src/stash-show.d.ts +0 -5
- package/dist/src/stash-source.d.ts +0 -24
- package/dist/src/stash-types.d.ts +0 -227
- package/dist/src/stash.d.ts +0 -16
- package/dist/src/stash.js +0 -9
- package/dist/src/tool-runner.d.ts +0 -35
- package/dist/src/walker.d.ts +0 -19
- package/src/asset-spec.ts +0 -85
- package/src/asset-type-handler.ts +0 -77
- package/src/cli.ts +0 -427
- package/src/common.ts +0 -76
- package/src/config-cli.ts +0 -499
- package/src/config.ts +0 -305
- package/src/db.ts +0 -411
- package/src/embedder.ts +0 -128
- package/src/frontmatter.ts +0 -95
- package/src/github.ts +0 -21
- package/src/handlers/agent-handler.ts +0 -32
- package/src/handlers/command-handler.ts +0 -29
- package/src/handlers/index.ts +0 -25
- package/src/handlers/knowledge-handler.ts +0 -62
- package/src/handlers/markdown-helpers.ts +0 -19
- package/src/handlers/script-handler.ts +0 -92
- package/src/handlers/skill-handler.ts +0 -37
- package/src/handlers/tool-handler.ts +0 -71
- package/src/indexer.ts +0 -392
- package/src/init.ts +0 -114
- package/src/llm.ts +0 -125
- package/src/markdown.ts +0 -106
- package/src/metadata.ts +0 -333
- package/src/origin-resolve.ts +0 -67
- package/src/registry-install.ts +0 -361
- package/src/registry-resolve.ts +0 -341
- package/src/registry-search.ts +0 -335
- package/src/registry-types.ts +0 -72
- package/src/ripgrep-install.ts +0 -200
- package/src/ripgrep-resolve.ts +0 -72
- package/src/ripgrep.ts +0 -3
- package/src/stash-add.ts +0 -63
- package/src/stash-clone.ts +0 -127
- package/src/stash-ref.ts +0 -99
- package/src/stash-registry.ts +0 -259
- package/src/stash-resolve.ts +0 -50
- package/src/stash-search.ts +0 -613
- package/src/stash-show.ts +0 -55
- package/src/stash-source.ts +0 -103
- package/src/stash-types.ts +0 -231
- package/src/stash.ts +0 -39
- package/src/tool-runner.ts +0 -142
- package/src/walker.ts +0 -53
- /package/dist/{src/asset-spec.js → asset-spec.js} +0 -0
- /package/dist/{src/asset-type-handler.js → asset-type-handler.js} +0 -0
- /package/dist/{src/frontmatter.js → frontmatter.js} +0 -0
- /package/dist/{src/github.js → github.js} +0 -0
- /package/dist/{src/handlers → handlers}/agent-handler.js +0 -0
- /package/dist/{src/handlers → handlers}/knowledge-handler.js +0 -0
- /package/dist/{src/handlers → handlers}/markdown-helpers.js +0 -0
- /package/dist/{src/handlers → handlers}/script-handler.js +0 -0
- /package/dist/{src/handlers → handlers}/skill-handler.js +0 -0
- /package/dist/{src/handlers → handlers}/tool-handler.js +0 -0
- /package/dist/{src/llm.js → llm.js} +0 -0
- /package/dist/{src/markdown.js → markdown.js} +0 -0
- /package/dist/{src/registry-types.js → registry-types.js} +0 -0
- /package/dist/{src/ripgrep.js → ripgrep.js} +0 -0
- /package/dist/{src/stash-ref.js → stash-ref.js} +0 -0
- /package/dist/{src/stash-resolve.js → stash-resolve.js} +0 -0
- /package/dist/{src/stash-types.js → stash-types.js} +0 -0
- /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
|
-
|
|
4
|
-
|
|
5
|
-
|
|
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
|
-
|
|
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
|
-
|
|
11
|
-
subdirectories is a valid kit:
|
|
12
|
+
## Quick Start
|
|
12
13
|
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
24
|
-
|
|
31
|
+
> **Don't want Bun?** Use the [standalone binary](#standalone-binary) instead — it
|
|
32
|
+
> bundles everything and has no runtime dependencies.
|
|
25
33
|
|
|
26
|
-
##
|
|
34
|
+
## Using With Any AI Agent
|
|
27
35
|
|
|
28
|
-
|
|
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.
|
|
31
|
-
2.
|
|
32
|
-
3.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
#
|
|
42
|
-
|
|
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
|
-
|
|
45
|
-
|
|
61
|
+
Search returns JSON with scored results. Each hit includes an `openRef` you
|
|
62
|
+
use to retrieve the full asset.
|
|
46
63
|
|
|
47
|
-
|
|
48
|
-
|
|
64
|
+
**Using assets:**
|
|
65
|
+
```sh
|
|
66
|
+
akm show <openRef> # Get full asset details
|
|
67
|
+
```
|
|
49
68
|
|
|
50
|
-
|
|
51
|
-
|
|
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
|
-
|
|
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
|
-
|
|
57
|
-
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"plugin": ["agentikit-opencode"]
|
|
94
|
+
}
|
|
58
95
|
```
|
|
59
96
|
|
|
60
|
-
|
|
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
|
-
|
|
63
|
-
|
|
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
|
-
|
|
67
|
-
|
|
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
|
|
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
|
-
|
|
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,
|
|
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
|
-
##
|
|
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
|
-
|
|
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
|
-
```
|
|
126
|
-
|
|
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
|
-
|
|
130
|
-
reads its `runCmd` from `akm show`, and executes it.
|
|
131
|
-
|
|
132
|
-
### Claude Code
|
|
205
|
+
Search the registry for community kits:
|
|
133
206
|
|
|
134
|
-
|
|
207
|
+
```sh
|
|
208
|
+
akm search "code review" --source registry
|
|
209
|
+
```
|
|
135
210
|
|
|
136
|
-
|
|
137
|
-
## Available Tools
|
|
211
|
+
Manage installed kits:
|
|
138
212
|
|
|
139
|
-
|
|
140
|
-
|
|
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
|
-
###
|
|
220
|
+
### Publishing your own kit
|
|
144
221
|
|
|
145
|
-
|
|
146
|
-
|
|
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
|
-
|
|
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
|
-
##
|
|
230
|
+
## Installation
|
|
153
231
|
|
|
154
|
-
|
|
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
|
-
|
|
158
|
-
|
|
159
|
-
|
|
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
|
-
|
|
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
|
-
|
|
166
|
-
|
|
249
|
+
# macOS / Linux
|
|
250
|
+
curl -fsSL https://raw.githubusercontent.com/itlackey/agentikit/main/install.sh | bash
|
|
167
251
|
|
|
168
|
-
|
|
169
|
-
|
|
252
|
+
# Windows (PowerShell)
|
|
253
|
+
irm https://raw.githubusercontent.com/itlackey/agentikit/main/install.ps1 -OutFile install.ps1; ./install.ps1
|
|
254
|
+
```
|
|
170
255
|
|
|
171
|
-
|
|
256
|
+
The shell installer verifies the binary against release checksums.
|
|
172
257
|
|
|
173
|
-
|
|
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
|
-
```
|
|
180
|
-
|
|
181
|
-
|
|
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
|
|
194
|
-
| [CLI Reference](docs/cli.md) | All akm commands and flags |
|
|
195
|
-
| [Kit Maker's Guide](docs/kit-makers.md) |
|
|
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
|
-
|
|
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)
|