agent-o-rama
Layer 4 Learning and Pattern Extraction for Cognitive Surrogate Systems
npx skills add majiayu000/claude-skill-registry --skill agent-o-rama-plurigrid-asi --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# agent-o-rama > Layer 4: Learning and Pattern Extraction for Cognitive Surrogate Systems **Version**: 1.1.0 (music-topos enhanced) **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. ## Enhanced Integration: Multi-Interpreter ### DuckDB Pattern Storage ```sql CREATE TABLE learned_patterns ( pattern_id VARCHAR PRIMARY KEY, pattern_type VARCHAR, -- 'temporal', 'topic', 'network', 'skill' pattern_data JSON, confidence FLOAT, learned_at TIMESTAMP, seed BIGINT -- SPI seed for reproducibility ); -- Temporal pattern query SELECT EXTRACT(HOUR FROM created_at) as hour, EXTRACT(DOW FROM created_at) as day_of_week, COUNT(*) as post_count, AVG(response_time_minutes) as avg_response_time FROM interactions GROUP BY hour, day_of_week ORDER BY post_count DESC; ``` ### Python Predictor ```python # agent_o_rama.py import jax import jax.numpy as jnp from dataclasses import dataclass @dataclass class InteractionPredictor: learning_rate:
- Overview
- Enhanced Integration: Multi-Interpreter
- DuckDB Pattern Storage
- Python Predictor
- Ruby Skill Discovery
- Hy Bidirectional Learning
- GF(3) Triad Integration
- Justfile Recipes
- Related Skills
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-plurigrid-asi --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.
