{
  "markdown": "# Gambit\n\n<p align=\"center\">\n  <img src=\"assets/logo.png\" alt=\"Gambit\" width=\"800\">\n</p>\n\n<p align=\"center\">\n  <a href=\"https://github.com/felipecabargas/gambit/blob/main/LICENSE\"><img src=\"https://img.shields.io/badge/license-MIT-blue\" alt=\"License: MIT\"></a>\n  <a href=\"https://github.com/felipecabargas/gambit/releases\"><img src=\"https://img.shields.io/github/v/release/felipecabargas/gambit\" alt=\"Latest Release\"></a>\n  <img src=\"https://img.shields.io/badge/Claude_Code-plugin-orange\" alt=\"Claude Code Plugin\">\n  <img src=\"https://img.shields.io/badge/Antigravity_CLI-supported-blueviolet\" alt=\"Antigravity CLI\">\n  <img src=\"https://img.shields.io/badge/OpenCode-supported-steelblue\" alt=\"OpenCode\">\n</p>\n\nA collection of skills and chained workflow agents designed to streamline product management workflows, from research synthesis to feature specification, strategic planning, and stakeholder communication.\n\n## Quick Start\n\nVia the Claude community marketplace (recommended):\n\n```bash\n/plugin marketplace add anthropics/claude-plugins-community\n/plugin install gambit@claude-community\n```\n\nOr from the author's marketplace:\n\n```bash\n/plugin marketplace add felipecabargas/gambit\n/plugin install gambit@felipecabargas-gambit\n```\n\nSee [Installation](#installation) for Antigravity CLI, OpenCode, and manual options.\n\n## Skills\n\n| Category | Skill | What it does |\n|---|---|---|\n| Core | `verify-acceptance-criteria` | Score ACs against five quality dimensions, flag gaps, and rewrite weak criteria |\n| Core | `write-feature-request` | Guided FR authoring with auto-generated ACs for every requirement |\n| Core | `write-product-strategy` | Generate a `STRATEGY.md` with pillars tied to research evidence |\n| Core | `sprint-review` | Turn ticket lists or sprint data into a polished stakeholder report |\n| Core | `prioritize` | Score and rank features using RICE, ICE, or MoSCoW grounded in your strategy |\n| Discovery | `synthesize-user-research` | Pull themes, pain points, and jobs-to-be-done from raw research |\n| Discovery | `build-user-persona` | Build evidence-backed personas with research-validated vs. inferred attributes |\n| Discovery | `competitive-analysis` | Player profiles, capability matrix, and whitespace opportunities |\n| Communication | `write-okrs` | Derive Objectives and Key Results from a product strategy |\n| Communication | `write-roadmap` | Horizon-based roadmap (Now/Next/Later) from strategy and OKRs |\n| Communication | `write-release-notes` | Customer-facing release notes from sprint tickets and PRs |\n| Communication | `write-stakeholder-update` | Data-led leadership status update with OKR progress |\n| Handoff | `write-technical-brief` | Engineering handoff document from a verified Feature Request |\n\n## Agents\n\nAgents chain multiple skills in sequence, pausing for confirmation between steps.\n\n| Agent | Chain | When to use |\n|---|---|---|\n| `discovery-to-fr` | synthesize-user-research → build-user-persona → write-feature-request | Raw research → finished FR |\n| `fr-to-ready` | write-feature-request → verify-acceptance-criteria → write-technical-brief | Feature idea → dev-ready handoff |\n| `strategy-to-roadmap` | write-product-strategy → write-okrs → write-roadmap | Start of a planning cycle |\n| `sprint-to-stakeholders` | sprint-review → write-release-notes → write-stakeholder-update | End of every sprint |\n\n## Installation\n\n> **No terminal?** If you're a non-technical PM using Claude's desktop app, see [Using Gambit in Claude Cowork](docs/cowork.md) for a terminal-free setup guide and a full end-to-end workflow walkthrough.\n\n### Claude Community Marketplace (recommended)\n\nGambit is listed in the [Claude community plugin directory](https://github.com/anthropics/claude-plugins-community). From within Claude Code, run:\n\n```bash\n/plugin marketplace add anthropics/claude-plugins-community\n/plugin install gambit@claude-community\n```\n\nSkills are immediately available as both model-invoked skills and slash commands (`/gambit:sprint-review`, `/gambit:verify-acceptance-criteria`, etc.).\n\n### Claude Plugin (author's marketplace)\n\nAlternatively, install directly from the author's marketplace:\n\n```bash\n/plugin marketplace add felipecabargas/gambit\n/plugin install gambit@felipecabargas-gambit\n```\n\n### Antigravity CLI\n\n```bash\nagy plugin install https://github.com/felipecabargas/gambit\n```\n\nUpdate later:\n\n```bash\nagy plugin update gambit\n```\n\n### OpenCode\n\n```json\n{\n  \"plugins\": [\"gambit-opencode\"]\n}\n```\n\nAdd to your `opencode.json`. Commands are available as `/gambit-write-feature-request`, `/gambit-sprint-review`, etc. See [gambit-opencode](https://github.com/felipecabargas/gambit-opencode) for the full list.\n\n### Optional: Superpowers\n\nSome skills surface suggestions for `/superpowers:brainstorming` (at the start of strategy and feature request workflows) and `/superpowers:requesting-code-review` (after writing a technical brief). These come from the [Superpowers plugin](https://github.com/obra/superpowers) — install it separately to use them. Gambit works fully without it.\n\n### Manual Install (non-Claude environments)\n\n```bash\n# Copy individual skills\ncp -r skills/verify-acceptance-criteria/ ~/.claude/skills/\n\n# Or copy all skills at once\ncp -r skills/* ~/.claude/skills/\n```\n\n## Usage\n\nSkills activate from natural language — just describe what you need. See [docs/getting-started.md](docs/getting-started.md) for trigger examples, common workflows, and tips.\n\n## Directory Structure\n\n```\n.\n├── README.md\n├── LICENSE\n├── .claude-plugin/\n│   ├── plugin.json                        # Plugin manifest\n│   └── marketplace.json                   # Marketplace catalog\n├── skills/\n│   ├── prioritize/\n│   ├── verify-acceptance-criteria/\n│   ├── write-feature-request/\n│   ├── write-product-strategy/\n│   ├── sprint-review/\n│   ├── synthesize-user-research/\n│   ├── build-user-persona/\n│   ├── competitive-analysis/\n│   ├── write-okrs/\n│   ├── write-roadmap/\n│   ├── write-release-notes/\n│   ├── write-stakeholder-update/\n│   └── write-technical-brief/\n├── agents/\n│   ├── discovery-to-fr.md\n│   ├── fr-to-ready.md\n│   ├── strategy-to-roadmap.md\n│   └── sprint-to-stakeholders.md\n├── docs/\n│   ├── getting-started.md\n│   ├── cowork.md                          # Terminal-free setup for non-technical PMs\n│   ├── skill-framework.md\n│   └── contributing.md\n├── examples/\n│   └── bionicle/                          # Real workflow outputs (sprint-to-stakeholders + strategy-to-roadmap)\n└── package.json\n```\n\n## Contributing\n\nContributions are welcome! See `docs/contributing.md` for guidelines on creating new skills or improving existing ones.\n\n## License\n\nMIT License - see LICENSE file for details.\n\n## Support\n\nFor issues, questions, or feedback, please open an issue or discussion in this repository.\n",
  "bytes": 6776,
  "sha": "cdae95c8cea4b16185c22e2b6e0a98b83532d629131d1370123e4556bb4974b1",
  "repo_slug": "felipecabargas/gambit",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_felipecabargas_gambit_e07bb75e/readme"
}