agentsclimarketplace

Executing

Skill quanpersie2001/pulse/skills/executing

A documentation-first skill plugin for Claude Code and Codex, built to take work from vague intent to validated, reviewed, and reusable delivery.

Install
npx -y skills add quanpersie2001/pulse --skill executing

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when implementing approved Pulse beads, either as a swarm worker or as a single worker when swarming is unavailable.

SKILL.md

20.8 KB, ~4.5k tokens by cl100k_base, as published. Nobody here has run it

Executing

If preflight readiness is missing, stale, or blocked (check .pulse/tooling-status.json), stop and invoke pulse:using-pulse before continuing.

pulse:executing supports two modes:

  • worker mode under pulse:swarming
  • standalone single-worker mode when preflight recommends degraded execution

In both modes, the live bead graph is the source of truth for what to do next.

Loop Overview

Initialize → Get Bead → Reserve Files → Implement → Verify → Close & Report
     ↑                                                               |
     └─────────────── Context OK? Loop ─────────────────────────────┘
                       Context >65%? → Handoff → Stop

Step 1: Initialize

Determine mode from invocation plus .pulse/tooling-status.json:

  • if invoked by pulse:swarming, run in worker mode
  • if recommended_mode=single-worker, run in standalone mode

1a. Restore Worker Bootstrap Context (worker mode only)

Swarming gives you runtime-native startup context. Capture and keep these fields together for the rest of the run:

  • runtime_identity
  • coordinator_identity
  • adapter_name
  • epic_id
  • feature_name
  • optional startup_hint

Treat startup_hint as a hint, not a silent permanent assignment. Re-check the live graph before you claim work.

Do not invent extra registration, inbox, or topic mechanics if the active runtime does not use them.

1b. Read Project Context (in this order)

  1. AGENTS.md — project operating manual (mandatory; skip nothing)
  2. If present, run node .pulse/scripts/pulse_status.mjs --json — quick onboarding/state/handoff/reservation scout
  3. .pulse/state.json — machine-readable routing snapshot
  4. .pulse/STATE.md — current project focus, decisions, active blockers
  5. history/<feature>/CONTEXT.md — locked decisions that MUST be honored

If any of these files does not exist, note the absence and proceed — do not fabricate content.

If the bead references learning_refs, read those specific learning files. Do not load all learnings by default.

1c. Report [ONLINE] Before Claiming Work (worker mode only)

Before you select a bead, you must report in on the active coordination surface. Startup is not complete until you:

  1. read AGENTS.md
  2. load pulse:executing
  3. post [ONLINE] including:
    • runtime_identity
    • AGENTS.md: read
    • pulse:executing: loading
    • Next step: bv --robot-priority

Do not call bv --robot-priority before this sequence is complete.

Runtime mapping:

  • Claude Code -> send the startup acknowledgment to the coordinator with SendMessage
  • Codex -> reply on the parent coordination thread
  • otherwise -> use the active coordination surface defined by the runtime adapter

1d. Check for Handoff

Use owner-scoped handoffs:

  • worker mode -> .pulse/handoffs/worker-<runtime_identity>.json
  • standalone mode -> .pulse/handoffs/single-worker.json

If a handoff exists and was written by a prior instance of you (same worker identity):

  1. Read it — restore active bead, progress markers, open questions
  2. Resume from where it stopped; skip re-reading already-read files
  3. Archive or mark the handoff consumed and update the manifest

A worker must not consume another worker's handoff directly.

1e. Exceptional path: coordinator-reassigned orphaned worker handoff

Normal path stays same-runtime-identity resume.

Only the coordinator may reassign an orphaned worker handoff when the original runtime identity is unavailable.

Before you resume from a reassigned handoff, require coordinator confirmation that all are true:

  • prior worker inactivity was confirmed
  • file reservations for the prior owner were checked and are safe for transfer
  • same-branch commit queue state was checked and is safe for transfer

For reassignment, the coordinator must update .pulse/handoffs/manifest.json and the owner handoff file before any worker resumes, recording:

  • previous owner
  • new owner
  • reason
  • coordinator approval

If those updates are missing, do not resume from the handoff.


Step 2: Get the Next Bead

In worker mode, every loop starts with coordination visibility, not blind bead selection.

Check the active coordination surface for:

  • new coordinator instructions
  • unresolved blocker replies
  • conflict decisions
  • handoff or recovery instructions that affect your next move

Then follow the normal path from the live graph:

bv --robot-priority

