Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add dodobrands/ai-hub/plugin install buildinWrote 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.
[](https://agentmods.dev/commands/dodobrands/ai-hub/publish-page)<a href="https://agentmods.dev/commands/dodobrands/ai-hub/publish-page"><img src="https://agentmods.dev/badge/commands/dodobrands/ai-hub/publish-page/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/dodobrands/ai-hub/publish-page"><img src="https://agentmods.dev/badge/commands/dodobrands/ai-hub/publish-page.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00017 | $0.02977 |
| Opus 5 | $0.00009 | $0.01489 |
| Sonnet 5 | $0.00003 | $0.00595 |
| Haiku 4.5 | $0.00002 | $0.00298 |
Grade A, and why
publish-page 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 230 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Publish Page — создание и обновление страницы в Buildin (UI API)
Создаёт или обновляет страницу в Buildin.ai. Поддерживает создание из markdown-файлов, текста или структурированного контента.
Константы
Каталог скриптов резолвится так, чтобы команда работала из любого репозитория (standalone-клон, subtree-overlay, marketplace-install). Выполни строку-резолвер перед вызовом скриптов; если bash-блоки запускаются отдельными shell'ами и переменная между ними не сохраняется — повтори её в начале нужного блока.
# resolve-buildin-dir:start — первый существующий из кандидатов: плагин-кеш → overlay → standalone
BUILDIN_SCRIPTS=$(ls -d "${CLAUDE_PLUGIN_ROOT:-/nope}/scripts" "$PWD"/integrations/*/integrations/buildin/scripts "$PWD"/integrations/buildin/scripts 2>/dev/null | head -1)
# resolve-buildin-dir:end
Входные параметры
Аргумент: $ARGUMENTS — parent_page_id и опционально заголовок.
Формат: <parent_page_id> [page_title]
Workflow
Фаза 0: Проверь авторизацию
bash "$BUILDIN_SCRIPTS/buildin-login.sh" check
Если error:* — запусти /ai-hub:buildin-login для логина.
ℹ️ Создавать новую страницу или дополнять существующую? Если пользователь просит «добавить / дописать / обновить» уже существующую страницу — переходи к разделу «Обновление существующей страницы» вместо Фаз 1–4.
Фаза 1: Подготовка
- Разбери аргументы:
- Первый аргумент —
parent_page_id(UUID родительской страницы) - Второй аргумент (опционально) — заголовок страницы
- Первый аргумент —
- Если заголовок не указан, спроси пользователя через AskUserQuestion
Фаза 2: Сбор контента
- Спроси пользователя, что опубликовать:
- Файл — путь к markdown/текстовому файлу в репозитории
- Текст — пользователь введёт текст напрямую
- Пустая страница — создать страницу только с заголовком
- Если указан файл, прочитай его содержимое через Read
Фаза 3: Создание страницы
bash "$BUILDIN_SCRIPTS/buildin-pages.sh" create "<parent_page_id>" "<title>"
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.
- 10d ago First seen · 230 lines · 17 tokens per session scan A cb02601578d5
publish-page is a command published in the GitHub repository dodobrands/ai-hub (6 stars, last pushed yesterday), licensed MIT. It adds 17 tokens to every session and 2,977 once invoked, about $0.0001 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.
Other commands, from other repositories
checklist
Generate a custom checklist for the current feature based on user requirements.
clarify
Identify underspecified areas in the current feature spec by asking up to 5 highly targeted clarification questions and encoding answers back into the spec.
specify
Create or update the feature specification from a natural language feature description.
analyze
Perform a non-destructive cross-artifact consistency and quality analysis across spec.md, plan.md, and tasks.md after task generation.
converge
Assess the current codebase against the feature's spec, plan, and tasks, then append any remaining unbuilt work as new tasks to tasks.md so implement can complete it.
implement
Execute the implementation plan by processing and executing all tasks defined in tasks.md.