booster-mcp-workflow

booster-mcp-workflow is a skill for Claude Code, Codex from NeuroGhostDev/booster_mcp. It costs 52 tokens per session (1,179 once invoked), scanned A, original, MIT.

A workflow for connecting a code repository to Booster MCP, a service that builds searchable project context and analysis artifacts. It covers scanning the repository, indexing it, checking progress, and retrieving maps or search results.

In plain words
What is it for?
Use it to add a repository, wait for indexing, inspect scan results, obtain a project map, search for symbols or concepts, and retrieve analysis artifacts.
Why use it?
It gives the agent a repeatable way to prepare repository context before answering code questions. This reduces the chance of working from incomplete or outdated project information.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add a repository, wait for indexing, inspect scan results, obtain a project map, search for symbols or concepts, and retrieve analysis artifacts.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neuroghostdev/booster_mcp/booster-mcp-workflow
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add NeuroGhostDev/booster_mcp --skill booster-mcp-workflow
Clone the repo
git clone --depth 1 https://github.com/NeuroGhostDev/booster_mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for booster-mcp-workflow

README.md
[![agentmods](https://agentmods.dev/badge/skills/neuroghostdev/booster_mcp/booster-mcp-workflow.svg)](https://agentmods.dev/skills/neuroghostdev/booster_mcp/booster-mcp-workflow)
Your own site
<a href="https://agentmods.dev/skills/neuroghostdev/booster_mcp/booster-mcp-workflow"><img src="https://agentmods.dev/badge/skills/neuroghostdev/booster_mcp/booster-mcp-workflow.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,179 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00052 $0.01179
Opus 5 $0.00026 $0.00589
Sonnet 5 $0.00010 $0.00236
Haiku 4.5 $0.00005 $0.00118

Measured 6d ago against content hash 59acab282f0f, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

booster-mcp-workflow scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 6d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/booster-mcp-workflow/SKILL.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Booster MCP Workflow

Цель

Безопасно подключить репозиторий к Booster MCP, получить актуальный контекст и убедиться, что артефакты анализа доступны агенту.

Базовый Цикл

  1. Проверь встроенные навыки через list_agent_skills().
  2. Для нового или большого локального репозитория сначала запусти из его корня booster expand --profile balanced. Это создаёт ограниченный scope и не загружает embedding-модель.
  3. Прочитай .agents/booster/scan_report.json. Если достигнуты limits, реши осознанно: сохранить быстрый scope или повторить booster expand --profile deep перед индексацией.
  4. Добавь проект: add_repo("<absolute_repo_path>"). MCP использует сохранённый scan_config.json и возвращает job_id.
  5. Проверь job через index_status(job_id="..."); для bounded ожидания используй wait_until_ready(), а не долгий MCP request.
  6. Проверь результаты индексации и пути к артефактам: repo_stats() и get_repo_artifacts().
  7. Получи сжатую структуру проекта: inject_context() или get_repo_map().
  8. Для известных символов, API и mixed-запросов используй hybrid_search(); для чисто смыслового поиска используй semantic_search().
  9. При необходимости получи рекомендации по актуальной документации: fetch_stack_docs().
  10. Выбери специализированный skill для дальнейшей работы.
  11. Перед финальным ответом вызови booster.task_complete(task_id="<task-id>"): Booster поставит финальный reindex и сохранит commit-bound snapshot.
booster expand --profile balanced
add_repo("D:\\workSpace\\project")
index_status(repo_path="D:\\workSpace\\project")
get_repo_artifacts()
inject_context(include_map=True, include_stack=True, include_conventions=True)
repo_stats()
hybrid_search("authenticate_user JWT")
fetch_stack_docs()
booster.task_complete(task_id="task-123")

Проверка Артефактов

get_repo_artifacts() возвращает состояние канонических файлов:

  • .agents/booster/repo_map.md
  • .agents/booster/repo_map_architecture.md
  • .agents/booster/repo_map_symbols.md
  • .agents/booster/index_health.json
  • .agents/booster/code_city.html
  • .agents/booster/scan_config.json
  • .agents/booster/scan_report.json
  • .agents/booster/latest.json
  • .agents/booster/snapshots/<commit>-<state>-<digest>/

Read the full file on GitHub · 90 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 6d ago First seen · 90 lines · 52 tokens per session scan A 59acab282f0f

Subscribe to this mod's changes

booster-mcp-workflow is a skill published in the GitHub repository NeuroGhostDev/booster_mcp (0 stars, last pushed 4d ago), licensed MIT. It adds 52 tokens to every session and 1,179 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

html-portal-generator

Convert a codebase into a self-contained HTML portal app for ingestion into AI application systems. Produces a single deployable HTML file with embedded CSS, JS, and data.

athola/skrills · 40 tokens

frontmcp-development

Use when building any FrontMCP server component other than a tool (for tools, use create-tool). Covers @Resource static resources and parameterized URI templates; @Prompt reusable prompts (RAG, multi-turn); @Provider singleton dependency-injection providers (database pools, API clients); @Agent autonomous LLM agents…

agentfront/frontmcp · 196 tokens

pipefy-ai-agents

Use this skill when the user wants to create, read, update, delete, or troubleshoot AI agents (conversational agents with behaviors). Covers 7 MCP tools including pre-flight validation, plus pipe-scoped knowledge bases (list, plain text/document/data lookup CRUD, access probe) attached via dataSourceIds. For…

pipefy/ai-toolkit · 84 tokens

pipefy-automations

Use this skill when the user wants to create, read, update, or delete traditional automations (if/then rules) or AI automations (prompt-driven). Covers 16 MCP tools. For AI agents (conversational), see skills/ai-agents/.

pipefy/ai-toolkit · 60 tokens

pipefy-ipaas

Use when the user wants to build, test, publish, or manage iPaaS (Advanced Automations) flows: multi-step integrations with external apps (Slack, Gmail, Google Sheets), incoming webhooks, schedules, routers, code steps, or iPaaS data tables. MCP-only, driven through 4 meta-tools over a per-pipe catalog discovered at…

pipefy/ai-toolkit · 104 tokens

pipefy-portal-setup

Use this skill when the user wants to list, create, or configure Pipefy portals (main hub, pages, page elements, sub-portals, publish/unpublish). Covers 20 MCP tools on Interfaces + internalapi. Not for pipes/cards.

pipefy/ai-toolkit · 57 tokens