Files
antigravity-superpowers/package.json
spaceman1412 fd4c3c2fc7 Add new skills and utilities for enhanced writing and testing
- Introduced graphviz conventions for visualizing process flows in writing skills.
- Added a comprehensive guide on persuasion principles to improve skill design effectiveness.
- Implemented a script to render graphviz diagrams from markdown files to SVG format.
- Created a detailed reference for testing skills with subagents, emphasizing TDD principles.
- Established a task tracker template for live task management.
- Developed a shell script to check the integrity of the antigravity profile and required files.
- Added test scripts to validate the initialization of agent projects.
- Created workflows for brainstorming, executing plans, and writing plans to streamline processes.
2026-02-26 15:16:32 +07:00

30 lines
617 B
JSON

{
"name": "antigravity-superpowers",
"version": "0.1.0",
"description": "CLI to initialize the Antigravity Superpowers .agent profile",
"type": "module",
"bin": {
"antigravity-superpowers": "bin/antigravity-superpowers.js"
},
"files": [
"bin/",
"src/",
"templates/.agent/**",
"README.md"
],
"scripts": {
"test": "node --test tests",
"smoke:pack": "node scripts/check-pack.mjs",
"prepublishOnly": "npm test && npm run smoke:pack"
},
"keywords": [
"antigravity",
"superpowers",
"cli"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
}
}