mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 07:41:09 +02:00
29 lines
657 B
JSON
29 lines
657 B
JSON
{
|
|
"name": "@manacore/agent-knowledge",
|
|
"version": "1.0.0",
|
|
"description": "Auto-updating AI agent knowledge system - agents that learn from your code changes",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "src/index.js",
|
|
"bin": {
|
|
"agent-knowledge": "bin/cli.js",
|
|
"ak": "bin/cli.js"
|
|
},
|
|
"scripts": {
|
|
"cli": "node bin/cli.js",
|
|
"update": "node bin/cli.js update --claude",
|
|
"status": "node bin/cli.js status",
|
|
"scan": "node bin/cli.js scan"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^5.3.0",
|
|
"commander": "^12.1.0",
|
|
"fs-extra": "^11.2.0",
|
|
"inquirer": "^9.2.23",
|
|
"ora": "^8.0.1",
|
|
"yaml": "^2.4.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|