UNPKG

autoagent-cli

Version:

Run autonomous AI agents using Claude or Gemini for task execution

93 lines (92 loc) 3.13 kB
{ "name": "autoagent-cli", "version": "0.8.1", "description": "Run autonomous AI agents using Claude or Gemini for task execution", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "autoagent": "./bin/autoagent" }, "scripts": { "build": "tsc -p tsconfig.prod.json", "build:dev": "tsc", "clean": "rm -rf dist", "prebuild": "npm run clean", "test": "npm run build && vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:unit": "vitest run test/unit --coverage", "test:integration": "vitest run test/integration", "test:e2e": "npm run build && vitest run test/e2e", "test:smoke": "npm run build && vitest run test/smoke", "test:performance": "vitest run test/performance", "test:contract": "vitest run test/contract", "test:coverage": "vitest run --coverage", "test:coverage:ui": "vitest --coverage --ui", "test:bench": "vitest bench --config vitest.bench.config.ts", "bench": "vitest bench --config vitest.bench.config.ts", "bench:enhanced": "node -r esbuild-register test/performance/benchmarks/ci-runner.ts", "bench:ci": "node -r esbuild-register test/performance/benchmarks/ci-runner.ts --fail-on-regression false --iterations 10", "bench:stats": "node -r esbuild-register test/performance/benchmarks/ci-runner.ts --iterations 200 --output-dir ./benchmark-results", "test:ci": "vitest run --coverage --reporter=json --reporter=default", "test:debug": "vitest --inspect-brk --inspect --logHeapUsage --threads=false", "typecheck": "tsc --noEmit", "lint": "eslint .", "lint:fix": "eslint . --fix", "check": "run-p typecheck lint test", "check:sequential": "npm run typecheck && npm run lint && npm test", "prepublishOnly": "npm run build", "release:patch": "./scripts/prepare-release.sh --type patch", "release:minor": "./scripts/prepare-release.sh --type minor", "release:major": "./scripts/prepare-release.sh --type major", "release:rollback": "./scripts/rollback-release.sh" }, "keywords": [ "ai", "agent", "claude", "gemini", "automation", "autonomous", "cli", "typescript" ], "author": "AutoAgent Contributors", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/carlrannaberg/autoagent.git" }, "bugs": { "url": "https://github.com/carlrannaberg/autoagent/issues" }, "homepage": "https://github.com/carlrannaberg/autoagent#readme", "engines": { "node": ">=22.0.0" }, "files": [ "dist/**/*.js", "dist/**/*.d.ts", "bin", "README.md", "LICENSE" ], "dependencies": { "chalk": "^4.1.2", "commander": "^12.1.0", "simple-task-master": "^0.1.1" }, "devDependencies": { "@types/node": "^20.11.30", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4", "dotenv": "^17.0.1", "eslint": "^8.57.0", "memfs": "^4.11.1", "npm-run-all": "^4.1.5", "typescript": "^5.4.3", "vitest": "^3.2.4" } }