From hypersaint
Enforces hypermodular, maximally strict repository architecture for codebases primarily or fully created and maintained by LLM agents. Use this skill whenever creating a new project, repository, or codebase from scratch, or when restructuring an existing one for LLM maintainability. Also trigger when the user mentions "hypersaint", "hypermodular", "hyperstrict", "LLM-native repo", "LLM-optimized codebase", "agent-maintained code", or asks for maximum strictness, maximum correctness, or aggressive modularity. Use this skill even when the user asks for project setup, scaffolding, or boilerplate — if the context suggests the project will be maintained by LLM agents, Hypersaint is the correct architecture. This skill governs both the structural organization of code (hypermodularity) and the quality/tooling standards (hyperstrictness). Always use this skill in conjunction with language-specific best practices — Hypersaint is language-agnostic and the agent must extrapolate its principles to whatever stack is in use.
How this skill is triggered — by the user, by Claude, or both
Slash command
/hypersaint:hypersaintThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
An architecture and ruleset for repositories that are primarily or fully created and maintained by
An architecture and ruleset for repositories that are primarily or fully created and maintained by LLM agents. Every decision optimizes for an agent that reads only what it needs, when it needs it, and never the whole codebase at once.
Two pillars:
| Situation | Action |
|---|---|
| Starting a new project | Read Philosophy, then Modularity |
| Setting up tooling/linting | Read Philosophy → Tool Selection Doctrine |
| Creating directory structure | Read Modularity |
| Writing a README.md | Read README Format Spec |
| Creating/updating index.toml | Read index.toml Spec, use scripts/index_toml_generator.py |
| Adding CI pipeline | Use assets/ci.yml as template, read CI Integrity |
| Updating READMEs after changes | Use scripts/readme_hooks.py |
| Building the MCP navigation server | Read MCP Server Spec |
These rules are non-negotiable. Every Hypersaint repository must satisfy all of them.
strict: true
plus all pedantic flags, Clippy with all lints in Rust.)__all__
in Python, explicit export in TypeScript, pub visibility in Rust.)The modularity rules below are the structural strictness dimension applied to code organization. The reason every directory has manifests, the reason boundaries are enforced by the integrity system, the reason DRY is supreme — is because these rules make incorrect organizational states structurally inexpressible.
Load these as needed — do not read all of them upfront.
| Document | When to Load | Content |
|---|---|---|
| Philosophy | Project setup, tool selection, dependency decisions | Full Hypersaint philosophy: axioms, tool doctrine, code strictness, security, IaC, feedback loops |
| Modularity | Creating directory structure, organizing code | Atom structure, nesting rules, shared utilities, naming, progressive disclosure architecture |
| README Format | Writing or updating any README.md | Progressive disclosure marker syntax, section types, FAQ format, integrity blocks |
| index.toml Spec | Creating or updating any index.toml | Full TOML schema, field definitions, hash format, dependency declarations |
| CI Integrity | Setting up or modifying CI pipeline | Hash verification workflow, failure modes, integration with GitHub Actions |
| MCP Server Spec | Building the Hypersaint navigation MCP server | Complete specification for the progressive disclosure MCP server |
| Script | Purpose | Usage |
|---|---|---|
scripts/index_toml_generator.py | Generate/update index.toml for a directory | python scripts/index_toml_generator.py <target_dir> |
scripts/readme_hooks.py | Top-down README update after changes | python scripts/readme_hooks.py <root_dir> --changed <file1> <file2> ... |
| Asset | Purpose |
|---|---|
assets/ci.yml | GitHub Actions workflow template for integrity verification |
npx claudepluginhub achxy/dotclaude --plugin hypersaintBootstraps repositories with harness engineering scaffolding: AGENTS.md orientation map, docs/ system of record, boundary tests, linter rules, CI pipeline, GC scripts. Use for new projects, agent-readiness, or architecture boundaries.
Guides monorepo design including structure patterns, package organization, polyrepo tradeoffs, dependency management, and scalable workspace configs.
Universal project workflow guide that reads the existing codebase, keeps changes small, and explains technical decisions in plain language. Use when starting, modifying, debugging, or deploying software projects.