@getmikk/ai-context 1.5.1 → 1.6.0
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/README.md +5 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
# @getmikk/ai-context
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> Token-budgeted, graph-traced AI context — the difference between an LLM that guesses your architecture and one that actually knows it.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@getmikk/ai-context)
|
|
6
6
|
[](../../LICENSE)
|
|
7
7
|
|
|
8
|
-
`@getmikk/ai-context` solves the
|
|
8
|
+
`@getmikk/ai-context` solves the AI context window problem at the architectural level. Instead of dumping your entire codebase into a prompt and hoping the LLM figures it out, it walks the dependency graph from task-relevant seed functions, scores every reachable function by relevance, and packs the highest-signal functions into a token budget — giving your AI exactly what it needs and nothing it doesn't.
|
|
9
9
|
|
|
10
|
-
It also generates
|
|
10
|
+
It also generates `claude.md` and `AGENTS.md` — tiered architecture summaries that let AI agents understand your entire project structure from a single file.
|
|
11
|
+
|
|
12
|
+
> Part of [Mikk](../../README.md) — the codebase nervous system for AI-assisted development.
|
|
11
13
|
|
|
12
14
|
---
|
|
13
15
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmikk/ai-context",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dev": "tsc --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@getmikk/core": "^1.
|
|
25
|
-
"@getmikk/intent-engine": "^1.
|
|
24
|
+
"@getmikk/core": "^1.6.0",
|
|
25
|
+
"@getmikk/intent-engine": "^1.6.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.7.0",
|