agent-rules-generator
Version:
Interactive CLI tool to generate .agent.md and .windsurfrules files for AI-assisted development
79 lines (78 loc) • 2.19 kB
JSON
{
"name": "agent-rules-generator",
"version": "1.4.1",
"description": "Interactive CLI tool to generate .agent.md and .windsurfrules files for AI-assisted development",
"main": "index.js",
"bin": {
"agent-rules-generator": "index.js",
"generate-agent-rules": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "bun test",
"test:packaging": "bun test test/packaging.test.js",
"test:all": "bun test && npm run test:packaging",
"validate": "node scripts/validate_recipes.js",
"validate:remote": "node scripts/validate_recipes.js --remote",
"validate:fix": "node scripts/validate_recipes.js --remote --fix",
"validate:sample": "node scripts/validate_recipes.js --sample",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"build": "echo 'No build step required'",
"prepublishOnly": "npm run test:packaging",
"version:patch": "bun version patch && git push --follow-tags",
"version:minor": "bun version minor && git push --follow-tags",
"version:major": "bun version major && git push --follow-tags",
"version:show": "echo \"Current version: $npm_package_version\""
},
"keywords": [
"agent",
"ai",
"cursor",
"windsurf",
"development",
"cli",
"generator",
"rules",
"assistant"
],
"author": "ubuntupunk",
"license": "GPL-3.0",
"dependencies": {
"inquirer": "^9.2.12",
"chalk": "^4.1.2",
"figlet": "^1.6.0",
"js-yaml": "^4.1.0",
"glob": "^10.3.10"
},
"devDependencies": {
"jest": "^30.0.4",
"eslint": "^8.55.0",
"prettier": "^3.1.1",
"husky": "^8.0.3"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ubuntupunk/agent-rules-generator.git"
},
"bugs": {
"url": "https://github.com/ubuntupunk/agent-rules-generator/issues"
},
"homepage": "https://github.com/ubuntupunk/agent-rules-generator#readme",
"files": [
"index.js",
"agent_rules_cli.js",
"lib/",
"recipes/",
"scripts/",
"windsurf_recipes/",
"templates/",
"README.md",
"LICENSE",
"CHANGELOG.md"
]
}