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-plurigrid-asi --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/ai-llm/agent-o-rama-plurigrid-asi/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.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:

What's inside
Steps it walks through
  1. Overview
  2. Enhanced Integration: Multi-Interpreter
  3. DuckDB Pattern Storage
  4. Python Predictor
  5. Ruby Skill Discovery
  6. Hy Bidirectional Learning
  7. GF(3) Triad Integration
  8. Justfile Recipes
  9. Related Skills
Ships with 1 file
  • metadata.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-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.

Keep going