{ "name": "agenticworkspace-cli", "version": "0.1.2", "description": "CLI that converts any repository into an agent-ready workspace: detects your stack, scaffolds a .workspace/ directory with progressive context loading and session handoffs, and installs a working Claude Code adapter out of the box.", "keywords": [ "cli", "ai-agents", "claude-code", "agent-workspace", "developer-tools", "context-management", "session-handoff", "devex" ], "homepage": "https://github.com/RudrenduPaul/AgenticWorkspace#readme", "bugs": { "url": "https://github.com/RudrenduPaul/AgenticWorkspace/issues" }, "repository": { "type": "git", "url": "git+https://github.com/RudrenduPaul/AgenticWorkspace.git" }, "license": "Apache-2.0", "author": "Rudrendu Paul", "type": "module", "bin": { "agenticworkspace": "./dist/agenticworkspace/cli.js", "agenticworkspace-cli": "./dist/agenticworkspace/cli.js" }, "main": "./dist/agenticworkspace/index.js", "types": "./dist/agenticworkspace/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "scripts": { "clean": "rm -rf dist", "prebuild": "npm run clean", "build": "tsc -p tsconfig.json", "dev": "tsx src/agenticworkspace/cli.ts", "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "lint": "eslint .", "typecheck": "tsc --noEmit", "prepublishOnly": "npm run build" }, "dependencies": { "commander": "^12.1.0" }, "devDependencies": { "@types/node": "^20.14.0", "@typescript-eslint/eslint-plugin": "^7.16.0", "@typescript-eslint/parser": "^7.16.0", "@vitest/coverage-v8": "^3.2.6", "eslint": "^8.57.0", "tsx": "^4.16.0", "typescript": "^5.5.0", "vitest": "^3.2.6" } }