Agent Plugins Marketplace
All plugins

pstack

v0.15.0

Lauren Tan's pstack and Poteto Mode engineering workflow for Codex, Claude Code, and any AI coding agent.

CodexClaude Code46 Skills

By TheOnlyFusionCubeLicense: MIT0 GitHub starsUpdated 2 weeks ago

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
46 skill or MCP entries
Source updated
Sep 10, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install pstack for Codex and Claude Code

Installs for the current user
codex plugin marketplace add TheOnlyFusionCube/potetos-for-everyone
codex plugin marketplace upgrade potetos-for-everyone
codex plugin add pstack@potetos-for-everyone

Paste and run these commands in a terminal with Codex. They add and refresh the potetos-for-everyone catalog, then install this plugin.

Compatibility: the page URL and API slug “pstack-2” remain stable.

  • Codex: pstack-2@agent-plugin-marketplacepstack@potetos-for-everyone

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/TheOnlyFusionCube/potetos-for-everyone

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

pstack/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/architect/SKILL.md
├── skills/arena/SKILL.md
├── skills/automate-me/SKILL.md
├── skills/blast-radius/SKILL.md
├── skills/bro/SKILL.md
├── skills/create-verification-skill/SKILL.md
├── skills/figure-it-out/SKILL.md
├── skills/how/SKILL.md
├── skills/interrogate/SKILL.md
├── skills/maintain-verification-skill/SKILL.md
├── skills/make-bot-ui/SKILL.md
├── skills/no-comments/SKILL.md
├── skills/poteto-mode/SKILL.md
├── skills/principle-attack-the-premise/SKILL.md
├── skills/principle-boundary-discipline/SKILL.md
├── skills/principle-build-the-lever/SKILL.md
├── skills/principle-encode-lessons-in-structure/SKILL.md
├── skills/principle-exhaust-the-design-space/SKILL.md
├── skills/principle-experience-first/SKILL.md
├── skills/principle-fix-root-causes/SKILL.md
├── skills/principle-foundational-thinking/SKILL.md
├── skills/principle-guard-the-context-window/SKILL.md
├── skills/principle-laziness-protocol/SKILL.md
├── skills/principle-make-operations-idempotent/SKILL.md
├── skills/principle-migrate-callers-then-delete-legacy-apis/SKILL.md
├── skills/principle-minimize-reader-load/SKILL.md
├── skills/principle-never-block-on-the-human/SKILL.md
├── skills/principle-outcome-oriented-execution/SKILL.md
├── skills/principle-prove-it-works/SKILL.md
├── skills/principle-redesign-from-first-principles/SKILL.md
├── skills/principle-separate-before-serializing-shared-state/SKILL.md
├── skills/principle-sequence-verifiable-units/SKILL.md
├── skills/principle-subtract-before-you-add/SKILL.md
├── skills/principle-test-behavior-not-implementation/SKILL.md
├── skills/principle-type-system-discipline/SKILL.md
├── skills/recall/SKILL.md
├── skills/reflect/SKILL.md
├── skills/setup-pstack/SKILL.md
├── skills/show-me-your-work/SKILL.md
├── skills/swarm/SKILL.md
├── skills/tdd/SKILL.md
├── skills/teach/SKILL.md
├── skills/technical-writing/SKILL.md
├── skills/typescript-best-practices/SKILL.md
├── skills/unslop/SKILL.md
└── skills/why/SKILL.md

Included Skills46

architectskills/architect/SKILL.md

Settle data shapes, ownership, boundaries, and interfaces before code crosses a function/module boundary. Use for non-trivial design work.

arenaskills/arena/SKILL.md

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.

automate-meskills/automate-me/SKILL.md

Create a personal mode skill from recurring workflow patterns in available history. Use when the user wants their own agent style encoded.

blast-radiusskills/blast-radius/SKILL.md

Prove what a small-looking change can affect before or after editing. Use for compatibility, caller, state, schema, or behavior impact analysis.

broskills/bro/SKILL.md

Restate the last technical explanation in plain human language with minimal jargon. Use when the user asks for a simpler version.

create-verification-skillskills/create-verification-skill/SKILL.md

Generate a project-local verification skill that drives the real app and captures evidence. Use when setting up automated verification for a repo.

figure-it-outskills/figure-it-out/SKILL.md

Design a rigorous custom playbook when no bundled playbook safely fits a large or unusual task. Use for cross-cutting ambiguous execution.

howskills/how/SKILL.md

Trace how a subsystem works using code and runtime evidence. Use for architecture walkthroughs, data flow, call paths, and are-we-sure investigations.

interrogateskills/interrogate/SKILL.md

Adversarially review a diff or design with independent lenses and evidence. Use before shipping contested or high-impact changes.

maintain-verification-skillskills/maintain-verification-skill/SKILL.md

Repair a project verification skill whose feature map or commands drifted. Use when app behavior and verification docs no longer agree.

make-bot-uiskills/make-bot-ui/SKILL.md

Build a small operator UI over an agent/webhook backend. Use when buttons or controls should trigger an agent workflow.

no-commentsskills/no-comments/SKILL.md

Remove redundant comments, dead workaround explanations, and AI tells from code while preserving necessary constraints. Use when cleaning up code or diffs.

poteto-modeskills/poteto-mode/SKILL.md

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.

principle-attack-the-premiseskills/principle-attack-the-premise/SKILL.md

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.

principle-boundary-disciplineskills/principle-boundary-discipline/SKILL.md

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.

principle-build-the-leverskills/principle-build-the-lever/SKILL.md

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.

