Skip to main content
Glama
onesmartguy

Agentic Bits Claude Plugin

by onesmartguy

toggle_statusbar

Control visibility of the git branch status bar in Claude's interface to manage repository tracking display.

Instructions

Enable or disable the entire status bar. When disabled the status line script outputs nothing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
enabledYestrue = enable, false = disable

Implementation Reference

  • The implementation of the toggle_statusbar tool, which updates the statusbar.enabled configuration property and saves the configuration.
    // --- toggle_statusbar ---
    server.tool(
      "toggle_statusbar",
      "Enable or disable the entire status bar. When disabled the status line script outputs nothing.",
      { enabled: z.boolean().describe("true = enable, false = disable") },
      async ({ enabled }) => {
        const config = loadConfig();
        config.statusbar.enabled = enabled;
        saveConfig(config);
        return { content: [{ type: "text", text: `Status bar ${enabled ? "enabled" : "disabled"}.` }] };
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/onesmartguy/agentic-bits-claude-plugin'

If you have feedback or need assistance with the MCP directory API, please join our Discord server