OPOS: Skill for Claude Code

.claude/skills/acquire-resource/SKILL.md

acquire-resource is a skill for Claude Code from Koroqe/OPOS. It costs 41 tokens per session (1,240 once invoked), scanned A, original, MIT.

A resource-acquisition process for turning a missing tool or access need into a documented company resource.

In plain words
What is it for?
Use it when work is blocked by missing access or an unavailable instrument, such as an account, service, or tool. It can specify and register the request but cannot grant access itself.
Why use it?
It separates identifying and registering a needed resource from granting access, so credentials and approvals remain with a human.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is Koroqe/OPOS's own configuration. It tells Claude Code how to work on OPOS itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything OPOS configures →

View source ↗ Koroqe/OPOS
Reuse

Borrowing it

Nothing to install: this file belongs to Koroqe/OPOS. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Koroqe/OPOS/main/.claude/skills/acquire-resource/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Koroqe/OPOS

Made for: Claude Code.

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 acquire-resource

README.md
[![agentmods](https://agentmods.dev/badge/skills/koroqe/opos/acquire-resource.svg)](https://agentmods.dev/skills/koroqe/opos/acquire-resource)
Your own site
<a href="https://agentmods.dev/skills/koroqe/opos/acquire-resource"><img src="https://agentmods.dev/badge/skills/koroqe/opos/acquire-resource.svg" alt="Measured on agentmods" height="20"></a>
Per session 41 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,240 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.00041 $0.01240
Opus 5 $0.00020 $0.00620
Sonnet 5 $0.00008 $0.00248
Haiku 4.5 $0.00004 $0.00124

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

Security

Grade A, and why

acquire-resource 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.

.claude/skills/acquire-resource/SKILL.md · 45 lines

How it starts

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

acquire-resource

When to use

  • Routed from allocate-resource Q0 (the gap is an INSTRUMENT, not an executor).
  • Routed from review-history's backlog sweep when a kind: resource-gap item hits threshold.
  • Manually: /acquire-resource "<what access is missing and for which task class>".

The instrument counterpart of allocate-resource: that skill answers "who should do this work?"; this one answers "what does the company need to REACH to do this work?".

The grant gate (never-automate invariant 1 — the load-bearing constraint)

The pending-grant → active flip is ALWAYS a human action: only a human supplies credentials, logs an account in, sets a secret, or approves an MCP server registration. This skill specs, requests, waits, and registers — it never grants itself anything, and no scheduled run may carry authority over .mcp.json, settings permissions, or agent tools: writes.

Steps

  1. Parse + dedupe + resume. Validate the gap description (≥15 chars). Check company/resources/REGISTRY.md: an existing active resource covering the gap → stop with outcome: covered and print how to use it (the gap was discoverability, not absence; note that in the source backlog item). An existing pending-grant row → open its request spec: granted: truejump to step 5 and complete the registration (this is the resume path — any later invocation finishes what the human's flip started); still granted: false → increment its urgency note, stop.
  2. Pick the kind + cheapest path. In order of preference: an already-authed cli on some machine; an api with env/MCP auth the human can set once; browser-cdp — when the operator's browser is declared, most account-bound tasks (DNS, domains, email, SaaS admin) need NO new grant at all: register the task class against the existing browser resource instead of requesting new credentials; mcp for data stores; bare account as the fallback. Prefer the path with the smallest new-credential surface.
  3. Write the request spec AND the pending row. Append a status: pending-grant placeholder row to company/resources/REGISTRY.md (so the registry, the ops panel, and schedule-process's availability check all see the in-flight request). Then write the spec to company/resources/requests/<YYYY-MM-DD>-<slug>.md — frontmatter includes granted: false (THE resume signal: the human flips it to true when the grant is done, in the same sitting as the grant itself; the issue and the residual-duties card both say so): the gap, the chosen kind + path, exactly what the human must do (the smallest grant that unblocks — e.g. "run gh secret set CLOUDFLARE_API_TOKEN" or "confirm agents may use your Chrome for Cloudflare DNS edits"), which task classes it unlocks, and the draft RESOURCE.md entry ready to activate. File the consumer-repo issue [acquire-resource] grant needed — <slug> (local title dedupe, repo via gh repo view).
  4. WAIT. The run ends here. No polling loop; the human acts on their own time.
  5. On grant (the human says so directly, or step 1's resume path found granted: true): render the RESOURCE.md entry from shared/templates/RESOURCE.md.tmpl (status active, owner_human named, machines: filled for per-machine kinds), flip the placeholder REGISTRY row to status: active (filling machines), delete or archive the request spec, flip the source resource-gap backlog item to state: designed + designed_as: company/resources/<name>.md, close the issue. mcp kind only — the register-mcp-server sub-step: the human edits .mcp.json themselves (or watches the edit and confirms line-by-line); this skill may PRINT the exact JSON to add but never writes that file autonomously.
  6. History entry per the prelude routing convention.

Read the full file on GitHub · 45 lines

Files

What ships with it

2 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. 6d ago First seen · 45 lines · 41 tokens per session scan A 26cecd86c5ab

Subscribe to this mod's changes

acquire-resource is a skill published in the GitHub repository Koroqe/OPOS (2 stars, last pushed 5d ago), licensed MIT. It adds 41 tokens to every session and 1,240 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-31.

Related

Other skills, from other repositories

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

super-evolve

Ultimate self-evolution skill. Merges evolve + self-improve into one comprehensive meta-skill with external research, area focus, dry-run mode, and expanded memory mining.

OZmasterAI/Torus-Framework · 35 tokens

pr-to-video

Turn a GitHub pull request (a PR URL, owner/repo#N, or 'this PR' in a checked-out repo) into a code-change explainer video — changelog, feature reveal, fix, or refactor walkthrough built from the diff, commits, and files: the input is a code change, not a website. Not a product promo (/product-launch-video) or a no-PR…

heygen-com/hyperframes · 104 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

torchforge-rl-training

Provides guidance for PyTorch-native agentic RL using torchforge, Meta's library separating infra from algorithms. Use when you want clean RL abstractions, easy algorithm experimentation, or scalable training with Monarch and TorchTitan.

davila7/claude-code-templates · 49 tokens

horse-integration-tests

Guide for writing automated integration tests for Horse endpoints using DUnit/DUnitX and THTTPClient.

HashLoad/horse · 25 tokens