Select the top-ranked bead that:

  • has no open dependencies
  • is not reserved by another worker
  • is compatible with the current mode

Exceptional path: direct orchestrator hint

If swarming suggests a bead via the active coordination surface, treat it as a startup hint or rescue instruction, not as a permanent assignment. Re-check the live graph before claiming the work.

Read the bead fully

br show <bead-id>

Minimum fields to confirm:

FieldPurpose
dependenciesUpstream bead IDs that must close first
filesFiles/modules in scope for this bead
verifyConcrete verification commands to run
verification_evidencePath to the canonical evidence artifact (typically history/<feature>/verification/<bead-id>.md)
testing_modestandard / tdd-required
decision_refsLocked decisions from CONTEXT.md relevant to this bead
learning_refsLearning file paths to read before implementing

If any required field is missing, stop and bounce the bead back to validating or planning. Do not guess from free-form prose.

If testing_mode is tdd-required, confirm tdd_steps is present before implementation starts.

Current-work artifact read rule for non-trivial beads

Do not rely on the bead alone when the work is architecturally or operationally sensitive.

Before reserving files or writing code, read the active-shape current-work artifacts whenever any condition below is true.

Shape artifact requirements:

  • work-shape path: read history/<feature>/work-shape.md (current work is defined directly there)
  • epic-map path: read history/<feature>/epic-map.md and history/<feature>/current-story-pack.md
  • phase-plan path: read history/<feature>/phase-plan.md, history/<feature>/phase-<n>-contract.md, and history/<feature>/phase-<n>-story-map.md

Trigger conditions:

  • testing_mode is tdd-required
  • the bead touches multiple files across different modules or ownership boundaries
  • the bead has multiple upstream dependencies or explicitly references story coordination, parallelism, shared file/context risk, or boundary preservation
  • the verify path is multi-step, integration-heavy, or hard to explain in one line from the bead alone
  • after reading the bead, more than one plausible implementation path still seems possible

Use the active-shape artifact set as the canonical current-work contract for this bead.

For beads that touch module interfaces, ownership boundaries, or HIGH-risk constraints, also read the relevant parts of history/<feature>/approach.md.

If the bead is a small single-path change with tight file scope, unambiguous verification, and no boundary sensitivity, the bead plus CONTEXT.md is usually sufficient.


Step 3: Reserve Files

In worker mode, reserve all listed files before editing with the shared repo-local helper.

Repeat --path for every declared file or glob you need to claim:

node .pulse/scripts/pulse_reservations.mjs reserve --agent <runtime_identity> --bead <bead-id> --path "src/foo.ts" --path "src/bar.ts" --json

In standalone mode, there is no cross-worker race, but still treat the bead's files list as a hard scope boundary. Do not blend multiple beads into one ad hoc change, and do not sneak in temporary cross-module structure that was not planned.

If reservation fails in worker mode

  1. Post [FILE CONFLICT] immediately on the active coordination surface
  2. Include:
    • bead ID
    • requested paths
    • current holder when visible
    • why you need the scope
  3. Wait for coordinator resolution
  4. Keep watching the active coordination surface while blocked

Do not proceed without your reservations. Do not edit around the conflict.

If reservation succeeds

Proceed to implementation immediately.


Step 4: Implement

Read before writing

Read every source file you will modify. Do not write from memory or assumptions about file contents.

Honor CONTEXT.md locked decisions

Before writing any code, scan your bead's description for decision IDs (D1, D2, ...). For each referenced ID:

  1. Read the corresponding entry in history/<feature>/CONTEXT.md
  2. Implement exactly as locked — do not reinterpret, do not "improve" a locked decision

State assumptions before coding

Before you change a file, say what you believe is true:

  • which existing path or component you are extending
  • what the bead is explicitly asking you to preserve or change
  • which phase exit-state or story done condition this bead advances when current-work artifacts were required
  • what will prove success once verification runs

If two plausible interpretations remain, stop. Surface the ambiguity explicitly and get the bead repaired or clarified instead of guessing in code.

Follow existing patterns

Match naming conventions, error handling patterns, import styles, and test structures found in the codebase.

For new feature beads, do not invent temporary architecture just to get a first work slice over the line. Preserve the planned module ownership, interfaces, and cross-module contracts from CONTEXT.md, approach.md, and the current-work artifacts.

Keep the change surgical

Prefer the smallest change that satisfies the bead.

Do not:

  • introduce abstractions that only help hypothetical future work
  • broaden scope into adjacent cleanup or refactors just because you noticed them
  • add handling for scenarios the current system boundary cannot actually produce

