local-agent
Version:
A CLI agentic system for orchestrating tools and memory with per-folder scoping
94 lines (93 loc) • 2.63 kB
JSON
{
"name": "local-agent",
"version": "0.5.2",
"description": "A CLI agentic system for orchestrating tools and memory with per-folder scoping",
"main": "dist/cli.js",
"bin": {
"local-agent": "bin/local-agent.js"
},
"scripts": {
"build": "tsc",
"build:clean": "rm -rf dist && npm run build",
"create-bin": "mkdir -p bin && node scripts/create-bin.js",
"prepublishOnly": "npm run build && npm run create-bin",
"start": "node dist/cli.js",
"start:bun": "bun src/cli.ts",
"dev": "tsx src/cli.ts",
"dev:bun": "bun src/cli.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:runner": "node scripts/run-tests.js",
"test:build": "npm run build && npm run create-bin && echo 'Build completed successfully'",
"test:node": "node dist/cli.js",
"test:bun": "bun src/cli.ts",
"test:bin": "node bin/local-agent.js",
"package": "npm pack",
"package:test": "npm pack && npm install -g ./local-agent-*.tgz",
"clean": "rm -rf dist bin node_modules package-lock.json local-agent-*.tgz",
"reset": "npm run clean && npm install",
"setup": "npm install && npm run build && npm run create-bin",
"release:prepare": "npm run build:clean && npm run create-bin && npm run package",
"release:test": "npm run release:prepare && npm run package:test"
},
"files": [
"dist/**/*",
"bin/**/*",
"src/cli.ts",
"src/*.ts",
"README.md",
"ARCHITECTURE.md",
"SCRIPTS.md"
],
"keywords": [
"cli",
"agent",
"mcp",
"agentic",
"tools",
"memory",
"ai"
],
"author": "Alberto Navarro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/navio/local-agent.git"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.15.29",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@agentic/ai-sdk": "^7.6.5",
"@agentic/mcp": "^7.6.5",
"@agentic/stdlib": "^7.6.5",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.18",
"@openrouter/ai-sdk-provider": "^0.7.0",
"ai": "^4.3.16",
"dotenv": "^16.5.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"zod": "^3.25.42"
},
"bun": {
"bin": {
"local-agent": "src/cli.ts"
}
},
"types": "./dist/cli.d.ts",
"bugs": {
"url": "https://github.com/navio/local-agent/issues"
},
"homepage": "https://github.com/navio/local-agent#readme"
}