Agent skill · AI & Agents

agent-o-rama

Layer 4: Learning and Pattern Extraction for Cognitive Surrogate Systems

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill agent-o-rama --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Version: 1.0.0
Path: skills/ai-llm/agent-o-rama/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# agent-o-rama > Layer 4: Learning and Pattern Extraction for Cognitive Surrogate Systems **Version**: 1.0.0 **Trit**: +1 (Generator - produces learned patterns) **Bundle**: learning ## Overview Agent-o-rama trains learning agents on interaction sequences to discover behavioral patterns. It extracts temporal, topic, and network patterns from raw interaction data, producing models compatible with the cognitive-surrogate skill. **NEW (Langevin/Unworld Integration)**: Agent-o-rama now supports both: 1. **Temporal Learning** (traditional): Train interaction predictor via epochs 2. **Derivational Generation** (unworld): Generate equivalent patterns via seed chaining (100x faster, deterministic) ## Capabilities ### 1. train-interaction-predictor Train a model to predict next interactions given history. ```python from agent_o_rama import InteractionPredictor predictor = InteractionPredictor( learning_rate=0.01, epochs=100, batch_size=32, seed=0xf061ebbc2ca74d78 # SPI seed for reproducibility ) # Train on DuckDB interaction sequences predictor.fit( db_path="interactions.duckdb", table="interaction_sequences", validation_split=0.2 ) # Predict next interaction next_pred = predictor.predict(r

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. 1. train-interaction-predictor
  4. 2. extract-temporal-patterns
  5. 3. extract-topic-patterns
  6. 4. skill-discovery
  7. 5. derive-patterns-via-unworld
  8. 6. verify-equivalence-via-bisimulation
  9. 7. validate-held-out
  10. DuckDB Integration
  11. Training Data Schema
  12. GF(3) Triad Integration
  13. Configuration
  14. Example Workflow
Ships with 1 file
  • metadata.json
Commands it runs
just agent-train interactions.duckdb --epochs 100
just agent-discover-skills --min-freq 5
just agent-validate --test-split 0.2
just agent-export patterns.json
More from claude-skill-registry
All skills →
About this skill
What does the agent-o-rama skill do?

Layer 4: Learning and Pattern Extraction for Cognitive Surrogate Systems

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill agent-o-rama --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going