Skip to content

hyperb1iss/hyperskills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

45 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

โšก hyperskills

Focused AI agent skills for things models don't already know

Knowledge, guidance, wisdom, SOTA. Reach for what fits.

16 Skills skills.sh

License Release


๐Ÿ’Ž What This Is

Models already know how to write React components, Kubernetes manifests, and PyTorch code. They don't need 300 lines of examples for that.

hyperskills is built around an agent workflow. Brainstorming structured by the Double Diamond. Wave-based research with deferred synthesis. Verification-driven planning and implementation. Cross-model peer review that catches what self-review misses. Six orchestration strategies for multi-agent work. Conversation consolidation that pulls signal out of past sessions into persistent memory. The process skills are the heart of it, mined from thousands of real dispatches and tens of thousands of tracked operations.

Domain skills round out the toolbox where models have stale or missing knowledge: the agent-sandbox Kubernetes operator (too new for training data), current Astral Python tooling, Tilt operational decision trees, and terminal UI design that survives across emulators.

Each skill encodes procedural knowledge, decision trees, anti-patterns, and current SOTA. None prescribes a strict workflow. They give you knowledge and framing; you decide when to reach for them. Skills carry procedural knowledge in-context; Sibyl carries decisions, patterns, and learnings across sessions. 16 skills, all installable independently.

โšก Installation

Claude Code

# Register the marketplace, then install
/plugin marketplace add hyperb1iss/hyperskills
/plugin install hyperskills@hyperb1iss

Vercel Skills (skills.sh)

# All skills
npx skills add hyperbliss/hyperskills --all

# Pick what you need
npx skills add hyperbliss/hyperskills --skill implement
npx skills add hyperbliss/hyperskills --skill orchestrate

Manual

git clone https://github.com/hyperb1iss/hyperskills.git
ln -s $(pwd)/hyperskills/skills ~/.claude/skills/hyperskills

๐Ÿช„ Composing Skills

Skills are independent. None of them require the others. A typo fix doesn't need brainstorming, a clear bug doesn't need research, and the Python tooling skills compose freely.

A few combinations come up often, more as observation than prescription:

Situation Skills that pair well
New feature brainstorm, plan, implement, cross-model-review
Greenfield project brainstorm, research, plan, orchestrate, implement
Architecture decision brainstorm, research
Large refactor plan, orchestrate, implement, cross-model-review
Bug fix implement (the skill scales itself for trivial fixes)
Python project work uv, ruff, ty, uv-build
Knowledge consolidation dream pulls insights from past sessions into Sibyl

Domain skills (git, tilt, agent-sandbox, tui-design, uv, ruff, ty, uv-build) plug in wherever the work touches their territory. Any skill can loop back when new questions emerge.

๐Ÿ”ฎ Skills

Process Skills

How to approach a class of work: workflows, phases, decision gates. The interesting part of hyperskills lives here.

brainstorm: Structured Ideation

Double Diamond model for creative work. Diverge on the problem, converge on a definition, diverge on solutions, converge on a decision. Grounded in Sibyl so you don't re-explore solved problems. Includes a Council pattern (advocate / critic agents) for complex architectural decisions.

/hyperskills:brainstorm

research: Multi-Agent Knowledge Gathering

Wave-based research with deferred synthesis. Deploy agents in waves across a research surface, run gap analysis between waves, then synthesize with the full picture. Covers technology evaluation, codebase archaeology, SOTA analysis, and competitive landscape patterns. Caps at 3 waves for most research; if that isn't enough, the question itself needs reframing.

/hyperskills:research

plan: Task Decomposition

Verification-driven planning. Decomposes work into small tasks ordered by dependency, marks parallelizable waves for orchestration, and tracks in Sibyl when the work spans more than a session. Includes a trust gradient for review overhead: full ceremony early, lighter as patterns stabilize.

/hyperskills:plan

implement: Verification-Driven Coding

Distilled from 21,321 tracked operations across 64+ projects. Patterns that consistently ship working code:

  • 2-3 edits then verify, the cadence that prevents debugging spirals
  • Scale selection from trivial (1-5 edits) to epic (1000+ edits), with the right strategy for each
  • Dependency chains for fullstack and Rust projects
  • Error recovery: spiral prevention, the two-correction rule, when to /clear and restart
  • Decision trees: read vs edit, subagents vs direct, bug fix vs feature vs refactor
/hyperskills:implement

orchestrate: Multi-Agent Coordination

Six orchestration strategies mined from 597+ real agent dispatches: Research Swarm, Epic Parallel Build, Sequential Pipeline, Parallel Sweep, Multi-Dimensional Audit, and Full Lifecycle. Helps you choose which strategy fits the work, how to structure prompts for parallel agents, and when to use background vs foreground.

/hyperskills:orchestrate

cross-model-review: Bidirectional Cross-Model Code Review

The author model writes code, a different model reviews it. Different architecture, different training distribution, no self-approval bias. Works in either direction: Claude Code calls Codex via codex review, and Codex calls Claude via claude -p. The latter has gnarly gotchas (the yield_time_ms: 300000 rule, the -- separator for variadic flags, output capture to a file rather than tail) that bite without warning. All documented. Includes multi-pass strategy, piped-diff vs tool-access modes, and ready-to-use review prompts for security, architecture, performance, error handling, and concurrency.

/hyperskills:cross-model-review

