@getmikk/ai-context 1.3.0 → 1.3.1

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 +2 -2
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
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.
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/@getmikk/ai-context)](https://www.npmjs.com/package/@getmikk/ai-context)
6
- [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](../../LICENSE)
6
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](../../LICENSE)
7
7
 
8
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 task — then packs them into a token-budgeted payload.
9
9
 
@@ -324,4 +324,4 @@ import type {
324
324
 
325
325
  ## License
326
326
 
327
- [MIT](../../LICENSE)
327
+ [Apache-2.0](../../LICENSE)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@getmikk/ai-context",
3
- "version": "1.3.0",
4
- "license": "MIT",
3
+ "version": "1.3.1",
4
+ "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/Ansh-dhanani/mikk"
@@ -21,8 +21,8 @@
21
21
  "dev": "tsc --watch"
22
22
  },
23
23
  "dependencies": {
24
- "@getmikk/core": "workspace:*",
25
- "@getmikk/intent-engine": "workspace:*"
24
+ "@getmikk/core": "^1.3.1",
25
+ "@getmikk/intent-engine": "^1.3.1"
26
26
  },
27
27
  "devDependencies": {
28
28
  "typescript": "^5.7.0",