Skip to main content
Glama
onesmartguy

Agentic Bits Claude Plugin

by onesmartguy

toggle_reference_repos

Control visibility of reference repositories in the status bar to focus on active projects or include reference materials as needed.

Instructions

Show or hide repos marked as type 'reference' in the status bar.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
showYestrue = include reference repos, false = active repos only

Implementation Reference

  • Handler implementation for toggle_reference_repos tool which updates the statusbar.showReferenceRepos configuration value.
    server.tool(
      "toggle_reference_repos",
      "Show or hide repos marked as type 'reference' in the status bar.",
      { show: z.boolean().describe("true = include reference repos, false = active repos only") },
      async ({ show }) => {
        const config = loadConfig();
        config.statusbar.showReferenceRepos = show;
        saveConfig(config);
        return { content: [{ type: "text", text: `Reference repos: ${show ? "shown" : "hidden"} in status bar.` }] };
      }
    );

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