ai-dev-analytics 1.1.3 → 1.1.4
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 +27 -15
- package/README.zh-CN.md +28 -16
- package/dist/cli/commands/build.d.ts.map +1 -1
- package/dist/cli/commands/build.js +14 -1
- package/dist/cli/commands/build.js.map +1 -1
- package/dist/cli/index.js +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ One line to integrate. Zero workflow changes.
|
|
|
14
14
|
{ "mcpServers": { "aida": { "command": "npx", "args": ["-y", "ai-dev-analytics", "mcp"] } } }
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
[](https://www.npmjs.com/package/ai-dev-analytics)
|
|
18
18
|
[](./LICENSE)
|
|
19
19
|
[](https://nodejs.org)
|
|
20
20
|
[](#testing)
|
|
@@ -119,7 +119,7 @@ Run `npx ai-dev-analytics dashboard` to see **your own project's data** in secon
|
|
|
119
119
|
|
|
120
120
|
### 🔒 100% Local. Zero External Requests.
|
|
121
121
|
|
|
122
|
-
AIDA
|
|
122
|
+
AIDA stores JSON source data in `.aida/` and generates any required AI tool config or readable views inside the current project only. **The codebase contains zero HTTP calls to external services** — no telemetry, no cloud sync, no analytics, no tracking. Zero runtime dependencies. Your code and data never leave your machine. Period.
|
|
123
123
|
|
|
124
124
|
## Command Reference
|
|
125
125
|
|
|
@@ -133,7 +133,9 @@ For public documentation navigation, schema references, workflow notes, and dash
|
|
|
133
133
|
|
|
134
134
|
## ⚡ 30-Second Setup
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
The Chinese README, [README.zh-CN.md](./README.zh-CN.md), is the primary documentation. This English file is kept as a reference.
|
|
137
|
+
|
|
138
|
+
### Add one MCP config inside the project — that's the entire integration.
|
|
137
139
|
|
|
138
140
|
```json
|
|
139
141
|
{ "mcpServers": { "aida": { "command": "npx", "args": ["-y", "ai-dev-analytics", "mcp"] } } }
|
|
@@ -141,6 +143,8 @@ For public documentation navigation, schema references, workflow notes, and dash
|
|
|
141
143
|
|
|
142
144
|
No SDK. No wrapper. No code changes. Add this to your project root `.mcp.json`, and AIDA starts collecting data the next time your AI writes code. It works silently — zero workflow changes.
|
|
143
145
|
|
|
146
|
+
Current policy: **all tool configs, rules, skills, and MCP entry files stay inside the current project only**. AIDA no longer writes Codex or other tool config to global locations outside the project.
|
|
147
|
+
|
|
144
148
|
> *Tip: If `npx` is slow, install globally first: `npm install -g ai-dev-analytics`, then change the command to `"aida"`. Global install also gives you the `aida` CLI command (e.g. `aida dashboard`, `aida init`).*
|
|
145
149
|
|
|
146
150
|
<details>
|
|
@@ -170,7 +174,7 @@ No SDK. No wrapper. No code changes. Add this to your project root `.mcp.json`,
|
|
|
170
174
|
}
|
|
171
175
|
```
|
|
172
176
|
|
|
173
|
-
**Windsurf**
|
|
177
|
+
**Windsurf** project-local MCP config file:
|
|
174
178
|
```json
|
|
175
179
|
{
|
|
176
180
|
"mcpServers": {
|
|
@@ -298,7 +302,7 @@ All data is local JSON. No database, no cloud.
|
|
|
298
302
|
| Level | File | What it contains |
|
|
299
303
|
|-------|------|-----------------|
|
|
300
304
|
| **Run** | `.aida/runs/{branch}/{dev}/run.json` | Every task, bug, deviation, review, file change |
|
|
301
|
-
| **Branch** | `.aida/runs/{branch}/requirement.json` |
|
|
305
|
+
| **Branch** | `.aida/runs/{branch}/requirement.json` | Requirement and branch-level aggregate data |
|
|
302
306
|
| **Project** | `.aida/index.json` | Cross-branch overview for team leads |
|
|
303
307
|
| **Rules** | `.aida/rules.json` | Sedimented project rules — your AI's growing knowledge base |
|
|
304
308
|
|
|
@@ -392,29 +396,37 @@ Rules are the compounding asset of AIDA. Here's how they work in a team setting.
|
|
|
392
396
|
### Architecture
|
|
393
397
|
|
|
394
398
|
```
|
|
395
|
-
.aida/rules.json
|
|
396
|
-
.aida/skills.json
|
|
397
|
-
.aida/
|
|
398
|
-
.aida/memories/index.json
|
|
399
|
-
.aida/memories/modules/*.json
|
|
400
|
-
.aida/runs/*/
|
|
399
|
+
.aida/rules.json ← rules source of truth, committed to git
|
|
400
|
+
.aida/skills.json ← skills source of truth, committed to git
|
|
401
|
+
.aida/config.json ← project config source of truth, committed to git
|
|
402
|
+
.aida/memories/index.json ← module memory index, committed to git
|
|
403
|
+
.aida/memories/modules/*.json ← module memory source, committed to git
|
|
404
|
+
.aida/runs/*/requirement.json ← requirement history source, committed to git
|
|
405
|
+
.aida/runs/*/context.json ← branch context source, committed to git
|
|
401
406
|
↓
|
|
402
407
|
aida build
|
|
403
408
|
↓
|
|
404
|
-
.aida
|
|
405
|
-
.claude/.cursor/.codex/.lingma
|
|
409
|
+
.aida/**/*.md and other non-JSON files ← generated or local-only, gitignored
|
|
410
|
+
.claude/.cursor/.codex/.lingma and peers ← project-local tool artifacts, gitignored
|
|
411
|
+
.mcp.json / AGENTS.md / CLAUDE.md ← project-local integration files, recommended to ignore
|
|
406
412
|
↓
|
|
407
413
|
AI reads its own tool files next session
|
|
408
414
|
```
|
|
409
415
|
|
|
410
|
-
`aida build` writes generated rules, skills, memory views, and MCP config into
|
|
416
|
+
`aida build` writes generated rules, skills, memory views, and MCP config into AI tool directories inside the current project or AIDA view directories. Never edit generated `.md` files manually.
|
|
417
|
+
|
|
418
|
+
Recommended Git strategy:
|
|
419
|
+
- commit only JSON source files under `.aida`
|
|
420
|
+
- keep AI tool directories and project integration files local-only
|
|
421
|
+
- `aida init`, `aida migrate-dir`, and `aida migrate-legacy` print a manual reminder when ignored files were already tracked, but do not run destructive Git commands automatically
|
|
411
422
|
|
|
412
423
|
Legacy migration note:
|
|
413
424
|
- `aida migrate-legacy` now also migrates historical `run.json`, `requirement.json`, and `analysis.md` into `.aida/runs/*/context.json` and `.aida/memories/modules/*.json`
|
|
425
|
+
- when multiple baseline tools are detected, it auto-selects based on project config order and built-in priority instead of blocking on an interactive prompt
|
|
414
426
|
- old `report` files remain derived output; new context recovery uses the migrated JSON memory source
|
|
415
427
|
|
|
416
428
|
Runtime recovery note:
|
|
417
|
-
- before coding, search module memory and prefer the
|
|
429
|
+
- before coding, search module memory and prefer MCP `aida_memory_pack` or the JSON sources under `.aida/runs/*/requirement.json`, `.aida/runs/*/context.json`, and `.aida/memories/modules/*.json`
|
|
418
430
|
- if the branch context is missing or stale, rebuild it with `aida memory rebuild` or MCP `aida_context_rebuild`
|
|
419
431
|
|
|
420
432
|
### Daily workflow
|
package/README.zh-CN.md
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
{ "mcpServers": { "aida": { "command": "npx", "args": ["-y", "ai-dev-analytics", "mcp"] } } }
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
[](https://www.npmjs.com/package/ai-dev-analytics)
|
|
18
18
|
[](./LICENSE)
|
|
19
19
|
[](https://nodejs.org)
|
|
20
20
|
[](#测试)
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
[](https://glama.ai/mcp/servers/LWTlong/ai-dev-analytics)
|
|
25
25
|
|
|
26
|
-
[一行接入](#-30-秒上手) · [数据驱动闭环](#-数据驱动闭环) · [数据看板](#-数据看板) · [SOP 流程](#-标准化-ai-开发流程) · [数据沉淀](#-数据沉淀与绩效汇报) · [命令文档](./COMMANDS.md) · [文档导航](./docs/INDEX.md) · [English](./README.md)
|
|
26
|
+
[一行接入](#-30-秒上手) · [数据驱动闭环](#-数据驱动闭环) · [数据看板](#-数据看板) · [SOP 流程](#-标准化-ai-开发流程) · [数据沉淀](#-数据沉淀与绩效汇报) · [命令文档](./COMMANDS.md) · [文档导航](./docs/INDEX.md) · [English Reference](./README.md)
|
|
27
27
|
|
|
28
28
|
</div>
|
|
29
29
|
|
|
@@ -119,7 +119,7 @@ AIDA 全方位采集 AI 辅助开发的每个维度,转化为交互式图表
|
|
|
119
119
|
|
|
120
120
|
### 🔒 100% 本地。零外部请求。
|
|
121
121
|
|
|
122
|
-
AIDA
|
|
122
|
+
AIDA 会在项目里的 `.aida/` 保存 JSON 真源,并在当前项目内生成各 AI 工具所需的本地配置与视图文件。**整个代码库不包含任何外部 HTTP 请求** —— 不发遥测、不上传云端、不请求分析服务、不做任何追踪。零运行时依赖。你的代码和数据绝不会离开你的电脑。
|
|
123
123
|
|
|
124
124
|
## 命令文档
|
|
125
125
|
|
|
@@ -133,7 +133,9 @@ AIDA 只往项目里的 `.aida/` 目录写 JSON 文件。**整个代码库不包
|
|
|
133
133
|
|
|
134
134
|
## ⚡ 30 秒上手
|
|
135
135
|
|
|
136
|
-
|
|
136
|
+
中文 README 是主文档,英文版 [README.md](./README.md) 作为参考同步维护。
|
|
137
|
+
|
|
138
|
+
### 在项目里加一行 MCP 配置 —— 这就是全部的接入成本。
|
|
137
139
|
|
|
138
140
|
```json
|
|
139
141
|
{ "mcpServers": { "aida": { "command": "npx", "args": ["-y", "ai-dev-analytics", "mcp"] } } }
|
|
@@ -141,6 +143,8 @@ AIDA 只往项目里的 `.aida/` 目录写 JSON 文件。**整个代码库不包
|
|
|
141
143
|
|
|
142
144
|
不需要 SDK,不需要包装器,不需要改代码。把这行加到项目根目录的 `.mcp.json`,AI 下次写代码时 AIDA 就开始采集数据。完全静默 —— 零工作流改变。
|
|
143
145
|
|
|
146
|
+
当前策略是:**所有工具配置、rules、skills、MCP 接入文件都只落在当前项目内**。AIDA 不再把 Codex 或其他工具配置写到项目外或全局目录。
|
|
147
|
+
|
|
144
148
|
> *提示:如果 `npx` 比较慢,可以先全局安装:`npm install -g ai-dev-analytics`,然后把 command 改成 `"aida"`。全局安装后也可以直接使用 `aida` 命令(如 `aida dashboard`、`aida init`)。*
|
|
145
149
|
|
|
146
150
|
<details>
|
|
@@ -170,7 +174,7 @@ AIDA 只往项目里的 `.aida/` 目录写 JSON 文件。**整个代码库不包
|
|
|
170
174
|
}
|
|
171
175
|
```
|
|
172
176
|
|
|
173
|
-
**Windsurf**
|
|
177
|
+
**Windsurf** 项目内 MCP 配置文件:
|
|
174
178
|
```json
|
|
175
179
|
{
|
|
176
180
|
"mcpServers": {
|
|
@@ -298,7 +302,7 @@ AI 工具在工作时自动调用 MCP 工具。你不需要手动操作 ——
|
|
|
298
302
|
| 层级 | 文件 | 内容 |
|
|
299
303
|
|------|------|------|
|
|
300
304
|
| **运行** | `.aida/runs/{分支}/{开发者}/run.json` | 每个任务、Bug、偏差、审查、文件变更 |
|
|
301
|
-
| **分支** | `.aida/runs/{分支}/requirement.json` |
|
|
305
|
+
| **分支** | `.aida/runs/{分支}/requirement.json` | 需求与分支聚合统计 |
|
|
302
306
|
| **项目** | `.aida/index.json` | 跨分支总览 |
|
|
303
307
|
| **规则** | `.aida/rules.json` | 沉淀的项目规则 —— AI 持续增长的知识库 |
|
|
304
308
|
|
|
@@ -392,29 +396,37 @@ AIDA 使用 [Model Context Protocol](https://modelcontextprotocol.io/) —— AI
|
|
|
392
396
|
### 架构设计
|
|
393
397
|
|
|
394
398
|
```
|
|
395
|
-
.aida/rules.json
|
|
396
|
-
.aida/skills.json
|
|
397
|
-
.aida/
|
|
398
|
-
.aida/memories/index.json
|
|
399
|
-
.aida/memories/modules/*.json
|
|
400
|
-
.aida/runs/*/
|
|
399
|
+
.aida/rules.json ← 规则真源,提交到 git
|
|
400
|
+
.aida/skills.json ← skills 真源,提交到 git
|
|
401
|
+
.aida/config.json ← 项目配置真源,提交到 git
|
|
402
|
+
.aida/memories/index.json ← 模块记忆索引,提交到 git
|
|
403
|
+
.aida/memories/modules/*.json ← 模块记忆真源,提交到 git
|
|
404
|
+
.aida/runs/*/requirement.json ← 历史需求真源,提交到 git
|
|
405
|
+
.aida/runs/*/context.json ← 分支上下文真源,提交到 git
|
|
401
406
|
↓
|
|
402
407
|
aida build
|
|
403
408
|
↓
|
|
404
|
-
.aida
|
|
405
|
-
.claude/.cursor/.codex/.lingma
|
|
409
|
+
.aida/**/*.md 等非 JSON 文件 ← 自动生成或本地产物,加入 gitignore
|
|
410
|
+
.claude/.cursor/.codex/.lingma 等目录 ← 项目内工具产物,加入 gitignore
|
|
411
|
+
.mcp.json / AGENTS.md / CLAUDE.md ← 项目内接入文件,建议加入 gitignore
|
|
406
412
|
↓
|
|
407
413
|
AI 下次直接读取自己工具目录中的文件
|
|
408
414
|
```
|
|
409
415
|
|
|
410
|
-
`aida build` 会把规则、skills、记忆阅读视图、MCP
|
|
416
|
+
`aida build` 会把规则、skills、记忆阅读视图、MCP 配置分发到当前项目内的 AI 工具目录或 `.aida` 视图目录。不要手动编辑这些生成的 `.md` 文件。
|
|
417
|
+
|
|
418
|
+
当前建议的 Git 策略:
|
|
419
|
+
- `.aida` 下只提交 JSON 真源,其他派生文件全部忽略
|
|
420
|
+
- AI 工具目录和项目接入文件只保留在项目本地,不进入版本库
|
|
421
|
+
- `aida init`、`aida migrate-dir`、`aida migrate-legacy` 会提示你手动取消已被 Git 跟踪的忽略文件,但不会自动执行危险 Git 操作
|
|
411
422
|
|
|
412
423
|
旧项目迁移说明:
|
|
413
424
|
- `aida migrate-legacy` 现在会把历史 `run.json`、`requirement.json`、`analysis.md` 一起迁成 `.aida/runs/*/context.json` 和 `.aida/memories/modules/*.json`
|
|
425
|
+
- 如果检测到多个可导入基线工具,会按项目配置顺序和内置优先级自动选择,不再卡在交互等待
|
|
414
426
|
- 旧 `report` 文件仍然只是派生输出;新的上下文恢复依赖迁移后的 JSON 记忆真源
|
|
415
427
|
|
|
416
428
|
运行时恢复说明:
|
|
417
|
-
-
|
|
429
|
+
- 编码前先检索模块记忆,优先读取 MCP `aida_memory_pack` 或 `.aida/runs/*/requirement.json`、`.aida/runs/*/context.json`、`.aida/memories/modules/*.json`
|
|
418
430
|
- 如果分支上下文缺失或过旧,使用 `aida memory rebuild` 或 MCP `aida_context_rebuild` 重建
|
|
419
431
|
|
|
420
432
|
### 日常流程
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/build.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/build.ts"],"names":[],"mappings":"AAoCA,wBAAsB,KAAK,IAAI,OAAO,CAAC,IAAI,CAAC,CAiC3C"}
|
|
@@ -3,6 +3,14 @@ import { buildProjectArtifacts, readConfiguredTools } from '../../utils/ai-build
|
|
|
3
3
|
import { configPath } from '../../utils/paths.js';
|
|
4
4
|
import { fileExists } from '../../utils/fs.js';
|
|
5
5
|
import { promptMultiSelect } from '../../utils/prompt.js';
|
|
6
|
+
const SUPPORTED_BUILD_TOOLS = [
|
|
7
|
+
'claude-code',
|
|
8
|
+
'cursor',
|
|
9
|
+
'vscode-copilot',
|
|
10
|
+
'windsurf',
|
|
11
|
+
'lingma',
|
|
12
|
+
'codex',
|
|
13
|
+
];
|
|
6
14
|
function requestedTools() {
|
|
7
15
|
return process.argv.slice(3);
|
|
8
16
|
}
|
|
@@ -10,7 +18,12 @@ async function selectTools(configured) {
|
|
|
10
18
|
const requested = requestedTools();
|
|
11
19
|
if (requested.length > 0)
|
|
12
20
|
return requested;
|
|
13
|
-
const
|
|
21
|
+
const configuredSet = new Set(configured);
|
|
22
|
+
const selected = await promptMultiSelect('Select AI tools to build:', SUPPORTED_BUILD_TOOLS.map((tool) => ({
|
|
23
|
+
value: tool,
|
|
24
|
+
label: tool,
|
|
25
|
+
hint: configuredSet.has(tool) ? 'configured' : 'not yet configured',
|
|
26
|
+
})), { required: false });
|
|
14
27
|
return selected.length > 0 ? selected : configured;
|
|
15
28
|
}
|
|
16
29
|
export async function build() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.js","sourceRoot":"","sources":["../../../src/cli/commands/build.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAC5D,OAAO,EAAE,qBAAqB,EAAE,mBAAmB,EAAE,MAAM,yBAAyB,CAAC;AACrF,OAAO,EAAE,UAAU,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAC/C,OAAO,EAAE,iBAAiB,EAAE,MAAM,uBAAuB,CAAC;AAG1D,SAAS,cAAc;IACrB,OAAO,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;AAC/B,CAAC;AAED,KAAK,UAAU,WAAW,CAAC,UAA0B;IACnD,MAAM,SAAS,GAAG,cAAc,EAAE,CAAC;IACnC,IAAI,SAAS,CAAC,MAAM,GAAG,CAAC;QAAE,OAAO,SAAS,CAAC;IAC3C,MAAM,QAAQ,GAAG,MAAM,iBAAiB,CACtC,2BAA2B,EAC3B,
|
|
1
|
+
{"version":3,"file":"build.js","sourceRoot":"","sources":["../../../src/cli/commands/build.ts"],"names":[],"mappings":"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"}
|
package/dist/cli/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-dev-analytics",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "AI Development Analytics Platform - Track what AI actually does in your codebase",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"aida": "
|
|
7
|
+
"aida": "dist/cli/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|