Help us improve
Share bugs, ideas, or general feedback.
Development marketplace for Pulse validate-first skills ecosystem
npx claudepluginhub quanpersie2001/pulsePulse: validate-first agentic development ecosystem for planning, validation, swarming, and execution
Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Share bugs, ideas, or general feedback.
A validate-first agentic delivery system for Claude Code and Codex
Stop agents from hallucinating requirements, skipping verification, and producing unauditable work.
Pulse wraps AI agents in a gated delivery chain. Every decision is locked before planning starts. Every plan is approved before code is written. Every bead of work is verified before it's closed. Every feature is reviewed before it merges.
Without this structure, agents skip steps. With it, they can't.
Pulse ships as 20 skills — each a SKILL.md file loaded into context at invocation. No compiled code. No runtime to install beyond the tools you already use.
Ask for a feature like:
"Add inbound email support for the agent inbox."
Pulse moves that request through a repeatable chain:
pulse:exploring locks the missing decisions into CONTEXT.md.pulse:planning turns those decisions into a phase plan, a current-phase contract, a story map, and beads.pulse:validating checks that the current phase is sound before any implementation starts.pulse:swarming and pulse:executing implement the current phase with reservations and live graph coordination.pulse:reviewing verifies the work and records P1/P2/P3 findings.pulse:compounding captures durable learnings for future work.The point is not ceremony for its own sake. The point is to make expensive misunderstandings and avoidable rework much less likely.
Use Pulse when:
Do not reach for the full chain when:
Pulse keeps one core workflow but presents it in three user-facing modes:
small_change — lightweight planning and validating for bounded low-risk workstandard_feature — the default full Pulse workflowhigh_risk_feature — the full workflow plus deeper planning scrutiny and stronger spike disciplineThe core contract does not change across modes:
CONTEXT.md is still the source of truthvalidating still gates executionbv + Agent Mail still drive coordinationPulse is downstream of everal strong agentic-development systems and distills the parts that fit this repo owner's actual workflow:
bv, Agent Mail, swarm execution, and the habit of turning plans into live work graphs instead of loose TODO lists.flowchart TD
PF["`**pulse:preflight**
validate tooling`"]
UP["`**pulse:using-pulse**
route the session`"]
BR["`**pulse:brainstorming**
design spec *(optional)*`"]
EX["`**pulse:exploring**
lock decisions → CONTEXT.md`"]
PL["`**pulse:planning**
research + phase plan + beads`"]
VA["`**pulse:validating**
8-dim check + spikes`"]
SW["`**pulse:swarming**
launch N workers`"]
WK["`**pulse:executing**
implement bead-by-bead`"]
RV["`**pulse:reviewing**
4 specialists + UAT`"]
CP["`**pulse:compounding**
capture learnings`"]
PF --> UP
UP -->|idea unclear| BR
UP -->|intent clear| EX
BR --> EX
EX -->|"🔒 GATE 1 — approve CONTEXT.md"| PL
PL -->|"🔒 GATE 2 — approve phase plan"| VA
VA -->|"🔒 GATE 3 — approve execution (swarm)"| SW
VA -->|"🔒 GATE 3 — approve execution (single)"| WK
SW -->|spawns| WK
WK -->|more phases| PL
WK -->|final phase| RV
SW -->|final phase| RV
RV -->|"🔒 GATE 4 — approve merge"| CP