@aigentics/agent-toolkit
Version:
Comprehensive toolkit for validating and managing Claude Flow agent systems
54 lines • 1.36 kB
JSON
{
"name": "@aigentics/agent-toolkit",
"version": "0.0.6",
"description": "Comprehensive toolkit for validating and managing Claude Flow agent systems",
"type": "module",
"main": "src/index.mjs",
"bin": {
"agent-toolkit": "./bin/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",
"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"
],
"author": "Aigentics / Teemu Linna",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/teemulinna/agent-toolkit.git"
},
"bugs": {
"url": "https://github.com/teemulinna/agent-toolkit/issues"
},
"homepage": "https://github.com/teemulinna/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"
}
}