From buttondown-mgmt
Clone or pull the official Buttondown documentation repository (github.com/buttondown/docs) into the plugin's local cache. The cached docs are the canonical source of truth for any Buttondown API, CLI, or feature question — consult them before answering or making API calls.
npx claudepluginhub danielrosehill/claude-code-plugins --plugin buttondown-mgmtThis skill uses the workspace's default tool permissions.
The cached docs are authoritative. Other sources (training data, web search) may be stale.
Creates new Angular apps using Angular CLI with flags for routing, SSR, SCSS, prefixes, and AI config. Follows best practices for modern TypeScript/Angular development. Use when starting Angular projects.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
Share bugs, ideas, or general feedback.
The cached docs are authoritative. Other sources (training data, web search) may be stale.
DATA_ROOT="${CLAUDE_USER_DATA:-${XDG_DATA_HOME:-$HOME/.local/share}/claude-plugins}/buttondown-mgmt"
DOCS_DIR="$DATA_ROOT/cache/docs"
mkdir -p "$(dirname "$DOCS_DIR")"
if [ -d "$DOCS_DIR/.git" ]; then
git -C "$DOCS_DIR" pull --ff-only
else
git clone --depth 1 https://github.com/buttondown/docs "$DOCS_DIR"
fi
After refresh, update docs_last_refresh in $DATA_ROOT/config.json to the current ISO timestamp.
Report: docs path, latest commit SHA + date, file count.