If the bead genuinely requires multiple implementation steps, write a short step plan tied to the declared verification path before you start editing. If it is a one-step change, keep the plan in your head and the code lean.

No pseudo-implementations

Every artifact you create must be:

  • Substantive: real logic, not stubs or TODOs
  • Wired: imported, exported, and integrated — not floating code

Selective TDD

Respect the bead's testing_mode:

  • standard -> implement normally, then verify with fresh evidence
  • tdd-required -> run a real red-green loop before production code closes

For tdd-required beads:

  1. write or update the smallest failing test that proves the intended behavior
  2. run tdd_steps.red and confirm it fails for the expected reason
  3. only then write the minimal production change
  4. rerun tdd_steps.green and confirm it passes

If production code was written before the red check, discard or rewrite that portion within the bead scope and restart the loop. Do not claim TDD from memory or intent alone.


Step 5: Verify

Run the bead's verify steps exactly as written. Do not substitute easier checks.

Before you run them, be able to say what success looks like in one or two lines. If you cannot, the bead is still under-specified and should be clarified instead of hand-waved through execution.

Verification is not complete until you have fresh evidence from this execution pass.

Read the bead's verification_evidence field and update every declared artifact or explicit record there.

The standard artifact path is:

history/<feature>/verification/<bead-id>.md

The evidence record must include:

  • bead ID and feature name
  • testing_mode
  • verification timestamp
  • every verify command actually run
  • exit code for each command
  • concise observed result for each command
  • paths to any generated proof artifacts, screenshots, logs, or findings files

If testing_mode=tdd-required, also record:

  • the tdd_steps.red command
  • the expected failure signal that was observed
  • the tdd_steps.green command
  • the passing result that was observed

If verification fails:

  1. debug the root cause
  2. compare the failure against the success criteria you named before verification
  3. retry up to 2 times
  4. if still blocked:
    • worker mode -> notify the coordinator on the active coordination surface and stay blocked until the situation is resolved
    • standalone mode -> invoke pulse:systematic-debug-fix or surface the blocker to the user

Do not quietly redefine success after a failing verify run. Either make the bead pass as written or escalate that the bead itself needs repair.

Do not close the bead without a passing verification result and a fresh evidence record.


Step 6: Close and Report

All actions must complete. Do not skip any, and do not start another bead until the completion report is sent (worker mode) or recorded (standalone mode).

6a. Close-Readiness Check

Before br close, confirm all are true:

  • file edits stayed within the bead's files scope, or any expansion was surfaced and approved
  • locked decisions in decision_refs were re-checked against the final implementation
  • all verify steps passed in a fresh run
  • every declared verification_evidence entry is present and substantive
  • any tdd-required red-green evidence is recorded
  • no unresolved blocker, review finding, or failed follow-up is being silently deferred

6b. Close the bead

br close <bead-id> --reason "Completed: <one-line summary of what was implemented>"

6c. Atomic git commit via coordinator-owned queue (worker mode)

One commit per bead. Do not batch multiple beads into one commit. Do not commit unrelated changes.

In worker mode, implementation and verification can run in parallel, but git add/git commit are serialized on the same branch under coordinator control.

Protocol:

  1. Send READY_TO_COMMIT on the active coordination surface with bead ID and the exact declared files you will stage.
  2. Wait until the coordinator grants COMMIT_SLOT_GRANTED.
  3. Only after slot grant, run:
git add <files-you-modified>
git commit -m "feat(<bead-id>): <summary matching br close reason>"
  1. Commit only the files you declared in READY_TO_COMMIT.
  2. Report COMMIT_DONE with commit hash, or COMMIT_BLOCKED with the blocking reason.

In standalone mode, run the same one-bead commit format directly only when no active swarm commit queue exists for the current branch/feature; otherwise route the commit through the coordinator-owned queue.

6d. Release file reservations (worker mode)

node .pulse/scripts/pulse_reservations.mjs release --agent <runtime_identity> --json

Release before sending the completion report so other agents can acquire these files immediately.

6e. Report completion

  • worker mode -> post [DONE] on the active coordination surface with: bead ID, runtime identity, commit hash, files changed, verify result, evidence paths, and any follow-up bead needed
  • standalone mode -> record equivalent completion details in .pulse/STATE.md

6f. Check coordination once after reporting (worker mode)

Before you claim the next bead, inspect the active coordination surface once for new instructions, blocker resolutions, or reservation-related follow-ups.


Step 7: Loop or Pause

