@aigentics/agent-toolkit
Version:
Comprehensive toolkit for validating and managing Claude Flow agent systems
66 lines • 1.85 kB
JSON
{
"name": "@aigentics/agent-toolkit",
"version": "0.0.12",
"description": "Comprehensive toolkit for validating and managing Claude Flow agent systems",
"type": "module",
"main": "src/index.mjs",
"bin": {
"agent-toolkit": "./bin/cli.mjs",
"claude-flow-hooks": "./src/hooks-cli.mjs"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"validate": "node src/cli.mjs validate",
"fix": "node src/cli.mjs fix",
"analyze": "node src/cli.mjs analyze",
"create": "node src/cli.mjs create",
"fix-hooks": "node src/fix-hooks.mjs",
"auto-fix-hooks": "node src/auto-fix-hooks.mjs",
"fix-hooks-interactive": "node src/interactive-fix-hooks.mjs",
"smart-fix-hooks": "node src/smart-fix-hooks.mjs",
"enhanced-smart-fix": "node src/enhanced-smart-fix.mjs",
"restore-mcp": "node src/restore-legitimate-mcp.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint lib/**/*.mjs bin/**/*.mjs test/**/*.mjs --fix",
"prepublishOnly": "npm test"
},
"keywords": [
"claude-flow",
"agents",
"validation",
"automation",
"ai-orchestration",
"hooks",
"claude-code",
"mcp",
"cli-tools",
"npx"
],
"author": "Aigentics / Teemu Linna",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teemulinna/claude-flow-agent-toolkit.git"
},
"bugs": {
"url": "https://github.com/teemulinna/claude-flow-agent-toolkit/issues"
},
"homepage": "https://github.com/teemulinna/claude-flow-agent-toolkit#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"js-yaml": "^4.1.0",
"ora": "^7.0.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"vitest": "^1.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}