potetos-for-everyone 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.agents/plugins/marketplace.json +21 -0
- package/.claude-plugin/marketplace.json +32 -0
- package/.claude-plugin/plugin.json +36 -0
- package/.codex-plugin/plugin.json +13 -0
- package/.codex-plugin/prompts/architect.md +6 -0
- package/.codex-plugin/prompts/arena.md +6 -0
- package/.codex-plugin/prompts/automate-me.md +6 -0
- package/.codex-plugin/prompts/blast-radius.md +6 -0
- package/.codex-plugin/prompts/bro.md +6 -0
- package/.codex-plugin/prompts/create-verification-skill.md +6 -0
- package/.codex-plugin/prompts/figure-it-out.md +6 -0
- package/.codex-plugin/prompts/how.md +6 -0
- package/.codex-plugin/prompts/interrogate.md +6 -0
- package/.codex-plugin/prompts/maintain-verification-skill.md +6 -0
- package/.codex-plugin/prompts/make-bot-ui.md +6 -0
- package/.codex-plugin/prompts/no-comments.md +6 -0
- package/.codex-plugin/prompts/poteto-mode.md +6 -0
- package/.codex-plugin/prompts/recall.md +6 -0
- package/.codex-plugin/prompts/reflect.md +6 -0
- package/.codex-plugin/prompts/setup-pstack.md +6 -0
- package/.codex-plugin/prompts/show-me-your-work.md +6 -0
- package/.codex-plugin/prompts/swarm.md +6 -0
- package/.codex-plugin/prompts/tdd.md +6 -0
- package/.codex-plugin/prompts/teach.md +6 -0
- package/.codex-plugin/prompts/technical-writing.md +6 -0
- package/.codex-plugin/prompts/typescript-best-practices.md +6 -0
- package/.codex-plugin/prompts/unslop.md +6 -0
- package/.codex-plugin/prompts/why.md +6 -0
- package/AGENTS.md +11 -0
- package/LICENSE +22 -0
- package/NOTICE.md +17 -0
- package/PORTABILITY.md +29 -0
- package/README.md +483 -0
- package/UPSTREAM.json +9 -0
- package/UPSTREAM_INVENTORY.json +13 -0
- package/VERSION +1 -0
- package/adapters/README.md +9 -0
- package/adapters/registry.json +46 -0
- package/agents/comment-reviewer.md +3 -0
- package/agents/comment-sicko.md +31 -0
- package/agents/poteto-agent.md +14 -0
- package/assets/logo.png +0 -0
- package/automations/benny/FOR_AGENTS.md +5 -0
- package/automations/benny/README.md +10 -0
- package/automations/benny/skills/reproduce-and-fix-issues/SKILL.md +12 -0
- package/automations/benny/skills/triage-issue-reports/SKILL.md +11 -0
- package/automations/benny/templates/configuration.example.yaml +11 -0
- package/automations/benny/templates/reproduce-automation-prompt.md +1 -0
- package/automations/benny/templates/triage-automation-prompt.md +1 -0
- package/bin/potetos +547 -0
- package/docs/.nojekyll +0 -0
- package/docs/guide/01-setup.md +25 -0
- package/docs/guide/02-poteto-mode.md +11 -0
- package/docs/guide/03-understand.md +5 -0
- package/docs/guide/04-design.md +5 -0
- package/docs/guide/05-build-and-clean.md +5 -0
- package/docs/guide/06-verify-and-ship.md +5 -0
- package/docs/guide/07-overnight.md +5 -0
- package/docs/guide/08-principles.md +5 -0
- package/docs/guide/09-make-it-yours.md +5 -0
- package/docs/guide/10-recipes-and-pitfalls.md +8 -0
- package/docs/guide/README.md +16 -0
- package/docs/index.html +422 -0
- package/hooks/hooks.json +17 -0
- package/hooks/session-start-context.md +11 -0
- package/npm/core.mjs +318 -0
- package/npm/postinstall.mjs +22 -0
- package/npm/potetos.mjs +145 -0
- package/package.json +98 -0
- package/runtime/README.md +21 -0
- package/runtime/__init__.py +1 -0
- package/runtime/capabilities.json +36 -0
- package/runtime/config.example.json +17 -0
- package/runtime/runner.py +240 -0
- package/skills/architect/SKILL.md +14 -0
- package/skills/arena/SKILL.md +14 -0
- package/skills/automate-me/SKILL.md +11 -0
- package/skills/blast-radius/SKILL.md +11 -0
- package/skills/bro/SKILL.md +7 -0
- package/skills/create-verification-skill/SKILL.md +11 -0
- package/skills/figure-it-out/SKILL.md +13 -0
- package/skills/how/SKILL.md +14 -0
- package/skills/interrogate/SKILL.md +14 -0
- package/skills/maintain-verification-skill/SKILL.md +11 -0
- package/skills/make-bot-ui/SKILL.md +11 -0
- package/skills/no-comments/SKILL.md +11 -0
- package/skills/poteto-mode/SKILL.md +93 -0
- package/skills/poteto-mode/playbooks/authoring-a-skill.md +7 -0
- package/skills/poteto-mode/playbooks/autonomous-run.md +7 -0
- package/skills/poteto-mode/playbooks/autopilot-full.md +7 -0
- package/skills/poteto-mode/playbooks/autopilot-stack.md +7 -0
- package/skills/poteto-mode/playbooks/babysit.md +7 -0
- package/skills/poteto-mode/playbooks/bug-fix.md +8 -0
- package/skills/poteto-mode/playbooks/eval.md +7 -0
- package/skills/poteto-mode/playbooks/feature.md +8 -0
- package/skills/poteto-mode/playbooks/hillclimb.md +8 -0
- package/skills/poteto-mode/playbooks/investigation.md +7 -0
- package/skills/poteto-mode/playbooks/multi-phase-plan.md +7 -0
- package/skills/poteto-mode/playbooks/opening-a-pr.md +7 -0
- package/skills/poteto-mode/playbooks/orchestrate.md +8 -0
- package/skills/poteto-mode/playbooks/pause-safely.md +7 -0
- package/skills/poteto-mode/playbooks/perf-issue.md +8 -0
- package/skills/poteto-mode/playbooks/prototype.md +7 -0
- package/skills/poteto-mode/playbooks/refactoring.md +7 -0
- package/skills/poteto-mode/playbooks/runtime-forensics.md +7 -0
- package/skills/poteto-mode/playbooks/session-pickup.md +7 -0
- package/skills/poteto-mode/playbooks/shipping.md +7 -0
- package/skills/poteto-mode/playbooks/trace-forensics.md +7 -0
- package/skills/poteto-mode/playbooks/visual-parity.md +7 -0
- package/skills/poteto-mode/playbooks/worktree-cleanup.md +7 -0
- package/skills/principle-attack-the-premise/SKILL.md +20 -0
- package/skills/principle-boundary-discipline/SKILL.md +20 -0
- package/skills/principle-build-the-lever/SKILL.md +20 -0
- package/skills/principle-encode-lessons-in-structure/SKILL.md +20 -0
- package/skills/principle-exhaust-the-design-space/SKILL.md +20 -0
- package/skills/principle-experience-first/SKILL.md +20 -0
- package/skills/principle-fix-root-causes/SKILL.md +20 -0
- package/skills/principle-foundational-thinking/SKILL.md +20 -0
- package/skills/principle-guard-the-context-window/SKILL.md +20 -0
- package/skills/principle-laziness-protocol/SKILL.md +20 -0
- package/skills/principle-make-operations-idempotent/SKILL.md +20 -0
- package/skills/principle-migrate-callers-then-delete-legacy-apis/SKILL.md +20 -0
- package/skills/principle-minimize-reader-load/SKILL.md +20 -0
- package/skills/principle-model-the-domain/SKILL.md +20 -0
- package/skills/principle-never-block-on-the-human/SKILL.md +20 -0
- package/skills/principle-outcome-oriented-execution/SKILL.md +20 -0
- package/skills/principle-prove-it-works/SKILL.md +20 -0
- package/skills/principle-redesign-from-first-principles/SKILL.md +20 -0
- package/skills/principle-separate-before-serializing-shared-state/SKILL.md +20 -0
- package/skills/principle-sequence-verifiable-units/SKILL.md +20 -0
- package/skills/principle-subtract-before-you-add/SKILL.md +20 -0
- package/skills/principle-test-behavior-not-implementation/SKILL.md +20 -0
- package/skills/principle-type-system-discipline/SKILL.md +20 -0
- package/skills/recall/SKILL.md +13 -0
- package/skills/reflect/SKILL.md +11 -0
- package/skills/setup-pstack/SKILL.md +12 -0
- package/skills/show-me-your-work/SKILL.md +17 -0
- package/skills/swarm/SKILL.md +12 -0
- package/skills/tdd/SKILL.md +12 -0
- package/skills/teach/SKILL.md +11 -0
- package/skills/technical-writing/SKILL.md +12 -0
- package/skills/typescript-best-practices/SKILL.md +14 -0
- package/skills/unslop/SKILL.md +11 -0
- package/skills/why/SKILL.md +14 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "potetos-for-everyone",
|
|
3
|
+
"interface": {
|
|
4
|
+
"displayName": "potetos-for-everyone (pstack universal)"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "pstack",
|
|
9
|
+
"source": {
|
|
10
|
+
"source": "local",
|
|
11
|
+
"path": "./"
|
|
12
|
+
},
|
|
13
|
+
"policy": {
|
|
14
|
+
"installation": "AVAILABLE",
|
|
15
|
+
"authentication": "ON_INSTALL",
|
|
16
|
+
"products": ["CODEX"]
|
|
17
|
+
},
|
|
18
|
+
"category": "Developer Tools"
|
|
19
|
+
}
|
|
20
|
+
]
|
|
21
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/claude-code-marketplace.json",
|
|
3
|
+
"name": "potetos-for-everyone",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "TheOnlyFusionCube",
|
|
6
|
+
"url": "https://github.com/TheOnlyFusionCube"
|
|
7
|
+
},
|
|
8
|
+
"description": "Universal distribution of Lauren Tan's pstack & Poteto Mode for Claude Code, Cursor, Codex, Gemini CLI, Prime Agent, and all AI agents. (pstack-claude alternative & superset).",
|
|
9
|
+
"plugins": [
|
|
10
|
+
{
|
|
11
|
+
"name": "pstack",
|
|
12
|
+
"description": "Lauren Tan's pstack & Poteto Mode engineering workflow for Claude Code: evidence-first, minimal blast radius, TDD, and rigorous verification. Full v0.15.0+ upstream sync.",
|
|
13
|
+
"source": "./",
|
|
14
|
+
"category": "developer-tools",
|
|
15
|
+
"version": "0.15.0"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "poteto-mode",
|
|
19
|
+
"description": "Poteto Mode workflow for Claude Code: disciplined engineering, systematic decomposition, and rigorous verification.",
|
|
20
|
+
"source": "./",
|
|
21
|
+
"category": "developer-tools",
|
|
22
|
+
"version": "0.15.0"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "pstack-claude",
|
|
26
|
+
"description": "Drop-in replacement and superset for pstack-claude with complete upstream v0.15.0+ parity, SessionStart hooks, and multi-agent support.",
|
|
27
|
+
"source": "./",
|
|
28
|
+
"category": "developer-tools",
|
|
29
|
+
"version": "0.15.0"
|
|
30
|
+
}
|
|
31
|
+
]
|
|
32
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pstack",
|
|
3
|
+
"displayName": "pstack / poteto-mode (Universal Claude Code & Multi-Agent Edition)",
|
|
4
|
+
"version": "0.15.0",
|
|
5
|
+
"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+.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "TheOnlyFusionCube",
|
|
8
|
+
"url": "https://github.com/TheOnlyFusionCube"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
|
|
11
|
+
"repository": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"pstack",
|
|
15
|
+
"pstack-claude",
|
|
16
|
+
"poteto-mode",
|
|
17
|
+
"claude-code",
|
|
18
|
+
"claude-code-plugin",
|
|
19
|
+
"claude-plugin",
|
|
20
|
+
"claude-skills",
|
|
21
|
+
"codex",
|
|
22
|
+
"codex-plugin",
|
|
23
|
+
"cursor",
|
|
24
|
+
"agent-skills",
|
|
25
|
+
"coding-agents",
|
|
26
|
+
"subagents",
|
|
27
|
+
"tdd",
|
|
28
|
+
"unslop",
|
|
29
|
+
"code-review",
|
|
30
|
+
"gemini-cli",
|
|
31
|
+
"prime-agent",
|
|
32
|
+
"opencode",
|
|
33
|
+
"windsurf",
|
|
34
|
+
"copilot"
|
|
35
|
+
]
|
|
36
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pstack",
|
|
3
|
+
"displayName": "pstack / poteto-mode (Universal Multi-Agent Edition)",
|
|
4
|
+
"version": "0.15.0",
|
|
5
|
+
"description": "Lauren Tan's pstack and Poteto Mode engineering workflow for Codex, Claude Code, and any AI coding agent.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "TheOnlyFusionCube",
|
|
8
|
+
"url": "https://github.com/TheOnlyFusionCube"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
|
|
11
|
+
"repository": "https://github.com/TheOnlyFusionCube/potetos-for-everyone",
|
|
12
|
+
"license": "MIT"
|
|
13
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: poteto-mode
|
|
3
|
+
description: 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.
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Invoke the `poteto-mode` skill and follow it.
|
package/AGENTS.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# potetos-for-everyone agent bootstrap
|
|
2
|
+
|
|
3
|
+
This repository contains a portable engineering skill stack adapted from Lauren Tan's pstack.
|
|
4
|
+
|
|
5
|
+
When working in this repository:
|
|
6
|
+
|
|
7
|
+
1. Treat `skills/` as canonical. Never fork behavioral instructions into an adapter.
|
|
8
|
+
2. For non-trivial work, read `skills/poteto-mode/SKILL.md`, select its matching playbook, and follow the referenced leaf skills only as needed.
|
|
9
|
+
3. Interpret capability names via `PORTABILITY.md`. Feature-detect host tools instead of assuming a vendor API.
|
|
10
|
+
4. Preserve the Lauren Tan attribution in `NOTICE.md` and `LICENSE`.
|
|
11
|
+
5. Run `./scripts/verify` before declaring repository changes complete.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Lauren Tan (portions derived from pstack)
|
|
4
|
+
Copyright (c) 2026 potetos-for-everyone contributors
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in all
|
|
14
|
+
copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
22
|
+
SOFTWARE.
|
package/NOTICE.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Attribution and provenance
|
|
2
|
+
|
|
3
|
+
`potetos-for-everyone` is an independent, portability-focused adaptation of **pstack**.
|
|
4
|
+
|
|
5
|
+
## Original work
|
|
6
|
+
|
|
7
|
+
- **pstack / Poteto Mode:** Lauren Tan (GitHub: `@poteto`)
|
|
8
|
+
- Upstream: https://github.com/cursor/plugins/tree/main/pstack
|
|
9
|
+
- Upstream license: MIT
|
|
10
|
+
- Upstream copyright: **Copyright (c) 2026 Lauren Tan**
|
|
11
|
+
- Initial adaptation baseline: `d7cde2b84eadbcd6fd890302c876f4436ccb6d82`
|
|
12
|
+
|
|
13
|
+
Lauren Tan's original pstack introduced the core architecture this project adapts: Poteto Mode as a routing skill, task-specific engineering playbooks, small principle skills, deliberate multi-agent review/fan-out, and verification as a completion condition.
|
|
14
|
+
|
|
15
|
+
This repository rewrites those ideas around a vendor-neutral capability contract and the open Agent Skills format. It is not affiliated with or endorsed by Lauren Tan or Cursor unless they explicitly say otherwise.
|
|
16
|
+
|
|
17
|
+
The original MIT copyright and permission notice are preserved in `LICENSE` as required for copied or substantially adapted portions.
|
package/PORTABILITY.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Portability contract
|
|
2
|
+
|
|
3
|
+
The canonical `skills/` tree is runtime-neutral. A skill asks for a capability, not a product API.
|
|
4
|
+
|
|
5
|
+
## Capabilities
|
|
6
|
+
|
|
7
|
+
| Capability | Meaning | Required fallback |
|
|
8
|
+
|---|---|---|
|
|
9
|
+
| `files.read` | Read repository/workspace content | Ask for supplied context only when nothing readable exists |
|
|
10
|
+
| `files.write` | Make workspace edits | Return an exact patch/draft when writes are unavailable |
|
|
11
|
+
| `run` | Execute commands, tests, profilers, or scripts | State that runtime proof is unavailable; do not claim success |
|
|
12
|
+
| `vcs` | Inspect diff/history/branches/PR state | Use available repository files; label missing history explicitly |
|
|
13
|
+
| `delegate` | Spawn isolated workers/subagents | Run sequential passes; label them non-independent |
|
|
14
|
+
| `search` | Query web, docs, issues, chat, observability, analytics | Use only available evidence and report the gap |
|
|
15
|
+
| `observe` | Drive/inspect the real UI, service, device, CLI, or artifact | Use the closest artifact only as a proxy and label it |
|
|
16
|
+
| `track` | Maintain todos/decision logs/checkpoints | Write a small repo-local Markdown/TSV log when writes exist |
|
|
17
|
+
|
|
18
|
+
## Rules
|
|
19
|
+
|
|
20
|
+
1. Do not name a vendor-specific tool in canonical workflow instructions unless the vendor itself is the subject of the task.
|
|
21
|
+
2. Feature-detect. Never assume subagents, a browser, a PR API, MCP, memory, or a particular model exists.
|
|
22
|
+
3. A fallback must preserve epistemic honesty. Sequential role-play is not independent review. A compile is not runtime proof. A screenshot description is not pixel comparison.
|
|
23
|
+
4. Prefer the open Agent Skills package shape: `SKILL.md` plus optional `scripts/`, `references/`, and `assets/`.
|
|
24
|
+
5. Keep model routing in `.potetos/config.json`, outside canonical skill logic.
|
|
25
|
+
6. Irreversible or externally consequential actions remain safety-gated by the host agent's own policy and permissions.
|
|
26
|
+
|
|
27
|
+
## Host adapters
|
|
28
|
+
|
|
29
|
+
Adapters do only two things: expose skill discovery and tell a host how to invoke the canonical files. They must not fork skill behavior. If an adapter needs different behavior, change the capability contract or the canonical skill instead.
|