After each bead:

  • if context is below 65%, loop back to Step 2
  • if context is at or above 65%, write the owner handoff file and stop cleanly

Writing the handoff

Use the handoff contract from pulse:using-pulse (../using-pulse/references/handoff-contract.md) and write owner-scoped files:

  • worker mode -> .pulse/handoffs/worker-<runtime_identity>.json
  • standalone mode -> .pulse/handoffs/single-worker.json

Required handoff content:

  • owner identity and mode (worker or single-worker)
  • paused reason context_critical
  • last closed bead (or null) and verification evidence paths
  • transfer block (completed, in_flight, blockers, resume_notes)
  • next action that explicitly starts with coordination/state check, then bead selection

Register the handoff in .pulse/handoffs/manifest.json with matching summary, next_action, and owner file path.

Worker mode: notify the coordinator after writing the handoff on the active coordination surface.


Step 8: Post-Compact Recovery

If you detect context compaction (your conversation was summarized, or you notice gaps in your context):

STOP immediately. Do not continue implementing.

Re-read in this exact order before any further action:

  1. AGENTS.md
  2. history/<feature>/CONTEXT.md
  3. the current bead you were working on: br show <bead-id>
  4. if the bead qualifies as non-trivial under Step 2, re-read the active-shape current-work artifacts (work-shape.md section, current-story-pack.md, or phase-<n>-contract.md + phase-<n>-story-map.md); also re-read history/<feature>/approach.md when boundary-sensitive or HIGH-risk
  5. your active file reservations: node .pulse/scripts/pulse_reservations.mjs list --active-only --json
  6. the latest relevant coordinator updates on the active coordination surface

Only after re-reading all applicable items may you continue.

Why this is non-negotiable: Compaction erases knowledge of AGENTS.md, active reservations, and locked decisions. Agents that skip this step produce implementations that conflict with other workers and violate CONTEXT.md decisions.


Red Flags

Stop and reassess if you notice any of these:

  • Executing without reading the bead file fully
  • Executing a bead that is missing canonical schema fields
  • Writing files outside your reserved scope — you are creating conflicts for other workers
  • Skipping verificationit looks right is not verification; run the actual criteria
  • Claiming success from stale or partial verification output
  • Closing a bead without a substantive verification_evidence record
  • Claiming tdd-required was satisfied without a real red failure and green pass
  • Continuing after compaction without re-reading — you have amnesia; fix it before proceeding
  • Implementing stubs, TODOs, or empty handlers — these are not implementations; they are deferred failures
  • Ignoring a locked decision from CONTEXT.md
  • Skipping required current-work contract/story-map reads for a non-trivial bead — you are forcing execution to guess work-shape intent and execution boundaries
  • Guessing through ambiguity instead of surfacing it — hidden design choices belong back in planning/validation, not in worker code
  • Bundling multiple beads into one commit — atomic commits per bead are the audit trail; don't corrupt it
  • Committing in worker mode without COMMIT_SLOT_GRANTED — same-branch commit order is coordinator-owned and must stay serialized
  • Claiming a bead without checking reservations — self-routing still depends on file coordination
  • Closing or blocking a bead without reporting on the active coordination surface — invisible progress breaks the swarm
  • Waiting silently for the coordinator — if you are blocked, conflicted, handing off, or done, report it
  • Reading the entire learnings corpus instead of the bead's cited learning refs
  • Writing the retired global handoff file

Quick Reference: Worker Actions

ActionCall
Get priority beadbv --robot-priority
Read beadbr show <id>
Reserve filesnode .pulse/scripts/pulse_reservations.mjs reserve --agent <runtime_identity> --bead <bead-id> --path "..." --json
Release filesnode .pulse/scripts/pulse_reservations.mjs release --agent <runtime_identity> --json
Inspect reservationsnode .pulse/scripts/pulse_reservations.mjs list --active-only --json
Close beadbr close <id> --reason "..."
Send [ONLINE] / [DONE] / [BLOCKED] / [FILE CONFLICT] / [HANDOFF]active coordination surface

Inputs You Receive from Swarming (Worker Mode)

When spawned, swarming provides:

  • runtime_identity — your runtime identity from the parent spawn result
  • coordinator_identity — swarm coordinator identity
  • adapter_nameclaude-code or codex
  • epic_id — the coordination root for this feature
  • feature_name — used to locate history/<feature>/CONTEXT.md
  • startup_hint — optional: a bead or area the orchestrator wants checked first

If any startup inputs are missing, request clarification on the active coordination surface before proceeding.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.