octo-marketplace

octo-marketplace is a skill for Claude Code, Codex from Mininglamp-OSS/octo-cli. It costs 48 tokens per session (1,500 once invoked), scanned A, original, Apache-2.0.

A command-line workflow for searching, installing, publishing, and updating items in the Octo Marketplace. The marketplace contains agent skills, tool connections, and expert or expert-team listings.

In plain words
What is it for?
Finding or installing skills and tool connections, and creating, updating, or publishing marketplace listings for skills, MCP servers, experts, or squads.
Why use it?
It helps agents manage reusable add-ons and marketplace listings through one documented interface.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions AGENTS.md.

Good fit Finding or installing skills and tool connections, and creating, updating, or publishing marketplace listings for skills, MCP servers, experts, or squads.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mininglamp-oss/octo-cli/octo-marketplace
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 Mininglamp-OSS/octo-cli --skill octo-marketplace
Clone the repo
git clone --depth 1 https://github.com/Mininglamp-OSS/octo-cli

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 octo-marketplace

README.md
[![agentmods](https://agentmods.dev/badge/skills/mininglamp-oss/octo-cli/octo-marketplace/github.svg)](https://agentmods.dev/skills/mininglamp-oss/octo-cli/octo-marketplace)
Your own site
<a href="https://agentmods.dev/skills/mininglamp-oss/octo-cli/octo-marketplace"><img src="https://agentmods.dev/badge/skills/mininglamp-oss/octo-cli/octo-marketplace/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.

agentmods 80×15 button for octo-marketplace

Your own site · 80×15
<a href="https://agentmods.dev/skills/mininglamp-oss/octo-cli/octo-marketplace"><img src="https://agentmods.dev/badge/skills/mininglamp-oss/octo-cli/octo-marketplace.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,500 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high System Prompt Leakage · line 130
    Skill contains instructions that could directly expose system prompts, internal rules, or hidden instructions to users or external parties.
    Fix: Remove any instructions that reveal, print, or output system prompts or internal rules. System instructions should never be exposed to end users.
How audits are shown
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.00048 $0.01500
Opus 5 $0.00024 $0.00750
Sonnet 5 $0.00010 $0.00300
Haiku 4.5 $0.00005 $0.00150

Measured 7d ago against content hash 97d192d95f72, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

octo-marketplace 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 7d 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/octo-marketplace/SKILL.md · 150 lines

How it starts

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

octo-marketplace — unified plugin catalog

The marketplace is one backend with a single catalog surface: every asset is a plugin with a plugin_type. All commands authenticate with the active credential and send its Space context; a bf_* User Bot is resolved to its owner and authoritative Bot Space by the backend. Unified catalog operations use /market/api/v1/plugins*; helper operations such as categories, uploads, probes, and icon presigns use other routes under /market/api/v1/*.

plugin_type was read via
skill Skill ZIP skills.md
connector MCP listing mcp.md
expert Expert (专家) expert.md
expert_team Squad (专家团) expert.md
octo-cli marketplace plugin list --scene-code default --plugin-type skill --q "<kw>"
octo-cli marketplace plugin get --plugin-id <id> --include-relations

scene-code is default. Catalog listing requires --scene-code and --plugin-type; the owned all-types view is the exception:

octo-cli marketplace plugin list --scene-code default --mode mine

Use immutable plugin_id and review_id values, never names.

Save, publish, and review lifecycle

Creating with plugin upsert or skill plugin import saves a draft and a version snapshot; it does not expose the plugin to the Space catalog. Updates preserve the current listing state: draft/delisted content remains editable, published private content remains owner-only, and published Space content rejects direct edits and must use review. Version labels use MAJOR.MINOR.PATCH (each numeric component is 1–9 digits) and may not move backward.

After verifying a saved draft, publish it explicitly:

octo-cli marketplace plugin publish --plugin-id <plugin-id> \
  --version 1.2.0 --changelog "What changed"
  • A private plugin's listing state becomes published immediately, but it stays owner-only and is not exposed in the Space catalog.
  • A space plugin opens a review request and remains a draft until a Space owner/admin approves it. Save the returned review_id.
  • Read display_status as the user-facing state: draft, pending_review, published, rejected, or delisted. listing_state is the lower-level listing axis.

Read the full file on GitHub · 150 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 7d ago Changed · +100 lines · +10 tokens per session 97d192d95f72
  2. 13d ago First seen · 50 lines · 38 tokens per session scan A febcec479f00

Subscribe to this mod's changes

octo-marketplace is a skill published in the GitHub repository Mininglamp-OSS/octo-cli (773 stars, last pushed yesterday), licensed Apache-2.0. It adds 48 tokens to every session and 1,500 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

gh-skill

Manage agent skills with gh skill. Use this skill to discover, preview, install, update, and publish Agent Skills so an agent can self-manage the skills available in its environment.

cli/cli · 41 tokens

gh

Patterns for invoking the GitHub CLI (gh) from agents. Covers structured output, pagination, repo targeting, search vs list, gh api fallback.

cli/cli · 32 tokens

printing-press-amend

Amend a published CLI from one of two input sources: (1) dogfood mode mines the active Claude Code session transcript for friction (missing flags, hand- rolled API payloads, silent-null returns); (2) direct-input mode accepts user-supplied asks (rename a command, add commands or feeds, fix a named bug, optionally…

mvanhorn/cli-printing-press · 222 tokens

printing-press-score

Score a generated CLI against the Steinberger bar, compare two CLIs side-by-side.

mvanhorn/cli-printing-press · 22 tokens

printing-press-import

Bring a published CLI from the public library into the internal library so it's identical to a freshly-generated copy — module path reverted, manuscripts placed alongside, ready for /printing-press-polish or /printing-press-emboss. Use when the public library has a CLI you don't have locally, or to recover from a…

mvanhorn/cli-printing-press · 104 tokens

printing-press-output-review

Internal sub-skill: agentic review of a printed CLI's sampled command output for plausibility issues that rule-based checks can't encode (substring-match relevance, format bugs, silent source drops, ranking failures). Invoked via the Skill tool by the main printing-press skill at Phase 4.85 and printing-press-polish…

mvanhorn/cli-printing-press · 102 tokens