cc-enhance
Version:
Adaptive prompt intelligence with 25-step selection, CLAUDE.md adherence, MCP tool orchestration, parallel execution and memory integration for Claude Code
82 lines (81 loc) • 2.53 kB
JSON
{
"name": "cc-enhance",
"version": "0.2.2",
"description": "Adaptive prompt intelligence with 25-step selection, CLAUDE.md adherence, MCP tool orchestration, parallel execution and memory integration for Claude Code",
"author": "Rama Annaswamy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ramakay/cc-enhance.git"
},
"homepage": "https://github.com/ramakay/cc-enhance#readme",
"bugs": {
"url": "https://github.com/ramakay/cc-enhance/issues"
},
"keywords": [
"claude",
"claude-code",
"prompt-engineering",
"contrarian-analysis",
"enhancement",
"intelligent-selection",
"parallel-execution",
"mcp-tools",
"memory-integration",
"adaptive-enhancement",
"risk-based",
"agent-detection",
"rule-adherence",
"tool-orchestration"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cc-enhance": "dist/cli/cc-enhance.js"
},
"files": [
"dist",
"commands",
"assets",
"scripts/postinstall.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json && chmod +x dist/cli/*.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint . --fix --report-unused-disable-directives --max-warnings 0",
"lint:check": "eslint . --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run clean && npm run build",
"prepare": "npm run build",
"postinstall": "node scripts/postinstall.js",
"release": "npm version patch && npm publish --access public && git push --tags",
"release:minor": "npm version minor && npm publish --access public && git push --tags",
"release:major": "npm version major && npm publish --access public && git push --tags"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@google/genai": "^1.14.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^3.2.2",
"@vitest/ui": "^3.2.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-sonarjs": "^3.0.1",
"prettier": "^3.4.2",
"typescript": "^5.2.2",
"vitest": "^3.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}