← all publishers

TheOnlyFusionCube

@theonlyfusioncube source repo

49 published skills

  1. Maintain Verification Skill · theonlyfusioncube
    Repair a project verification skill whose feature map or commands drifted. Use when app behavior and verification docs no longer agree.
    0
    installs
  2. Principle Laziness Protocol · theonlyfusioncube
    Bias toward deletion and the smallest change that fully solves the problem. Use when considering adding code, abstractions, dependencies, or speculative features.
    0
    installs
  3. Principle Attack The Premise · theonlyfusioncube
    Inventory who actually owns or exhibits the imbalance, then challenge the shared premise before writing another patch. Use when two or more fixes that share one premise have failed the same gate.
    0
    installs
  4. Principle Boundary Discipline · theonlyfusioncube
    Validate and normalize at boundaries, trust internal invariants, and keep business logic free of adapter noise. Use when at parsing, framework, process, network, storage, or user-input boundaries.
    0
    installs
  5. Principle Minimize Reader Load · theonlyfusioncube
    Reduce indirection, mutable scope, and one-caller abstractions until the causal path is easy to hold in one mind. Use when when code requires too many hops, wrappers, hidden states, or mental joins.
    0
    installs
  6. Principle Foundational Thinking · theonlyfusioncube
    Choose the core data structures, ownership, and sequencing first so downstream logic becomes simpler. Use when before writing logic, especially when state or concurrency is involved.
    0
    installs
  7. Principle Type System Discipline · theonlyfusioncube
    Make invalid states hard or impossible to represent and parse external primitives into meaningful internal types at the edge. Use at data modeling, API design, or external data ingestion points.
    0
    installs
  8. Principle Subtract Before You Add · theonlyfusioncube
    Remove dead weight and obsolete paths first; build on the simpler remaining system. Use when before an addition, rewrite, or structural refactor.
    0
    installs
  9. Principle Exhaust The Design Space · theonlyfusioncube
    Build a few materially different cheap prototypes and compare evidence before committing to one design. Use when for novel interactions or architecture with no strong precedent.
    0
    installs
  10. Principle Guard The Context Window · theonlyfusioncube
    Route bulk exploration to isolated workers or files and bring back compact evidence summaries, not raw floods. Use when when reads, logs, fan-out, or generated output threatens to dominate context.
    0
    installs
  11. Principle Never Block On The Human · theonlyfusioncube
    Run the experiment or make the reversible best-effort change, then show the result. Ask only for genuine preference, authority, or irreversible decisions. Use when when a reversible empirical or implementation choice can be resolved with available tools.
    0
    installs
  12. Principle Sequence Verifiable Units · theonlyfusioncube
    Break work into small units that each end with a proof and order delivery so every next unit builds on verified state. Use when for migrations, sweeps, repeated edits, and stacks.
    0
    installs
  13. Principle Make Operations Idempotent · theonlyfusioncube
    Design repeated execution to converge on the same correct end state rather than multiplying side effects. Use when for commands, lifecycle steps, retries, loops, or crash recovery.
    0
    installs
  14. Principle Outcome Oriented Execution · theonlyfusioncube
    Converge on the target architecture rather than preserving temporary compatibility states as permanent complexity. Use when during planned migrations or rewrites with explicit phases.
    0
    installs
  15. Principle Encode Lessons In Structure · theonlyfusioncube
    Turn recurring guidance into a type, lint, test, metadata flag, generator, runtime check, or skill so the system carries the lesson. Use when when the same corrective instruction appears more than once.
    0
    installs
  16. Triage Issue Reports · theonlyfusioncube
    Triage incoming software issue reports using available repository and runtime evidence, without editing code. Use for automated or manual first-pass issue validation and routing.
    0
    installs
  17. Principle Redesign From First Principles · theonlyfusioncube
    Design the shape you would choose if the requirement had existed from day one, then migrate toward that shape. Use when when integrating a new requirement into a design that keeps fighting it.
    0
    installs
  18. Reproduce And Fix Issues · theonlyfusioncube
    Reproduce a confirmed issue on the closest real surface, find root cause, and optionally prepare a minimal draft fix with evidence. Use after issue triage has enough information to attempt reproduction.
    0
    installs
  19. Principle Test Behavior Not Implementation · theonlyfusioncube
    Call the system the way its consumer does and assert meaningful observable output; avoid mocks or assertions that only mirror internal calls. Use when when writing or evaluating tests.
    0
    installs
  20. Principle Migrate Callers Then Delete Legacy Apis · theonlyfusioncube
    Move callers to the new shape and delete the old path in the same migration wave instead of carrying a compatibility layer. Use when when replacing an internal api.
    0
    installs
  21. Principle Separate Before Serializing Shared State · theonlyfusioncube
    Eliminate unnecessary sharing or partition ownership before adding locks, queues, or coordination. Use when concurrency, locks, queues, shared state, or complex coordination are being considered.
    0
    installs
  22. Bro · theonlyfusioncube
    Restate the last technical explanation in plain human language with minimal jargon. Use when the user asks for a simpler version.
    0
    installs
  23. How · theonlyfusioncube
    Trace how a subsystem works using code and runtime evidence. Use for architecture walkthroughs, data flow, call paths, and are-we-sure investigations.
    0
    installs
  24. Tdd · theonlyfusioncube
    Write a minimal failing test before implementation, make it pass with the simplest code, and refactor cleanly. Use when implementing bug fixes or features with clear verification targets.
    0
    installs
  25. Why · theonlyfusioncube
    Recover why a system or decision exists by triangulating source history and connected evidence. Use for rationale archaeology and historical questions.
    0
    installs
  26. Arena · theonlyfusioncube
    Spawn parallel candidate implementations for the same task, cross-judge, and graft the best parts into the winning base. Use when exploring competing designs or critical artifacts.
    0
    installs
  27. Swarm · theonlyfusioncube
    Fan out independent slices or coverage partitions and aggregate them with owner verification. Use for large audits, races, and parallel work.
    0
    installs
  28. Teach · theonlyfusioncube
    Teach a subsystem or change so the reader can reason about it, combining how and why evidence. Use for real understanding rather than summary.
    0
    installs
  29. Recall · theonlyfusioncube
    Reconstruct current task context from available durable history and records. Use when resuming work or rebuilding context on a topic.
    0
    installs
  30. Unslop · theonlyfusioncube
    Cut AI tells, filler prose, superficial -ing phrases, and bloated commentary from writing and code. Use for all written deliverables and code cleanup.
    0
    installs
  31. Reflect · theonlyfusioncube
    Convert lessons from a completed difficult task into structural improvements. Use after a long or unexpectedly painful workflow.
    0
    installs
  32. Architect · theonlyfusioncube
    Settle data shapes, ownership, boundaries, and interfaces before code crosses a function/module boundary. Use for non-trivial design work.
    0
    installs
  33. Automate Me · theonlyfusioncube
    Create a personal mode skill from recurring workflow patterns in available history. Use when the user wants their own agent style encoded.
    0
    installs
  34. Interrogate · theonlyfusioncube
    Adversarially review a diff or design with independent lenses and evidence. Use before shipping contested or high-impact changes.
    0
    installs
  35. Make Bot UI · theonlyfusioncube
    Build a small operator UI over an agent/webhook backend. Use when buttons or controls should trigger an agent workflow.
    0
    installs
  36. No Comments · theonlyfusioncube
    Remove redundant comments, dead workaround explanations, and AI tells from code while preserving necessary constraints. Use when cleaning up code or diffs.
    0
    installs
  37. Poteto Mode · theonlyfusioncube bundle
    Lauren Tan-inspired rigorous engineering mode for concise communication, deliberate decomposition, simple code, independent review when available, and runtime verification. Use for non-trivial engineering tasks or when the user asks for Poteto Mode/pstack-style rigor.
    0
    installs
  38. Blast Radius · theonlyfusioncube
    Prove what a small-looking change can affect before or after editing. Use for compatibility, caller, state, schema, or behavior impact analysis.
    0
    installs
  39. Setup Pstack · theonlyfusioncube
    Configure potetos-for-everyone model roles and capability preferences for the current agent/runtime. Use during initial setup or routing changes.
    0
    installs
  40. Figure It Out · theonlyfusioncube
    Design a rigorous custom playbook when no bundled playbook safely fits a large or unusual task. Use for cross-cutting ambiguous execution.
    0
    installs
  41. Show Me Your Work · theonlyfusioncube
    Maintain a compact auditable decision trail during autonomous or high-stakes work. Use when the user will review decisions later.
    0
    installs
  42. Technical Writing · theonlyfusioncube
    Write maintainable technical docs, RFCs, READMEs, PR descriptions, and commit messages. Use for durable engineering prose.
    0
    installs
  43. Principle Prove It Works · theonlyfusioncube
    Verify the requested behavior against the real artifact or surface whenever possible; a proxy check only proves the proxy. Use when verifying changes, completing tasks, or claiming something is fixed.
    0
    installs
  44. Create Verification Skill · theonlyfusioncube
    Generate a project-local verification skill that drives the real app and captures evidence. Use when setting up automated verification for a repo.
    0
    installs
  45. Principle Build The Lever · theonlyfusioncube
    Prefer a script, codemod, generator, benchmark, or verifier that performs or proves the work repeatably over hand edits. Use when for repetitive, large, or verification-heavy work.
    0
    installs
  46. Principle Fix Root Causes · theonlyfusioncube
    Reproduce the symptom, trace causality until one mechanism explains it, and fix that mechanism rather than compensating for downstream effects. Use when during debugging and incident repair.
    0
    installs
  47. Typescript Best Practices · theonlyfusioncube
    Apply disciplined TypeScript modeling and boundary parsing. Use when reading or editing TypeScript.
    0
    installs
  48. Principle Experience First · theonlyfusioncube
    Optimize for the end-user experience unless the cost violates an explicit constraint. Use when product, UX, API design, or feature-scope tradeoffs arise.
    0
    installs
  49. Principle Model The Domain · theonlyfusioncube
    Model the Domain
    0
    installs