@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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,13 +1,15 @@
1
1
  # @getmikk/ai-context
2
2
 
3
- > Intelligent context distillation for AI coding agents builds token-budgeted, relevance-scored context payloads from the dependency graph, plus generates `claude.md` / `AGENTS.md` files.
3
+ > Token-budgeted, graph-traced AI contextthe difference between an LLM that guesses your architecture and one that actually knows it.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@getmikk/ai-context)](https://www.npmjs.com/package/@getmikk/ai-context)
6
6
  [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](../../LICENSE)
7
7
 
8
- `@getmikk/ai-context` solves the "context window" problem for AI coding assistants. Instead of dumping your entire codebase into a prompt, it uses the dependency graph to trace only the relevant functions, files, and constraints for a given taskthen packs them into a token-budgeted payload.
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 budgetgiving your AI exactly what it needs and nothing it doesn't.
9
9
 
10
- It also generates tiered `claude.md` and `AGENTS.md` files that give AI agents a structured understanding of your project architecture.
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.5.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.5.1",
25
- "@getmikk/intent-engine": "^1.5.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",