stage-signal
A tiny, harness-agnostic stage lifecycle CLI for agent orchestrators.
Coding agents run for a long time. Something else usually has to notice when a stage of work finished, failed, or got stuck waiting on the outside world — then start the next stage, pause, or alert a human.
stage-signal is that boring contract: a small CLI + on-disk status file that the agent writes and an orchestrator reads. No TUI scraping. No “it said done in the chat.” Just files, exit codes, and a few commands.
The job
Typical loop:
- An orchestrator (cron job, bot, CI step, shell watchdog) starts a coding agent on one milestone.
- The agent calls
stage-signal startwhen it begins that milestone. - While working, it may
heartbeat. - When finished it calls
stage-signal done(orblocked/failif it cannot finish cleanly). - The orchestrator polls
stage-signal statusorwaiton a timer — then enqueues the next milestone or stops.
So: agents produce machine-readable stage signals; orchestrators consume them.
This is intentionally not a full multi-agent cockpit, not a test proof system, and not tied to one coding product. It is a filesystem API with a thin CLI.
States
| State | Meaning |
|---|---|
queued |
Stage reserved, process not started |
running |
Agent claimed the stage |
done |
Stage completed successfully |
blocked |
Cannot proceed without an external fix (auth, quota, human decision, missing secret, …) |
failed |
Hard failure (crash, red tests, broken invariant) |
Terminal states for a given attempt: done, blocked, failed.
Install
From PyPI:
python3 -m venv .venv
source .venv/bin/activate
pip install stage-signal
stage-signal --help
On Windows Command Prompt, activate the virtual environment with
.venv\Scripts\activate instead of the source command above.
System Python on macOS refuses bare pip install (PEP 668, "externally
managed") — always use a venv as above.
From source (contributors):
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]" # installs the `stage-signal` entry point + tests
stage-signal --help
.venv/bin/pytest # all green (use .venv with .[dev]; not bare system pytest)
python3.11+ with stdlib only — no third-party runtime dependencies.
python -m stage_signal … works as an alias for the stage-signal command.
Quick start
# in your project
stage-signal init
# .stage-signal/ is *live local state* (PIDs, heartbeats, an append-only log),
# not source. Add it to .gitignore before your first commit — committing it
# means merge conflicts on every stage and PIDs in git history:
echo '.stage-signal/' >> .gitignore
# agent side
stage-signal start --stage impact-clarity --session "$SESSION_ID" --pid $$
stage-signal heartbeat
stage-signal done --summary "merged abc123" --git-head abc123
# or: stage-signal blocked --reason "..." / stage-signal fail --reason "..."
# or if accepting a known failure: stage-signal done --accept-failure --summary "accepted: ..."
# orchestrator side
stage-signal status --json
stage-signal wait --state terminal --timeout 900
# or wait --json for a structured outcome payload on stdout:
stage-signal wait --json --state terminal --timeout 900
# reclaim loop (no cron+doctor sleep): poll until DEAD_PID/STALE, then reclaim in one shot:
stage-signal wait --needs-reclaim --timeout 900 --poll 5 &&
stage-signal reclaim --reason "worker timed out or crashed" --kill &&
stage-signal start --stage impact-clarity --session "$NEW_SESSION_ID" --pid "$NEW_PID"
# or stop after fail without clearing (audit then clear):
# stage-signal reclaim --reason "audit then clear" --kill --keep-failed
# audit the reclaim (do not scrape events.jsonl with tail/jq):
stage-signal events --tail 20 --type failed
# or snapshot health / structured warnings (STALE_HEARTBEAT, DEAD_PID):
stage-signal doctor --json
# or a one-shot exit 10 when reclaim is already needed (without requiring jq):
stage-signal doctor --exit-reclaim
# supervise a child command with automatic heartbeats until exit (done on 0, fail on non-zero):
stage-signal supervise -- pytest -v
The --pid $$ example uses the POSIX shell process ID. On Windows, pass the
agent process ID instead (for example, os.getpid() from Python).
Tip —
doneinheritsgit_head:donewithout--git-headinherits thegit_headrecorded atstart(SPEC §13.30.3). Agents and orchestrators that commit during a stage SHOULD pass--git-head $(git rev-parse HEAD)soresult.git_headmatches the finished tip. Seedocs/CALLER.md, which shows this pattern.
On-disk layout (default):
.stage-signal/
STATUS.json # current snapshot (normative)
STATUS.md # human mirror (best-effort, never normative)
events.jsonl # append-only history
locks/stage.lock # inter-process lock (POSIX fcntl.flock; Windows msvcrt.locking)
Platform locking note: POSIX platforms use
fcntl.flock(exclusive for mutations, shared for reads). Windows uses Python stdlibmsvcrt.lockingon the lock file (exclusive byte lock on byte 0; shared locks fall back to exclusive; no third-party dependencies). On environments lacking OS locking primitives, locking is a best-effort no-op. Do not assume Windows has POSIXflock. Atomicos.replaceprotectsSTATUS.jsonwrites across all platforms.
Exact schema and exit codes: see docs/SPEC.md (normative) and docs/PRIOR_ART.md (background). The notes below are a human scan of the same contract — when in doubt, SPEC wins.
Exit codes (status / wait)
| Code | Meaning |
|---|---|
0 |
done / OK — also wait --needs-reclaim when reclaim is needed |
1 |
Generic / corrupt — also wait --needs-reclaim ending in done without reclaim |
2 |
Bad args |
3 |
Illegal transition |
10 |
running |
11 |
blocked |
12 |
failed |
13 |
queued |
14 |
Wait timeout |
15 |
Not initialized |
wait
wait --jsonprints one object to stdout and keeps the exit codes above. Keys:outcome,wanted,observed_state/state,exit_code,timeout,stage_id,dir,reason,needs_reclaim,status.wantedis the--statevalue, or"needs_reclaim"when--needs-reclaimis set.- Top-level
needs_reclaimmatchesstatus --json/doctor --json(also nested onstatus). reasonis blocked/failed error text, or a short timeout message; otherwisenull.wait --needs-reclaimpolls until that boolean is true (running+DEAD_PIDorSTALE_HEARTBEAT, same detection asdoctor/status --json).- Healthy
runningkeeps polling — do not treatstatus/doctor --exit-reclaimexit10as wait success. - Terminal without reclaim fails closed:
done→1,blocked→11,failed→12. - A leftover terminal state satisfies
waitimmediately.waitis scoped to the--dir, not to a stage: if the previous stage leftdone/blocked/failedon disk,wait --state terminalreturns at once and reports that stage. An orchestrator that launches a worker and waits will be told the new stage succeeded before it ever started. Runstage-signal clear-terminalbefore launching the next worker, or readstage_idfromwait --jsonand assert it is the stage you launched.statushas the same caveat. doneis legal from idlequeued(SPEC §13.30) — a wrapper that dies beforestart, or an operator in the wrong directory, yieldsstate: donewithstage_id: nullat exit0. Assertstage_id, not juststate.- Library:
Stage.wait(..., needs_reclaim=True).
status
- Human text by default (heartbeat age only while
runningwith a valid heartbeat), e.g.heartbeat: <ISO> (age 42s). status --jsonalways includes:heartbeat_age_seconds— number whilerunningwith a valid heartbeat; otherwisenullneeds_reclaim— same boolean asdoctor --json(trueonly whenrunningand aDEAD_PIDorSTALE_HEARTBEATwarning applies)
doctor / Stage.diagnose()
Machine-readable health: ok, needs_reclaim, state, problems, warnings ([{code, message, detail}]), status, summary (doctor --json or --format json).
- Branch on
needs_reclaim, not on string-matchingsummary, and not onokas a liveness signal. needs_reclaimistrueonly whenstate == runningand aDEAD_PIDorSTALE_HEARTBEATwarning applies; otherwisefalse(healthy running, non-running, missing/unreadable status without reclaim warnings).- Reclaim warnings alone keep
ok: trueand exit0; exit1only onproblems.needs_reclaimis independent ofproblems. - Summary may still say
ATTENTION: running needs reclaimwhen there are reclaim warnings and no problems. doctor --exit-reclaim(for thin shell/watchdogs withoutjq): exit10whenneeds_reclaimis true; otherwise existing exits (0healthy/warnings,1problems,2bad args). Without--exit-reclaim, doctor stays advisory exit0on warnings.
Dead PID → fail --if-dead-pid
Doctor is advisory only. To act on a DEAD_PID warning (recovery hint names this flag):
stage-signal fail --reason TEXT --if-dead-pid
Hard-fails a running stage only after the claiming PID is a valid positive integer and confirmed dead. Live / invalid / undeterminable PID → exit 3, no mutation. Outside running, normal fail rules apply.
Reclaim when needs_reclaim is true
Same detection as doctor / status / Stage.diagnose() (DEAD_PID or STALE_HEARTBEAT):
stage-signal wait --needs-reclaim
stage-signal reclaim --reason TEXT --kill
reclaim --kill (after the guard passes), under one exclusive lock:
- Best-effort stop of a still-alive recorded PID:
SIGTERM→ poll up to 1s every 50ms →SIGKILLif still alive. Dead / null / invalid / unknown-liveness PIDs get no signal. Permission/OS errors warn on stderr; fail+clear still proceeds. - Write
failed+ reason, then clear to idlequeued(stage identity cleared). Emitsfailedandclear_terminal.
Healthy running and non-running states → exit 3, no signal, no mutation.
pid_token: Stage.start captures an optional opaque process-start identity when available (Linux /proc/<pid>/stat field 22, macOS ps lstart with stable locale/timezone, Windows GetProcessTimes). Unavailable capture never blocks start. Replaced on every start; cleared with pid on idle reset; preserved by clear-terminal --keep-stage or reclaim --keep-failed. After the reclaim guard, --kill re-checks any non-null token before each signal (TERM and escalation): mismatch / unreadable identity → warn and skip signal, but fail+clear / --keep-failed still proceeds. Legacy null tokens keep prior best-effort kill behavior.
Only the recorded PID is targeted (not a process group). Identity checks reduce PID-reuse risk; they do not remove the check/signal race or low-resolution collisions. A successful reclaim does not guarantee the worker stopped if signals were skipped — verify before relaunch.
- Without
--kill: no termination signals. --kill --keep-failed: stop afterfailedwithout clearing (watchdog audit, then manualclear-terminal).- Two-step alternative (no signals):
fail --reason TEXT --if-needs-reclaim→clear-terminal.
clear-terminal and audit
- Resets
done/blocked/failedand stuckqueued(named or idle) back to idlequeued; appendsclear_terminal. - Illegal from
running— reclaim withreclaim --kill,fail --if-needs-reclaim, orfail --if-dead-pidfirst. - Audit:
stage-signal events [--tail N] [--type TYPE] [--json](human default newest-last, last 20;--tail 0= all;--json= array). Do not scrapeevents.jsonlwithtail/jq.
start --meta is repeatable and accepts two forms per entry (merged in
order, later wins):
stage-signal start --stage demo --meta owner=ci --meta '{"ticket": 42, "flag": true}'
K=V— value kept as a string (value may contain=;K=is empty).- A raw JSON object string — JSON types (numbers, bools, null, nested objects/arrays) are preserved.
- Bare words, malformed JSON, and non-object JSON exit
2with no mutation.
Minimal orchestrator loop (cron, bot, CI step, shell): see
examples/dogfood/orchestrator-watchdog.sh — it only calls
stage-signal status --json / stage-signal wait (including
wait --needs-reclaim for the reclaim path) and exits with the
observed-state code above. Acceptance sequence: examples/orchestrator-smoke.sh.
The examples/*.sh scripts require a POSIX shell, such as Git Bash, WSL, or
the default shell on macOS and Linux.
For standard integration patterns, see the Caller Guide. Historical multi-stage queue runners and dogfood harnesses are archived in examples/dogfood/.
Auto-heartbeating child commands: supervise
Agents running long commands (builds, test suites, multi-step tasks) often forget to emit periodic heartbeats, leading to false needs_reclaim / stale watchdog alerts. Wrap execution with stage-signal supervise:
# Stage must already be running:
stage-signal start --stage test-suite --pid $$
# Supervise automatically bumps heartbeat every --every seconds (default 60s),
# forwards SIGINT/SIGTERM to child, and transitions to done on exit 0 or fail on non-zero:
stage-signal supervise --every 30 -- pytest -v
supervise returns the child process exit code (or 128 + SIGNUM on signal termination; standard error codes 2, 3, 15 on bad args or setup failures). Upon starting the child, supervise adopts the child's pid and pid_token in STATUS (under exclusive lock) so doctor and reclaim --kill track the active worker process rather than the supervisor wrapper.
Driving coding agents (agy, OpenCode, Claude Code, etc.)
An external orchestrator loop can drive coding agents across multi-stage milestones without scraping TUIs or transcripts. The orchestrator owns the queue or task plan (often in a private directory or generic caller state with prompt templates and run logs), while .stage-signal/ owns the stage signal (start, wait, done, exit codes).
The agent CLI invocation line is pluggable — everything else stays identical:
| Agent CLI | Invocation Line |
|---|---|
| agy (Antigravity CLI) | agy -p "$PROMPT" --dangerously-skip-permissions --print-timeout 45m |
| OpenCode | opencode run --dir "$REPO" --auto -m "$MODEL" "$PROMPT" |
| Claude Code | claude -p "$PROMPT" --dangerously-skip-permissions |
See docs/CALLER.md for the external caller guide (synchronous wait, health watchdog, and agent wrapper loops). Historical multi-agent dogfood harnesses are archived in examples/dogfood/.
Idle vs. Queued in Orchestrators
Orchestrator loops need to differentiate between an active pending stage and an idle runner:
- Idle state:
state: queuedwith no stage claimed (stage_name: null, displayed asqueued -) indicates the worktree is idle and awaiting instructions (created byinitor reset viaclear-terminal). - Queued stage:
state: queuedwith a stage name (stage_name: "feature-x") indicates a specific stage is queued to be picked up. Abandon it withstage-signal clear-terminal(now allowed from queued) to return to idle without hand-editing STATUS. - Handling failures: When an agent reports
fail, orchestrators have two clean SPEC-compatible choices:stage-signal clear-terminalto clear stage identity back to a true idlequeued -state.stage-signal done --accept-failure --summary "accepted: ..."to transition a failed stage todonewith"accepted_failure": truerecorded inresult, without inventing a fake success.
- Stuck running: Do not cron-poll
doctor. Block withstage-signal wait --needs-reclaim, thenreclaim --reason "..." --kill(one-shot: terminate the alive recorded PID, then fail+clear to idle queued for relaunch; or--kill --keep-failed/fail --if-needs-reclaimwithout signaling). Use--if-dead-pidonly when the PID is confirmed dead. Audit withstage-signal events --tail 20. Snapshotdoctor --json/status --jsonremains available;doctor --exit-reclaimis the one-shot exit-10 check (andexamples/dogfood/orchestrator-watchdog.sh --once --doctor-reclaimreclaims snapshotneeds_reclaimviareclaim --keep-failed).
GitHub Action: wait without a venv
No preinstalled venv needed — the composite action installs stage-signal
from PyPI then runs stage-signal wait:
- uses: syyzit/stage-signal@v1.0.0
with:
dir: .stage-signal # default
state: terminal # done | blocked | failed | terminal (default)
# needs-reclaim: true # alternate wait target: poll until DEAD_PID or STALE_HEARTBEAT
timeout: 3600 # seconds (default)
# poll: 5.0 # poll interval in seconds (default: CLI default 5.0)
# python-version: "3.12" # default
version: "1.0.0" # PyPI pin; defaults to the version this ref ships
# with. Pass "latest" to track the newest release.
# pip-cache: true # optional boolean for pip caching (default: false)
# cache: "pip" # optional setup-python cache (default: "")
The action exposes step outputs so downstream steps can branch without log scraping:
state/observed-state: observed state (done,blocked,failed,running, etc.)outcome:met,mismatch,timeout, orerrorexit-code/exit_code: numeric wait exit code (0,1done-without-reclaim,11,12,14,15)timed-out/timed_out:"true"or"false"stage-id/stage_id: stage identifier if present in statusreason: short blocked/failed reason or timeout message (empty otherwise)needs-reclaim/needs_reclaim:"true"or"false"(whetherneeds_reclaimwas observed)json: raw machine-readable JSON emitted bywait --json
Branching without scraping logs
Because non-zero exit codes (11 blocked, 12 failed, 14 timeout, 1 done-without-reclaim) fail the step by default, use continue-on-error: true to inspect outputs in subsequent steps:
- name: Wait for milestone
id: wait
uses: syyzit/stage-signal@v1.0.0
continue-on-error: true
with:
state: terminal
timeout: 600
- name: Done
if: steps.wait.outputs.state == 'done'
run: echo "Stage done: ${{ steps.wait.outputs.stage-id }}"
- name: Blocked
if: steps.wait.outputs.state == 'blocked'
run: echo "Stage blocked: ${{ steps.wait.outputs.reason }}"
- name: Failed
if: steps.wait.outputs.state == 'failed'
run: echo "Stage failed: ${{ steps.wait.outputs.reason }}"
- name: Timed out
if: steps.wait.outputs.timed-out == 'true'
run: echo "Wait timed out: ${{ steps.wait.outputs.reason }}"
# Optionally enforce job failure unless the stage is done:
- name: Fail unless done
if: steps.wait.outputs.state != 'done'
run: |
echo "not done: state=${{ steps.wait.outputs.state }} reason=${{ steps.wait.outputs.reason }}"
exit 1
CI reclaim gate: wait --needs-reclaim
In CI watchdogs, gate on the reclaim condition without writing cron/sleep loops by setting needs-reclaim: true. This runs stage-signal wait --needs-reclaim --json, polling until needs_reclaim is true (DEAD_PID or STALE_HEARTBEAT). Terminal states without reclaim fail closed (done → 1, blocked → 11, failed → 12) so downstream if: branches can distinguish reclaim needed from timeout or clean task completion:
- name: Wait for reclaim signal
id: wait
uses: syyzit/stage-signal@v1.0.0
continue-on-error: true
with:
needs-reclaim: true
timeout: 900
poll: 5
# Branch 1: Reclaim needed (outcome == 'met', needs-reclaim == 'true', exit-code 0)
- name: Reclaim needed
if: steps.wait.outputs.needs-reclaim == 'true'
run: |
echo "Reclaim needed: stage_id=${{ steps.wait.outputs.stage-id }}"
# Fail the stage under the mutation lock, then trigger alerts or restart:
# stage-signal --dir .stage-signal fail --reason "CI watchdog reclaim" --if-needs-reclaim
# Branch 2: Watchdog wait timed out (exit-code 14)
- name: Timed out
if: steps.wait.outputs.timed-out == 'true'
run: echo "Watchdog timed out without reclaim: ${{ steps.wait.outputs.reason }}"
# Branch 3: Terminal reached without reclaim (outcome == 'mismatch': done -> 1, blocked -> 11, failed -> 12)
- name: Terminal without reclaim
if: steps.wait.outputs.outcome == 'mismatch'
run: |
echo "Stage reached terminal state without reclaim: state=${{ steps.wait.outputs.state }} exit_code=${{ steps.wait.outputs.exit-code }}"
See examples/github-action-wait.yml and examples/github-action-wait-reclaim.yml for complete copyable workflows that wait on an existing .stage-signal/ directory and branch on done / blocked / failed / timeout / reclaim-needed. The composite action's steps use shell: bash (available on GitHub-hosted Ubuntu, macOS, and Windows runners). Pinning. The action ref and the PyPI version input are independent pins, and both default to something explicit: uses: syyzit/stage-signal@v1.0.0 selects the action source, version: "1.0.0" selects the installed package. If version is omitted, the action installs the release its own ref ships with — never "whatever is newest" — so a pinned uses: cannot silently pick up a future release. Pass version: latest if you want to track the newest release.
Once 1.0 ships, a floating v1 tag will be maintained alongside the exact v1.x.y tags: uses: syyzit/stage-signal@v1 follows every backwards-compatible 1.x action fix (the usual GitHub Actions convention), while @v1.2.3 stays byte-exact. Because the version default moves with the action source, @v1 also tracks the matching package release. Use @v1 for convenience, an exact tag (or a commit SHA) when you need reproducibility. Waiting for terminal or --needs-reclaim with continue-on-error: true keeps 11/12/14/1 from collapsing into a generic failed step so later if: branches can read state / timed-out / needs-reclaim / reason.
For distinguishable blocked/failed/timeout/reclaim in CI without log scraping, use the action outputs (see above) with continue-on-error on the wait step when you need downstream if: branches.
Exit codes are the wait contract: 0 condition met, 1 done-without-reclaim (fail closed), 11 blocked,
12 failed, 14 timeout, 15 not initialized (10 running,
13 queued, 1/2/3 errors). See action.yml.
Action runtime note: The composite action uses
actions/setup-python@v7(Node 24 runner runtime, compatible with runner v2.327.1+), avoiding Node 20 runner deprecation warnings. Release packages published from GitHub Actions include build provenance attestations (actions/attest-build-provenance@v4).
What this is / isn’t
Is
- A clear stage lifecycle for overnight or unattended agent loops
- Readable by any language that can open a JSON file
- Usable from cron, bots, CI, or a human shell
Is not
- A replacement for git, CI, or issue trackers
- A multi-agent worktree / DAG orchestrator (use tools like ruah / similar if you need that)
- A proof-of-test gate (compose with something like agent-done-or-not if you need tamper-evident receipts before declaring success)
Why not scrape the agent UI?
Agent UIs and chat transcripts are for humans. Orchestrators need a stable, boring interface:
- Did this stage end?
- How did it end?
- Is the process still alive (heartbeat)?
- What git head / artifacts should the next stage assume?
stage-signal answers those without depending on one vendor’s session format.
Status
1.0.0: library (src/stage_signal/), full CLI (init, start,
heartbeat, note, artifact, done, blocked, fail, status,
wait, clear-terminal, doctor), unit + concurrency tests,
examples/dogfood/orchestrator-watchdog.sh (+ examples/orchestrator-smoke.sh),
Caller Guide (docs/CALLER.md), archived dogfood harnesses in examples/dogfood/
(+ examples/dogfood/queue-orchestrator-smoke.sh), CI (.github/workflows/ci.yml:
pytest + smokes + packaging check via python -m build /
twine check, no upload). Contract: SPEC v1.
CI no longer only tests the working tree: smoke-from-wheel installs the built
wheel into a clean venv and runs examples/orchestrator-smoke.sh on
ubuntu / macOS / Windows, docs-execute runs the fenced examples in this README
and docs/CALLER.md (tests/test_docs_examples.py), and
.github/workflows/action.yml executes the composite action itself via
uses: ./ on a real runner across the done / blocked / failed / timeout /
needs-reclaim branches.
main carries SPEC contract freezes through §13.42 — status / events /
doctor / wait observers (§13.35–§13.38), .orch mirror (§13.39),
concurrency and locking (§13.40), proof gate (§13.41), and PID liveness /
needs_reclaim derivation (§13.42) — while the
published package is 1.0.0, releasing the soak of freezes through §13.42. Action pins (@v1.0.0) and the optional PyPI version pin
("1.0.0") stay aligned with the release.
1.0 readiness & "done" bar: The published product is strictly the thin .stage-signal/ lifecycle contract (CLI, on-disk status, normalized exit codes, and Python library) — not an agent orchestrator, task queue, or multi-agent cockpit. All 42 subsections of SPEC §13 are frozen; the remaining pre-1.0 work is caller-facing docs accuracy, Action hygiene, and turning "soaked across platforms" from an assertion into CI jobs (see above) — not new freezes. Full contract freeze map and cut-list: docs/ROADMAP-1.0.md.
Docs
docs/SPEC.md— normative contract (schema, CLI, exit codes)docs/ROADMAP-1.0.md— 1.0 readiness map (§13.1–§13.42), cut-list, and done bardocs/CALLER.md— caller guide (synchronous wait, health watchdog, and agent wrapper loops)docs/COMPOSE.md— proof interop (--proof-ref/--require-proof)docs/RELEASE.md— release procedure (manual; no upload from agent loops)docs/PRIOR_ART.md— background researchCHANGELOG.md— release notes
Prior art
We researched existing tools before writing this. Short version: several systems solve adjacent problems (verification receipts, process presence, full multi-agent orchestration). The niche here is a small stage lifecycle aimed at external watchdogs. Details: docs/PRIOR_ART.md.
License
MIT — see LICENSE.
Contributing
Issues and PRs welcome. Keep the scope small: lifecycle signals, not a platform.
See CONTRIBUTING.md for local setup, .venv test requirements, and release
boundaries.
Release files for stage-signal 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| stage_signal-1.0.0.tar.gz | 160.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| stage_signal-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 203.7 kB
Release files / stage_signal-1.0.0.tar.gz
| Download URL | stage_signal-1.0.0.tar.gz |
|---|---|
| Size | 160.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
686c14c1411a9a09bae4b0105c4e4ddd8c77f812f210502689364763328f5f5c
|
|
BLAKE2b-256 checksum How to use checksums |
a93a4ed2b358ad593e266ad9e8cdcb0ded4afaf59d785dfbd54003db9b69c866
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.
Transparency logRelease files / stage_signal-1.0.0-py3-none-any.whl
| Download URL | stage_signal-1.0.0-py3-none-any.whl |
|---|---|
| Size | 43.2 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
250a27f129e2878b7dbbc674be9a4f43b838b5c0e8602132d3ec3411f4d31d61
|
|
BLAKE2b-256 checksum How to use checksums |
e1d61dc59a693fb95cdcf4d955759f850e83a4c1b76b5d50234f0079261973cd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 20, 2026.
Transparency log