Imported from Mozurok/fhorja.dev (
.claude/skills/capture-observation/SKILL.md). Install upstream withnpx skills add Mozurok/fhorja.dev --skill capture-observation. Copyright stays with the author.
Act as a senior/staff engineering observation capture for the active engineering task.
Goal:
Capture a single observation, question, hypothesis, or concern that surfaced during work into TASK_STATE.md so it is preserved as task memory without breaking flow or requiring a full state sync.
Mandatory context bootstrap (before any output):
- Read these sections in
WORKFLOW_OPERATING_SYSTEM.mdfirst:## LLM execution contract## Editor mode policy(mode definitions only; the tool mapping table is lazy-loaded inwos/editor-mode-mappings.mdand needed only for non-Claude-Code tools)## Global output contract(including Adaptive handoff and Mode selection rule)## Cross-cutting workflow guardrails
- Bootstrap tiers (ADR-0025): the light-weight commands (
branch-commit,what-next,where-we-at,slice-closure,compact-task-memory) may skip## Editor mode policygood-fits lists and## Cross-cutting workflow guardrailssequencing heuristics, reading only the mode definitions and the core guardrail rules (routing memory, command-less input triage, official command names, material change, no-op). The full tier is measured at 10530 tokens: the combined size of the four always-readWORKFLOW_OPERATING_SYSTEM.mdsections listed above. That figure is asserted here in prose and no gate recomputes it, so it drifts every time the spec grows: it was declared at 9610 and measured at 10530 on 2026-08-10, a 9.6 per cent gap, and it will drift again unless re-measured with the same method (sum the four^##sections, chars over 4). The reduced tier is a self-declared estimate of about 3,500 tokens for the trimmed subset above; it has not been independently re-measured by the same method, and should be read as an estimate rather than a fresh figure. The same reduced tier extends to the high-frequency execution commandsimplement-approved-sliceandsync-task-state(v3 wave1 item D: the most-invoked commands pay the bootstrap most often;state-reconciledeliberately stays on the full tier, cross-artifact judgment needs the full guardrail context). - Cache-amortized layer (ADR-0006): this bootstrap floor was DESIGNED as a cache-amortized cost rather than a per-command tax. ADR-0139 measured that the amortization is real but NOT controllable from here: the harness manages caching itself, there is no per-file or per-segment caching, and a command body is injected as a user message after the cached prefix. Whether this floor is cached is a property of the host, not of anything this repository can mark. Treat the figure below as a real per-invocation cost when reasoning about what a command carries. It sits in the prompt cache for the session and is paid at write cost once per cache TTL window, then at roughly 0.1x on cached reads inside that window. Account for it separately from any per-skill Load budget (the generated
.claude/skills/<name>/SKILL.mdbody); the two are different layers and should not be summed into one figure. - Session bootstrap reuse (skip-if-unchanged; v3 wave1 item D): WHEN this same conversation already performed this bootstrap read in an earlier turn that is still VISIBLE in the current context window AND
WORKFLOW_OPERATING_SYSTEM.mdhas not changed since, the command MAY skip the re-read and cite the earlier one instead, emitting one Command transcript line:Bootstrap: reusing turn <N> read, WOS unchanged. This is a scoped exception to the context-budget re-fetch rule (wos/context-budget.md, "The re-fetch rule"), justified because the bootstrap sections are one large, static, byte-identical read repeated every turn rather than a variable tool result; the re-fetch rule still governs every other tool result without exception. VISIBLE means the bootstrap section text itself is still present and quotable in the window right now, not merely that the record of an earlier read exists. On a harness that clears, a tool result can be emptied while the record that the tool ran survives (ADR-0114); a command that finds only that record, without the section text still readable, has not satisfied VISIBLE and must re-read. Self-declared memory after a compaction never qualifies (re-read instead), and a stateless-per-turn harness is excluded. The auditable-skip rule applies: the transcript line is mandatory; a silent skip is invalid output. - Resolving a relative
wos/<topic>.md. Try the canonical workflow repository root FIRST, then the installed docs directory (~/.claude/workflow-docs/wos/or~/.cursor/workflow-docs/wos/). Name the root you resolved against in### Command transcript, and say so explicitly when NEITHER resolved rather than continuing silently: several of these loads are declared MANDATORY, and a lazy load that resolved nowhere is otherwise indistinguishable in the output from one that was never needed. Repository first, because the installed copy is a snapshot that no sync prunes: preferring it would make an edit towos/invisible to every command until someone re-ran the installer. - Read additional sections only when relevant to this command's role.
- Read the
commands/directory command inventory to ensure command names and availability are current. - Align all routing recommendations and next-command suggestions with the current command set.
- Official next-command names only: every recommended next command (including the handoff
Run nowline) MUST be the basename of an existingcommands/<name>.mdfile in this workflow repository. Never invent names. One exception:Run now: nonewithMode: N/Adeclares that the chain has ended and no following command would be honest, defined in## Global output contract(ADR-0126); use it only when nothing honest remains, never to end a chain that has a real next step.
Required inputs:
- active task folder path
- TASK_STATE.md (must already exist)
- the observation itself (one to three lines, free form)
- optional: tag classifying the observation (
question|hypothesis|concern|note)
Task repository files to update:
- TASK_STATE.md (append-only,
## Observationsand no other section)
Operating rules:
-
Do not implement production code.
-
Do not interpret, paraphrase, or expand the observation. Capture verbatim with light formatting.
-
Do not trigger reasoning, analysis, or follow-up questions. The point of this command is fast capture, not exploration.
-
Handoff: end with the adaptive
### Handoffblock perWORKFLOW_OPERATING_SYSTEM.md## Global output contract(Mode A compact or Mode B full). DefaultRun now: read TASK_STATE.mdLast completed stepandRecommended next stepto infer; if unclear, default towhat-next. -
Substrate write protocol (per ADR-0034, K.2 2026-06-04 -- dogfood). MANDATORY for every write to
TASK_STATE.md ## Observations(capture-observation is the OWNER perwos/substrate-peers.md; this is the only true append-only freeform section in the matrix). Percommands/_shared/substrate-write-protocol.md ## Concrete computation:- Compute
sha_beforevia the canonicalsha_of_sectionbash helper (nullONLY on the first observation captured in this task; subsequent appends compute against the existing section bytes). - Insert OR REPLACE the transaction header on its own line IMMEDIATELY above the
## Observationsheading:<!-- wos:write owner=capture-observation section='## Observations' run_id=<ULID-or-uuid> ts=<ISO-8601-ms-with-Z> reason=obs-<short-tag> mode=applied -->. Each capture-observation run replaces the prior header with this run's header (prior gets logged with event=overwrite per the same-owner double-write rule inwos/substrate-peers.md ## Conflict resolution). - Append the new dated bullet to the section content per the canonical format:
- [YYYY-MM-DD] [<tag>] <observation text>. Never edit prior bullets. - Compute
sha_aftervia the same helper against the post-write section bytes. - Append exactly one JSON line to
active/<task>/.wos/VERIFICATION_LOG.jsonlper the 12-field schema inwos/substrate-peers.md ## Audit trail.sha_afterMUST be valid SHA-256 hex (64 lowercase hex chars) -- NEVERnullon applied writes per K.5 validator.sha_beforeisnullONLY on the first observation captured for the task. - capture-observation writes exactly ONE section per invocation (
## Observations). The protocol does not multi-section here.
FORBIDDEN: half-compliant pattern (JSONL emitted but inline header omitted, OR
sha_afternull on applied write). K.4 drift-guard at next sweep Pre-flight will surface this command's writes if it skips the protocol. - Compute
-
The target is always
## Observations, never## Open questions / blockers: that section belongs to other owners inwos/substrate-peers.md, and an observation routed there becomes a blocker nobody raised. WHENTASK_STATE.mdhas no## Observationssection, create it as the LAST section of the file. Two agents placing this section differently is the drift this rule exists to close. -
Use a dated bullet format:
- [YYYY-MM-DD] [<tag>] <observation>. Example:- [2026-05-10] [question] should we cache the verification result client-side or always re-fetch? -
Treat task-memory write policy per
WORKFLOW_OPERATING_SYSTEM.md:PROPOSEDin Ask mode,APPLIEDonly in Agent mode. -
This command must not modify any other section of
TASK_STATE.md(no work complexity changes, no recommended next step changes, no last completed step changes). -
Output is intentionally minimal. Do not produce analysis, framing, or recommendations beyond the capture itself.
-
Durable preference pointer (P2-3, careers-page dogfooding 2026-06-23): the
## Observationssection is task memory that no other command reads back. IF the captured item is a durable cross-command preference (a staging, base-branch, commit, or PR-template convention that a later command should honor), still capture it here verbatim, but add a one-line pointer that it belongs inTASK_PREFERENCES.md(which delivery commands consume). Do not writeTASK_PREFERENCES.mdyourself; this command stays single-section and append-only.
Required output:
- The observation as it will be appended (verbatim with applied dating and tag formatting).
- The exact line(s) being added to
TASK_STATE.md. - The location in
TASK_STATE.mdwhere they will be inserted (existing section vs new section). - Reminder that no other state changed.
- Recommended next command (typically the command the user was running before this capture, or
what-nextif unclear). - Recommended editor mode for that next command.
- Why that is the correct next step (one line; default rationale: "resume the work that was in progress before this observation was captured").
Substrate digest fallback
Digest fallback when the canonical helper is unreachable. sha_of_section extracts a section's body with awk and pipes it to shasum -a 256. A run executing inside a permission boundary that admits shasum but refuses awk and sed cannot invoke that helper, and MUST NOT reimplement it: an awk or sed program operand can call system() and write files, so a boundary that refuses those verbs refuses them for a reason. Assume the helper is unreachable whenever the workflow repository's scripts/ directory is not readable from the working directory.
WHERE the canonical per-section digest helper is unreachable, the write SHALL use a whole-file SHA-256 and SHALL declare the reduced scope:
# One call per file. `shasum -a 256 <file>` needs no extraction step, so no
# refused verb is involved. Read the hash (the first field) out of the output;
# do not pipe it through `cut` or `awk` to trim it.
shasum -a 256 TASK_STATE.md
Then add "sha_scope":"file" to that JSONL line, so a validator distinguishes a file digest from a section digest instead of inferring it. Everything else about the protocol is unchanged: the transaction header still goes above the section heading, and there is still exactly one JSONL line per section write.
Do NOT rebuild the helper by writing each section out as its own file so it can be hashed separately. That workaround is coherent and it is what this rule exists to prevent: a 2026-08-04 run wrote 31 numbered section fragments to compute per-section digests by hand, spent the whole run doing it, and produced no product code.
What the fallback costs, stated so the trade is explicit rather than discovered later: the digest chain exists to detect an unlogged change to a SECTION. At file scope, two sections written in the same run share a digest, so the chain detects tampering with the file without attributing it to a section. That is a declared reduction in resolution, not a silent one, which is why the sha_scope field is mandatory rather than optional.
Claim grounding (active epistemic humility)
Claim grounding (active epistemic humility). This block governs what you may assert and how you record it. It is keyed to the substrate section you are writing, not to which command is running, and it is INERT on any output that writes none of the claim-bearing sections below. Full contract and rationale: wos/active-epistemic-humility.md.
-
When this applies. This block fires ONLY while you are writing a claim-bearing substrate section:
TASK_STATE.md ## Current known facts,## Risks to watch,## Observations,## Active files in scope,## Canonical decisions;DECISIONS.md ## Locked decisions;IMPLEMENTATION_PLAN.md ## Current gaps,## Risks and mitigations;IMPACT_ANALYSIS.md;EXTERNAL_RESEARCH.md;REFERENCES.md; or any section whose content is a statement a later command or a human decision will act on. WHEN your output writes none of these, this block imposes nothing: skip it and proceed. This is the D-13 inert clause; a fully-grounded or claim-free output pays nothing. -
The unit is the load-bearing claim. A load-bearing claim is one a downstream command or a human decision consumes. A passing aside is not load-bearing; a statement someone will act on is. Apply the rest of this block per load-bearing claim, not per sentence.
-
Ground it or abstain. Before you assert a load-bearing claim, trace it to the enumerable grounded set: a captured
REFERENCES.mdentry, a file read in this session, command output actually seen, or a passing deterministic gate. A claim supported only by model memory is OUTSIDE the grounded set, including when you are right, because that support is not observable. WHEN a load-bearing claim falls outside the set, do NOT assert it: either investigate until it is grounded, or abstain per rule 6. -
Status records provenance, never confidence. WHERE you attach an epistemic status to a claim, the status names WHERE THE CLAIM CAME FROM: a
REFERENCES.mdentry title, a file path plus line, or the gate output it came from. It SHALL NOT express a degree of certainty. Do NOT add a confidence field, a numeric threshold, or a self-assessment prompt anywhere; a self-reported confidence signal is not a usable control signal (wos/active-epistemic-humility.mdPart 1.3). A status whose referent slot is empty is read as UNKNOWN, not as a weak yes. -
Persisted claims carry the status; chat-only claims carry it when they route. Every load-bearing claim you write into a task-memory artifact carries its provenance referent, and that referent travels with the claim so a later command reads it too; do not drop it at the write boundary. A load-bearing claim that appears only in a chat-turn output carries a status only when it crosses the grounding boundary and triggers a route (an abstention, an escalation).
-
Abstain as a routed continuation, never a bare refusal. WHEN you abstain, name the specific investigation that would settle the question AND route to the command that runs it (
capture-references,code-locate,incident-triage, or the fitting one). A withholding that stalls the work is invalid output. Abstention is distinct fromNO_OP:NO_OPmeans there is no work to do; abstention means there is work and the grounding to do it is missing. -
An unfired gate is not evidence. The absence of a fired check does not mean grounding existed. Do not read silence here as a pass.
Standard output layout (required)
Produce the command output using this structure (English only):
Artifact changes
- List files in
my_work_tasks/that would change, orNone. - For each file, mark
APPLIED/PROPOSED/SKIPand follow the task-memory write policy inWORKFLOW_OPERATING_SYSTEM.md(default:PROPOSEDin Ask/Plan unless this command explicitly requiresAPPLIED). - Default for this command:
PROPOSEDpatch onTASK_STATE.mdonly.
Command transcript
Brief audit trail (max 3 lines; max 2 in no-op runs with NO_OP_TRACE).
Handoff
Use the adaptive ending format from WORKFLOW_OPERATING_SYSTEM.md ## Global output contract (Mode A compact or Mode B full per session state).
Definition of done (command output)
- Observation appended verbatim with date and optional tag formatting; no paraphrase or expansion.
- Only
TASK_STATE.mdis touched; no changes toLast completed step,Recommended next step,Work complexity, or any other section beyond the observation insertion. Artifact changesmarks the patch asPROPOSEDin Ask/Plan mode orAPPLIEDonly when explicitly in Agent.Handoffblock is complete per the adaptive format inWORKFLOW_OPERATING_SYSTEM.md## Global output contract; ending after the artifact change without a Handoff is invalid output.Run nowdefaults to the work the user was performing before this capture; if unrecoverable, usewhat-next.- Before declaring this output done, confirm it satisfies the shared Definition of done (command outputs) and Gate conditions in WORKFLOW_OPERATING_SYSTEM.md.
Quality bar: Optimize for speed of capture, fidelity to the user's wording, minimal disruption to in-progress work, and resumability of whatever the user was doing before triggering capture.