aidoc-kit 0.3.1 → 1.0.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 +2 -0
  2. package/package.json +11 -7
package/README.md CHANGED
@@ -7,6 +7,8 @@
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
8
8
  [![TypeScript](https://img.shields.io/badge/TypeScript-strict-blue.svg)](tsconfig.json)
9
9
 
10
+ > **v1.0.0 stable** — Battle-tested on Next.js 16 projects with 135+ files.
11
+
10
12
  ## The problem
11
13
 
12
14
  When AI agents (GitHub Copilot, Cursor, Claude) work on large Next.js projects with 200–400 files, they lose context between sessions. They re-discover architecture, miss existing conventions, and break established patterns.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aidoc-kit",
3
- "version": "0.3.1",
4
- "description": "AI-native documentation scanner for JS/TS projects",
3
+ "version": "1.0.0",
4
+ "description": "AI-native documentation scanner for JS/TS projects — gives AI agents persistent memory across sessions",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "bin": {
@@ -22,14 +22,18 @@
22
22
  "keywords": [
23
23
  "ai",
24
24
  "documentation",
25
- "codemod",
26
25
  "typescript",
27
- "ast",
28
- "agents",
26
+ "javascript",
27
+ "nextjs",
29
28
  "copilot",
29
+ "cursor",
30
+ "agents",
31
+ "codemod",
32
+ "ast",
30
33
  "llm",
31
- "jsdoc",
32
- "knowledge-base"
34
+ "context",
35
+ "memory",
36
+ "jsdoc"
33
37
  ],
34
38
  "license": "MIT",
35
39
  "repository": {