From rocket-fuel
Create or verify the dedicated Rocket Fuel project board with GitHub Project automation
How this skill is triggered — by the user, by Claude, or both
Slash command
/rocket-fuel:board-setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill guides the Integrator through creating a GitHub Project board for Rocket Fuel with the required workflow columns and automation.
This skill guides the Integrator through creating a GitHub Project board for Rocket Fuel with the required workflow columns and automation.
The Rocket Fuel orchestrator uses a GitHub Project board to track work items across multiple workers. This skill ensures the board exists with the correct columns and automation rules configured.
The board must have the following columns in this exact order:
Use the GitHub CLI to create a new project in the repository:
gh project create --owner drdanmaggs --title "Rocket Fuel" --template table
Or visit https://github.com/orgs/drdanmaggs/projects and click "New project".
Using the GitHub CLI, create each column:
gh project field-create --project "Rocket Fuel" --name "Backlog" --field-type single_select
gh project field-create --project "Rocket Fuel" --name "Ready" --field-type single_select
gh project field-create --project "Rocket Fuel" --name "Scoped" --field-type single_select
gh project field-create --project "Rocket Fuel" --name "In Progress" --field-type single_select
gh project field-create --project "Rocket Fuel" --name "In Review" --field-type single_select
gh project field-create --project "Rocket Fuel" --name "Done" --field-type single_select
Or manually create columns via the GitHub UI by clicking the "+" button on the right side of the project board.
Link the board to the repository to enable automatic status updates:
This is configured in the project settings under "Automation".
To verify the board is correctly set up:
Once configured, the Integrator can begin assigning work by moving issues to the Scoped column with a worker assignment.
npx claudepluginhub drdanmaggs/rocket-fuel --plugin rocket-fuelCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.