Borrowing it
Nothing to install: this file belongs to tweakoz/orkid. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/tweakoz/orkid/develop/.claude/skills/orkcore-catalog/SKILL.mdgit clone --depth 1 https://github.com/tweakoz/orkidWrote 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/skills/tweakoz/orkid/orkcore-catalog)<a href="https://agentmods.dev/skills/tweakoz/orkid/orkcore-catalog"><img src="https://agentmods.dev/badge/skills/tweakoz/orkid/orkcore-catalog.svg" alt="Measured on agentmods" 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.00062 | $0.01260 |
| Opus 5 | $0.00031 | $0.00630 |
| Sonnet 5 | $0.00012 | $0.00252 |
| Haiku 4.5 | $0.00006 | $0.00126 |
Grade A, and why
orkcore-catalog scanned grade A with 1 finding 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 5d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
- `fetch(fqid)` / `fetchAsync(fqid)` — download assets (sync/async) How it starts
The opening of the file, as written. The whole thing — 106 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orkid Asset Catalog System Reference
When answering questions about asset management in orkid, consult these files.
Key Files
| Component | Location |
|---|---|
| AssetCatalog | ork.core/inc/ork/asset/catalog/catalog.h |
| Catalog Impl | ork.core/src/asset/catalog/catalog.cpp |
| Manifest Loading | ork.core/src/asset/catalog/catalog_manifests.cpp |
| AssetManifest | ork.core/inc/ork/asset/catalog/manifest.h |
| AssetEntry | ork.core/inc/ork/asset/catalog/manifest.h (same file) |
| AssetConfig / ConfigSpace | ork.core/inc/ork/asset/catalog/config.h |
| ChunkManifest | ork.core/inc/ork/asset/catalog/chunk_manifest.h |
| ChunkAssembler | ork.core/inc/ork/asset/catalog/chunk_assembler.h |
| FetchRequest | ork.core/inc/ork/asset/catalog/request.h |
| Namespace | ork.core/inc/ork/asset/catalog/namespace.h |
| Encryption | ork.core/src/asset/catalog/catalog_crypt.cpp |
| Catalog Impl Detail | ork.core/src/asset/catalog/catalog_impl.h |
| Python Bindings | ork.core/pyext/pyext_asset_catalog.cpp |
| Config Bindings | ork.core/pyext/pyext_asset_config.cpp |
| Import Module | obt.project/scripts/ork/catalog_import.py |
| Import CLI | obt.project/bin/ork.catalog.import.py |
| Catalog GUI Tool | obt.project/bin/ork.catalog.tool.py |
| Python Assets Helper | obt.project/scripts/ork/assets.py |
Architecture Overview
AssetCatalog (Singleton)
globalInstance()— thread-safe lazy singleton viastd::once_flagreloadAllManifests(catalog)— purge and reload from diskloadFromGlobalManifests(catalog)— load fromORKID_ASSET_MANIFEST_DIRSfetch(fqid)/fetchAsync(fqid)— download assets (sync/async)uploadAsset(fqid)/uploadNamespace(ns)— upload to CDNfindAssetEntry(fqid)— lookup metadata without downloadlist_namespaces("*")/list_assets("*")— enumeration with wildcards- Asset IDs are fully-qualified:
namespace|asset_id
Internal State (CatalogImpl)
CatalogState (protected by LockedResource):
_manifests_by_namespace — map<ns, list<manifest>>
_nodes_by_namespace — map<ns, AssetNamespace>
_entries_by_assetid — map<fqid, AssetIndexEntry>
_codecs_by_namespace — map<ns, EncryptionCodec>
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.
- 5d ago First seen · 106 lines · 62 tokens per session scan A 8825b4af44b9
orkcore-catalog is a skill published in the GitHub repository tweakoz/orkid (35 stars, last pushed 25d ago), licensed MIT. It adds 62 tokens to every session and 1,260 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-01.
Other skills, from other repositories
luban-dev
A guide for Luban, a game-configuration tool that turns spreadsheets and schemas into C# code and binary data for a TEngine project.
html-to-ugui
A pipeline for turning HTML interface prototypes into Unity UGUI Prefabs, which are reusable Unity interface objects. It uses browser-rendered layout data to preserve positions, images, text, controls, and device-adaptation intentions.
metasounds
Create and modify MetaSound Source assets — add/connect nodes, wire pins, set input defaults, and play procedurally (MetaSoundService). Use when the user asks to create a MetaSound, build or edit a MetaSound graph, add operator/input/output nodes, or generate procedural audio.
tengine-dev
A development guide for TEngine, a framework used to build Unity games. It covers the framework’s modules, user interfaces, events, asset loading, hot updates, configuration, and related tools.
et-unitybridge
UnityBridge workflow for AI operations in Unity Editor. Use when checking UnityBridge connectivity, Unity compile or PlayMode state, running deferred UnityBridge commands, operating assets/scenes/GameObjects/Inspector/Prefabs/GameView/screenshots, running Editor tests, or troubleshooting UnityBridge responses.
et-eui
ET EUI client UI workflow for this project's cn.etetet.eui framework. Use when creating or modifying DlgXxx windows, ESxxx reusable sub-UI, ItemXxx loop items, AUIEvent handlers, WindowID registration, widget binding (E via UIFindHelper), ShowWindow/Hide/Close flow, EUI root layers, or LoopScrollRect lists.…