@fingerskier/augment 0.5.0 → 0.5.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.
- package/LICENSE +201 -201
- package/README.md +494 -467
- package/dist/cli.js +5 -4
- package/dist/cli.js.map +1 -1
- package/dist/daemon/lifetime-lock.js +12 -12
- package/dist/db.js +107 -107
- package/dist/hooks.d.ts +8 -5
- package/dist/hooks.js +49 -20
- package/dist/hooks.js.map +1 -1
- package/dist/install.d.ts +14 -2
- package/dist/install.js +189 -1
- package/dist/install.js.map +1 -1
- package/dist/mcp/apps.js +480 -480
- package/dist/pi/extension.js +20 -20
- package/docs/FEATURES.md +771 -758
- package/docs/verify-memory-flow.md +132 -132
- package/integrations/claude/skills/augment-context/SKILL.md +74 -74
- package/integrations/claude/skills/augment-decoction/SKILL.md +36 -36
- package/integrations/claude/skills/augment-dream/SKILL.md +34 -34
- package/integrations/claude/skills/augment-dream/agents/openai.yaml +4 -4
- package/integrations/claude/skills/augment-sleep/SKILL.md +26 -26
- package/integrations/codex/SKILL.md +107 -107
- package/integrations/examples/claude-mcp-config.json +17 -17
- package/integrations/examples/codex-mcp-config.json +17 -17
- package/integrations/examples/grok-mcp-config.toml +18 -0
- package/integrations/grok/AGENTS.md +61 -0
- package/integrations/pi/skills/augment-decoction/SKILL.md +37 -37
- package/integrations/pi/skills/augment-dream/SKILL.md +36 -36
- package/package.json +85 -85
package/package.json
CHANGED
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fingerskier/augment",
|
|
3
|
-
"version": "0.5.
|
|
4
|
-
"description": "Local RAG memory system for coding agents",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pi-package",
|
|
7
|
-
"pi",
|
|
8
|
-
"opencode",
|
|
9
|
-
"memory",
|
|
10
|
-
"rag",
|
|
11
|
-
"mcp",
|
|
12
|
-
"coding-agent"
|
|
13
|
-
],
|
|
14
|
-
"type": "module",
|
|
15
|
-
"main": "./dist/opencode/plugin.js",
|
|
16
|
-
"types": "./dist/opencode/plugin.d.ts",
|
|
17
|
-
"publishConfig": {
|
|
18
|
-
"access": "public"
|
|
19
|
-
},
|
|
20
|
-
"bin": {
|
|
21
|
-
"augment": "./dist/bin/augment.js",
|
|
22
|
-
"augment-daemon": "./dist/bin/augment-daemon.js",
|
|
23
|
-
"augment-mcp": "./dist/bin/augment-mcp.js"
|
|
24
|
-
},
|
|
25
|
-
"pi": {
|
|
26
|
-
"extensions": [
|
|
27
|
-
"./dist/pi/extension.js"
|
|
28
|
-
],
|
|
29
|
-
"skills": [
|
|
30
|
-
"./integrations/pi/skills"
|
|
31
|
-
]
|
|
32
|
-
},
|
|
33
|
-
"files": [
|
|
34
|
-
"dist",
|
|
35
|
-
"docs",
|
|
36
|
-
"integrations",
|
|
37
|
-
"README.md",
|
|
38
|
-
"LICENSE"
|
|
39
|
-
],
|
|
40
|
-
"scripts": {
|
|
41
|
-
"clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
42
|
-
"build": "npm run clean && tsc -p tsconfig.json",
|
|
43
|
-
"test": "node --import tsx --test \"test/**/*.test.ts\"",
|
|
44
|
-
"test:model": "node --import tsx --import ./test/setup-real-model.mjs --test \"test/**/*.model.ts\"",
|
|
45
|
-
"check": "npm run build && npm test",
|
|
46
|
-
"prepack": "npm run check",
|
|
47
|
-
"prepublishOnly": "npm run check"
|
|
48
|
-
},
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"@earendil-works/pi-ai": "*",
|
|
51
|
-
"@earendil-works/pi-coding-agent": "*",
|
|
52
|
-
"typebox": "*"
|
|
53
|
-
},
|
|
54
|
-
"peerDependenciesMeta": {
|
|
55
|
-
"@earendil-works/pi-ai": {
|
|
56
|
-
"optional": true
|
|
57
|
-
},
|
|
58
|
-
"@earendil-works/pi-coding-agent": {
|
|
59
|
-
"optional": true
|
|
60
|
-
},
|
|
61
|
-
"typebox": {
|
|
62
|
-
"optional": true
|
|
63
|
-
}
|
|
64
|
-
},
|
|
65
|
-
"dependencies": {
|
|
66
|
-
"@huggingface/transformers": "^3.8.0",
|
|
67
|
-
"@libsql/client": "^0.15.15",
|
|
68
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
69
|
-
"chokidar": "^4.0.3",
|
|
70
|
-
"cytoscape": "^3.34.0",
|
|
71
|
-
"gray-matter": "^4.0.3",
|
|
72
|
-
"zod": "^3.25.76"
|
|
73
|
-
},
|
|
74
|
-
"devDependencies": {
|
|
75
|
-
"@opencode-ai/plugin": "^1.17.15",
|
|
76
|
-
"@types/node": "^24.3.0",
|
|
77
|
-
"tsx": "^4.20.5",
|
|
78
|
-
"typebox": "^1.1.38",
|
|
79
|
-
"typescript": "^5.9.2"
|
|
80
|
-
},
|
|
81
|
-
"engines": {
|
|
82
|
-
"node": ">=20"
|
|
83
|
-
},
|
|
84
|
-
"license": "Apache-2.0"
|
|
85
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fingerskier/augment",
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "Local RAG memory system for coding agents",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pi-package",
|
|
7
|
+
"pi",
|
|
8
|
+
"opencode",
|
|
9
|
+
"memory",
|
|
10
|
+
"rag",
|
|
11
|
+
"mcp",
|
|
12
|
+
"coding-agent"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "./dist/opencode/plugin.js",
|
|
16
|
+
"types": "./dist/opencode/plugin.d.ts",
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"access": "public"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"augment": "./dist/bin/augment.js",
|
|
22
|
+
"augment-daemon": "./dist/bin/augment-daemon.js",
|
|
23
|
+
"augment-mcp": "./dist/bin/augment-mcp.js"
|
|
24
|
+
},
|
|
25
|
+
"pi": {
|
|
26
|
+
"extensions": [
|
|
27
|
+
"./dist/pi/extension.js"
|
|
28
|
+
],
|
|
29
|
+
"skills": [
|
|
30
|
+
"./integrations/pi/skills"
|
|
31
|
+
]
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"docs",
|
|
36
|
+
"integrations",
|
|
37
|
+
"README.md",
|
|
38
|
+
"LICENSE"
|
|
39
|
+
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
42
|
+
"build": "npm run clean && tsc -p tsconfig.json",
|
|
43
|
+
"test": "node --import tsx --test \"test/**/*.test.ts\"",
|
|
44
|
+
"test:model": "node --import tsx --import ./test/setup-real-model.mjs --test \"test/**/*.model.ts\"",
|
|
45
|
+
"check": "npm run build && npm test",
|
|
46
|
+
"prepack": "npm run check",
|
|
47
|
+
"prepublishOnly": "npm run check"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"@earendil-works/pi-ai": "*",
|
|
51
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
52
|
+
"typebox": "*"
|
|
53
|
+
},
|
|
54
|
+
"peerDependenciesMeta": {
|
|
55
|
+
"@earendil-works/pi-ai": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"@earendil-works/pi-coding-agent": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"typebox": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"@huggingface/transformers": "^3.8.0",
|
|
67
|
+
"@libsql/client": "^0.15.15",
|
|
68
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
69
|
+
"chokidar": "^4.0.3",
|
|
70
|
+
"cytoscape": "^3.34.0",
|
|
71
|
+
"gray-matter": "^4.0.3",
|
|
72
|
+
"zod": "^3.25.76"
|
|
73
|
+
},
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@opencode-ai/plugin": "^1.17.15",
|
|
76
|
+
"@types/node": "^24.3.0",
|
|
77
|
+
"tsx": "^4.20.5",
|
|
78
|
+
"typebox": "^1.1.38",
|
|
79
|
+
"typescript": "^5.9.2"
|
|
80
|
+
},
|
|
81
|
+
"engines": {
|
|
82
|
+
"node": ">=20"
|
|
83
|
+
},
|
|
84
|
+
"license": "Apache-2.0"
|
|
85
|
+
}
|