codex-review: Codex-Specific Code Review

The Claude โ†’ Codex direction in depth. codex review (structured diff) and codex exec (freeform deep-dive), multi-pass strategy (correctness, security, architecture, performance), and integration with the Ralph Loop for iterative quality enforcement. Reach for cross-model-review when you want bidirectional coverage; reach for this one when you specifically want Codex reviewing from a Claude session.

/hyperskills:codex-review

dream: Conversation Memory Consolidation

Two-phase conversation review. Harvests Claude Code and Codex sessions, extracts decisions, patterns, corrections, and unresolved questions, then writes durable knowledge into Sibyl. Use it for end-of-day memory maintenance or deep cross-project synthesis.

/hyperskills:dream

Domain Skills

Specialized knowledge for specific technologies where models have stale or missing training data. Reference material, decision trees, field-tested patterns.

git: Advanced Git Operations

Decision trees for the operations that actually cause problems. Rebase vs merge, lock file conflicts, SOPS encrypted file resolution, undo operations by scenario, cherry-pick workflows, and repository archaeology commands.

/hyperskills:git

tilt: Kubernetes Development

Tilt operational guide. CLI commands for log viewing, resource management, and debugging. Tiltfile authoring with build strategy selectors, live update decision trees, and resource configuration. Full API catalog and power patterns live in progressive disclosure references.

/hyperskills:tilt

agent-sandbox: Kubernetes Operator for AI Agent Runtimes

Operational guide for the kubernetes-sigs/agent-sandbox operator. SIG Apps subproject, launched at KubeCon Atlanta in November 2025, so most training data predates it. Covers the four CRDs (Sandbox, SandboxTemplate, SandboxClaim, SandboxWarmPool), install and upgrade hazards, warm pool HPA tuning, PDB scoping gotchas, isolation runtime selection (gVisor, Kata), network policy patterns, Karpenter integration, and the Python and Go SDK surface.

/hyperskills:agent-sandbox

tui-design: Terminal UI Design System

Framework-agnostic TUI design patterns. Layout paradigm selector, interaction model decision trees, terminal color theory, visual hierarchy techniques, data visualization, and animation patterns. Works with Ratatui, Ink, Textual, Bubbletea, or any TUI toolkit. Includes a Unicode visual catalog and a gallery of real TUI app design patterns.

/hyperskills:tui-design

uv: Python Package & Project Management

Astral uv workflows for projects, scripts, tools, Python versions, workspaces, locking, publishing, and Docker / CI patterns. Encodes when to use project commands instead of the pip interface.

/hyperskills:uv

ruff: Python Linting & Formatting

Current Ruff guidance for lint rule selection, formatter compatibility, suppression, preview mode, dependency graph analysis, and debugging resolved configuration.

/hyperskills:ruff

ty: Python Type Checking

Astral ty guidance for beta adoption, CLI usage, configuration, suppression comments, editor and LSP setup, current limitations, and migration from mypy or Pyright.

/hyperskills:ty

uv-build: Python Build Backend

uv_build backend guidance for pure Python packages, module discovery, namespace and stub packages, file inclusion, publishing workflows, migration from setuptools / hatchling / flit, and reproducible build checks.

/hyperskills:uv-build

๐Ÿงช Architecture

Skills use progressive disclosure. Light when you don't need depth, deep when you do.

Level 1: Metadata (name + description)     โ† Always in context, ~100 words
Level 2: SKILL.md body                     โ† Loaded when the skill triggers, 1,500-3,000 words
Level 3: references/                       โ† Loaded on demand, no length cap

Skills with reference files for the deep-dive material:

Skill Reference Files
implement benchmarks.md: quantitative data from 21k operations and implementation archetype templates
codex-review prompts.md: ready-to-use review prompt templates
cross-model-review prompts.md: ready-to-use review prompt templates
dream conversation-formats.md, extraction-guide.md: session schemas and memory extraction rules
tilt api-reference.md, patterns.md: full Tiltfile API and power patterns
agent-sandbox crds.md, patterns.md, clients.md: CRD fields, production patterns, SDK deep-dive
tui-design visual-catalog.md, app-patterns.md: Unicode catalog and app gallery
uv configuration.md, docker-ci.md, resolution.md: uv config, CI patterns, resolver details
ruff configuration.md, rules.md: Ruff config and rule catalog snapshot
ty migration.md, type-system.md: migration from mypy or Pyright and beta type-system support

Compatibility

Platform Installation
Claude Code /plugin marketplace add hyperb1iss/hyperskills
/plugin install hyperskills@hyperb1iss
Codex CLI npx skills add hyperbliss/hyperskills -a codex
Cursor npx skills add hyperbliss/hyperskills -a cursor
GitHub Copilot npx skills add hyperbliss/hyperskills -a copilot
Gemini CLI npx skills add hyperbliss/hyperskills -a gemini

๐Ÿ› ๏ธ Development

git clone https://github.com/hyperb1iss/hyperskills.git
cd hyperskills

make lint       # Run linters
make format     # Format files
make check      # Validate plugin structure
make stats      # Show plugin statistics

See AGENTS.md for the contributor guide on adding new skills.

License

Licensed under the MIT License. See LICENSE for details.


๐Ÿ’œ

GitHub Bluesky

Built by Hyperbliss Technologies

Releases

No releases published

Packages

 
 
 

Contributors