orkcore-reflection

orkcore-reflection is a skill for Claude Code, Codex from tweakoz/orkid. It costs 57 tokens per session (975 once invoked), scanned A, original, MIT.

Answer questions about orkid's C++ reflection system, RTTI, property registration, serialization, Object class hierarchy, signals/slots, and object factories. Use when the user asks about class registration, property types, serialize/deserialize, or the reflect namespace.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/tweakoz/orkid/orkcore-reflection
Any agent
npx skills add tweakoz/orkid --skill orkcore-reflection
Clone the repo
git clone --depth 1 https://github.com/tweakoz/orkid

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 orkcore-reflection

README.md
[![agentmods](https://agentmods.dev/badge/skills/tweakoz/orkid/orkcore-reflection.svg)](https://agentmods.dev/skills/tweakoz/orkid/orkcore-reflection)
Your own site
<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>
Per session 57 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 975 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00057 $0.00975
Opus 5 $0.00028 $0.00487
Sonnet 5 $0.00011 $0.00195
Haiku 4.5 $0.00006 $0.00097

Measured 2d ago against content hash 2be26c96952e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

.claude/skills/orkcore-reflection/SKILL.md · 89 lines

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
}

Read the full file on GitHub · 89 lines

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. 2d ago First seen · 89 lines · 57 tokens per session scan A 2be26c96952e

Subscribe to this mod's changes

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.

Related

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.

gmh5225/awesome-llvm-security · 39 tokens

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.

supermaciz/sessions-chronicle · 36 tokens

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…

sectapunterx/cpp-mentor · 234 tokens

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…

kunitoki/sonic-skills · 108 tokens

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…

prtamil/AsciiCreativeCoding · 218 tokens

cpp-lectures-dev

Самостоятельно реализуй проект «поиск по лекциям Константина Владимирова по C++ через MCP-сервер» по утверждённому плану, выступая исполнителем, а не навигатором. Используй этот скилл всякий раз, когда нужно писать или менять код этого проекта — конвейер подготовки (yt-dlp, Deepgram, Jina, Postgres плюс pgvector)…

Alexvozhak/cpp-lectures-mcp · 238 tokens