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.
npx agentmods add skills/tweakoz/orkid/orkcore-reflectionnpx skills add tweakoz/orkid --skill orkcore-reflectiongit 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-reflection)<a href="https://agentmods.dev/skills/tweakoz/orkid/orkcore-reflection"><img src="https://agentmods.dev/badge/skills/tweakoz/orkid/orkcore-reflection.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 | $0.00057 | $0.00975 |
| Opus 5 | $0.00028 | $0.00487 |
| Sonnet 5 | $0.00011 | $0.00195 |
| Haiku 4.5 | $0.00006 | $0.00097 |
Grade A, and why
orkcore-reflection 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 2d 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 — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Orkid Core Reflection & Object System Reference
When answering questions about reflection, serialization, or the object model in orkid, consult the source files listed below.
Key Files
| Component | Header | Implementation |
|---|---|---|
| RTTI Macros | ork.core/inc/ork/rtti/RTTI.h |
|
| Object Base | ork.core/inc/ork/object/Object.h |
ork.core/src/object/Object.cpp |
| ObjectClass | ork.core/inc/ork/object/ObjectClass.h |
ork.core/src/object/ObjectClass.cpp |
| Description | ork.core/inc/ork/reflect/Description.h |
|
| Property Base | ork.core/inc/ork/reflect/properties/ObjectProperty.h |
|
| Property Registration | ork.core/inc/ork/reflect/properties/register.h |
|
| Direct Properties | ork.core/inc/ork/reflect/properties/DirectTyped*.h |
|
| Accessor Properties | ork.core/inc/ork/reflect/properties/AccessorTyped*.h |
|
| JSON Serializer | ork.core/inc/ork/reflect/serialize/JsonSerializer.h |
|
| JSON Deserializer | ork.core/inc/ork/reflect/serialize/JsonDeserializer.h |
|
| SerDes Node Model | ork.core/inc/ork/reflect/serialize/serdes.h |
|
| Functors | ork.core/inc/ork/reflect/Functor.h |
|
| Signals/Slots | ork.core/inc/ork/object/connect.h |
|
| Reflection Init | ork.core/src/reflect/reflection_init.cpp |
Architecture Overview
Class Declaration
class MyClass : public ork::Object {
RttiDeclareConcrete(MyClass, ork::Object); // or RttiDeclareAbstract
static void Describe(); // Registration entry point
float _value;
};
Property Registration (in Describe())
void MyClass::Describe() {
auto clazz = GetClassStatic();
clazz->directProperty("value", &MyClass::_value); // Direct member
clazz->accessorProperty("x", &MyClass::getX, &MyClass::setX); // Getter/setter
clazz->directEnumProperty("mode", &MyClass::_mode); // Enum
clazz->directMapProperty("items", &MyClass::_items); // Map
clazz->directObjectProperty("child", &MyClass::_child); // Object ptr
}
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.
- 2d ago First seen · 89 lines · 57 tokens per session scan A 2be26c96952e
orkcore-reflection is a skill published in the GitHub repository tweakoz/orkid (35 stars, last pushed 21d ago), licensed MIT. It adds 57 tokens to every session and 975 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-09-01.
Other skills, from other repositories
llvm-learning
Comprehensive learning resources and tutorials for LLVM, Clang, and compiler development. Use this skill when helping users learn LLVM internals, find educational resources, or understand compiler concepts.
learn-rust
Use when the user wants to learn Rust interactively by exploring the sessions-chronicle codebase, guided by questions, micro-exercises, and Rust Book references.
cpp-mentor
A general, self-adapting C++ mentor for any project. On first run with an empty profile it onboards: settles the goal and domain, derives a namespace from the goal, agrees conventions, and audits the developer's level in both C++ and the project's topic — then saves a per-project profile and calibrates to it. On…
juce-guide
Step-by-step guide for building a JUCE audio plugin from scratch. Use when the user asks "how do I create a JUCE plugin", "set up a JUCE project", "add parameters to my JUCE plugin", "package my VST3", or "how do I wire up APVTS". Trigger on phrases like "create a JUCE plugin", "JUCE CMake setup", "AudioProcessor…
novice-refactor
Trigger for the NOVICEREFACTOR doctrine on a validated phase-2 C file — the textbook treatment for true beginners. Invoke when the user types NOVICEREFACTOR, COMPLETELITERATE / LITERATE (legacy aliases), /novice-refactor , or asks to refactor a file so a first-time reader (no domain background) can learn the algorithm…
cpp-lectures-dev
Самостоятельно реализуй проект «поиск по лекциям Константина Владимирова по C++ через MCP-сервер» по утверждённому плану, выступая исполнителем, а не навигатором. Используй этот скилл всякий раз, когда нужно писать или менять код этого проекта — конвейер подготовки (yt-dlp, Deepgram, Jina, Postgres плюс pgvector)…