principle-encode-lessons-in-structureskills/principle-encode-lessons-in-structure/SKILL.md

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.

principle-exhaust-the-design-spaceskills/principle-exhaust-the-design-space/SKILL.md

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.

principle-experience-firstskills/principle-experience-first/SKILL.md

Optimize for the end-user experience unless the cost violates an explicit constraint. Use when product, UX, API design, or feature-scope tradeoffs arise.

principle-fix-root-causesskills/principle-fix-root-causes/SKILL.md

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.

principle-foundational-thinkingskills/principle-foundational-thinking/SKILL.md

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.

principle-guard-the-context-windowskills/principle-guard-the-context-window/SKILL.md

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.

principle-laziness-protocolskills/principle-laziness-protocol/SKILL.md

Bias toward deletion and the smallest change that fully solves the problem. Use when considering adding code, abstractions, dependencies, or speculative features.

principle-make-operations-idempotentskills/principle-make-operations-idempotent/SKILL.md

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.

principle-migrate-callers-then-delete-legacy-apisskills/principle-migrate-callers-then-delete-legacy-apis/SKILL.md

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.

principle-minimize-reader-loadskills/principle-minimize-reader-load/SKILL.md

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.

principle-never-block-on-the-humanskills/principle-never-block-on-the-human/SKILL.md

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.

principle-outcome-oriented-executionskills/principle-outcome-oriented-execution/SKILL.md

Converge on the target architecture rather than preserving temporary compatibility states as permanent complexity. Use when during planned migrations or rewrites with explicit phases.

principle-prove-it-worksskills/principle-prove-it-works/SKILL.md

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.

principle-redesign-from-first-principlesskills/principle-redesign-from-first-principles/SKILL.md

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.

principle-separate-before-serializing-shared-stateskills/principle-separate-before-serializing-shared-state/SKILL.md

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.

principle-sequence-verifiable-unitsskills/principle-sequence-verifiable-units/SKILL.md

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.

principle-subtract-before-you-addskills/principle-subtract-before-you-add/SKILL.md

Remove dead weight and obsolete paths first; build on the simpler remaining system. Use when before an addition, rewrite, or structural refactor.

principle-test-behavior-not-implementationskills/principle-test-behavior-not-implementation/SKILL.md

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.

principle-type-system-disciplineskills/principle-type-system-discipline/SKILL.md

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.

recallskills/recall/SKILL.md

Reconstruct current task context from available durable history and records. Use when resuming work or rebuilding context on a topic.

reflectskills/reflect/SKILL.md

Convert lessons from a completed difficult task into structural improvements. Use after a long or unexpectedly painful workflow.

setup-pstackskills/setup-pstack/SKILL.md

Configure potetos-for-everyone model roles and capability preferences for the current agent/runtime. Use during initial setup or routing changes.

show-me-your-workskills/show-me-your-work/SKILL.md

Maintain a compact auditable decision trail during autonomous or high-stakes work. Use when the user will review decisions later.

swarmskills/swarm/SKILL.md

Fan out independent slices or coverage partitions and aggregate them with owner verification. Use for large audits, races, and parallel work.

tddskills/tdd/SKILL.md

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.

teachskills/teach/SKILL.md

Teach a subsystem or change so the reader can reason about it, combining how and why evidence. Use for real understanding rather than summary.

technical-writingskills/technical-writing/SKILL.md

Write maintainable technical docs, RFCs, READMEs, PR descriptions, and commit messages. Use for durable engineering prose.

typescript-best-practicesskills/typescript-best-practices/SKILL.md

Apply disciplined TypeScript modeling and boundary parsing. Use when reading or editing TypeScript.

unslopskills/unslop/SKILL.md

Cut AI tells, filler prose, superficial -ing phrases, and bloated commentary from writing and code. Use for all written deliverables and code cleanup.

whyskills/why/SKILL.md

Recover why a system or decision exists by triangulating source history and connected evidence. Use for rationale archaeology and historical questions.

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "pstack",
  "displayName": "pstack / poteto-mode (Universal Multi-Agent Edition)",
  "version": "0.15.0",
  "description": "Lauren Tan's pstack and Poteto Mode engineering workflow for Codex, Claude Code, and any AI coding agent.",
  "author": {
    "name": "TheOnlyFusionCube",
    "url": "https://github.com/TheOnlyFusionCube"
  },
  "homepage": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
  "repository": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
  "license": "MIT"
}
.claude-plugin/plugin.json
{
  "name": "pstack",
  "displayName": "pstack / poteto-mode (Universal Claude Code & Multi-Agent Edition)",
  "version": "0.15.0",
  "description": "If you want to go fast, go deep first. Lauren Tan's pstack and Poteto Mode engineering workflow: evidence-first, minimal blast radius, TDD, behavioral verification, and parallel execution. Upstream v0.15.0+.",
  "author": {
    "name": "TheOnlyFusionCube",
    "url": "https://github.com/TheOnlyFusionCube"
  },
  "homepage": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
  "repository": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
  "license": "MIT",
  "keywords": [
    "pstack",
    "pstack-claude",
    "poteto-mode",
    "claude-code",
    "claude-code-plugin",
    "claude-plugin",
    "claude-skills",
    "codex",
    "codex-plugin",
    "cursor",
    "agent-skills",
    "coding-agents",
    "subagents",
    "tdd",
    "unslop",
    "code-review",
    "gemini-cli",
    "prime-agent",
    "opencode",
    "windsurf",
    "copilot"
  ]
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[pstack on Agent Plugins Marketplace](https://pluginsmp.com/plugins/pstack-2)