loading…
Search for a command to run...
loading…
Adds a live git branch status bar to the Claude footer for tracking multiple active and reference repositories. It allows users to manage repository visibility
Adds a live git branch status bar to the Claude footer for tracking multiple active and reference repositories. It allows users to manage repository visibility and configuration directly through natural language MCP tools.
Claude Code MCP plugin that adds a live git branch status bar to the Claude footer.
⎇ payment-service:feature/PAYM-43 | payments-ui:main | payments-infra:main
git clone [email protected]:raptortech1/agentic-bits-claude-plugin.git
cd agentic-bits-claude-plugin
npm install && npm run build
bash scripts/setup.sh
Then add the MCP server to your project's .mcp.json:
{
"mcpServers": {
"agentic-bits": {
"command": "node",
"args": ["/path/to/agentic-bits-claude-plugin/dist/index.js"]
}
}
}
See docs/setup-guide.md for full instructions including payment-service workspace pre-population.
| Tool | What it does |
|---|---|
get_branch_status |
Live branch status for all visible repos |
add_repo |
Add a repo to track |
remove_repo |
Remove a repo |
set_repo_visibility |
Show/hide a specific repo |
toggle_statusbar |
Enable/disable the status bar |
toggle_reference_repos |
Show/hide reference repos |
list_repos |
List all repos and their config |
get_config_info |
Dump full config + path |
~/.config/agentic-bits/plugin.json
{
"statusbar": {
"enabled": true,
"showReferenceRepos": false
},
"repos": [
{
"path": "/absolute/path/to/repo",
"label": "my-repo",
"type": "active",
"show": true
}
]
}
Tag a commit to publish to npm:
git tag v1.0.0 && git push origin v1.0.0
Pipeline: typecheck → build → npm publish → GitLab release.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agentic-bits-claude-plugin": {
"command": "npx",
"args": []
}
}
}