Help us improve
Share bugs, ideas, or general feedback.
Contribute to the open-source projects you care about, powered by Claude Code.
npx claudepluginhub mainnebula/token-stewardContribute to the open-source projects you care about. Discover issues, get guided workflows, and submit quality PRs — all powered by Claude Code.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 83 marketplace plugins, 191 local specialized agents, and 155 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
Contribute to open-source projects you care about, powered by Claude Code.
Token Steward finds real issues on projects that matter to you, sets up everything you need, and guides you through making quality contributions. Got unused Claude Code tokens each week? Put them to work on the open-source tools you depend on.
Discover. Pick your path: find issues on projects you've starred and use, browse high-impact issues on well-known open-source projects, or name a specific repo. No profile analysis or broad searching — just a quick choice and filtered results.
Work. Claude guides you through the fix, not the other way around. It explains what the bug is, what causes it, where it lives in the codebase, and walks through the fix approach — then asks if it makes sense before writing code. After implementing, it explains expected behavior and helps you test. You understand every change before it ships.
Propose. For larger issues, Claude analyzes the codebase and drafts a proposal comment. It walks you through the reasoning so you can evaluate and adjust before posting. The maintainer can then approve, suggest changes, or decline.
Submit. When you're satisfied with the fix and tests pass, Token Steward pushes your branch and opens a draft PR. Safe to run multiple times.
Use Token Steward as slash commands directly in Claude Code. No npm install required — just gh CLI.
npx skills add mainnebula/token-steward
Or manually:
git clone https://github.com/mainnebula/token-steward.git /tmp/token-steward
cp -r /tmp/token-steward/.claude/* ~/.claude/
After installing, restart Claude Code for it to discover the new skill.
| Command | What it does |
|---|---|
/token-steward:discover | Choose a path (your projects, important projects, or a specific repo) and find approachable issues |
/token-steward:work owner/repo#123 | Set up a workspace and get guided through understanding, fixing, and testing the issue |
/token-steward:submit | Submit your contribution — PR, review, or proposal |
/token-steward:status | Show environment, open PRs, budget, and workspace info |
/token-steward:stats | Show contribution history and statistics |
The plugin works standalone with just gh CLI. If you also install the full CLI, the plugin detects it and delegates discovery, scoring, and workspace setup locally — saving Claude Code tokens and adding persistent tracking.
| Feature | Plugin only | Plugin + CLI |
|---|---|---|
| Discover issues | Claude searches via gh | Runs locally, faster |
| Workspace setup | Claude forks/branches via gh | Handled locally |
| Contribution stats | Basic (from GitHub API) | Detailed per-run tracking |
| Token budgets | None | Enforced per-run and weekly |
| Run history | None | Persistent, queryable |
| Scheduling | None | Automated contribution windows |
steward discover # Find issues on projects you care about
steward work cli/cli#9432 # Jump into a guided Claude Code session
steward submit # Review your changes and open a draft PR
npm install -g token-steward
steward init
steward init checks your environment, walks you through setup, and gets everything ready. After that, steward discover is all you need.
Already set up? Run steward init --check to verify prerequisites without changing anything.
config/policy.yaml controls how and when you contribute:
weekly_target_tokens: 500000
weekly_min_reserve_tokens: 25000
schedule:
- day: FRI
start: "18:00"
end: "23:59"
- day: SAT
start: "09:00"
end: "23:59"
filters:
categories_allow: [developer-tools, documentation, security, ai-ml]
min_confidence: 0.40
limits:
max_concurrency: 2
max_tokens_per_run: 60000
max_runs_per_day: 6
# auto = propose first for complex issues
# always = always propose before coding
# never = skip straight to implementation
propose_first: auto
config/registry.yaml is your list of projects you want to contribute to. Each entry specifies which issue labels to look for:
repositories:
- slug: cli/cli
name: GitHub CLI
category: developer-tools
tags: [cli, go, github]
issue_labels: [good first issue, help wanted]