Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/jborgia/signaltree/release-processgit clone --depth 1 https://github.com/JBorgia/signaltreeWhat it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.02922 | $0.02922 |
| Opus 5 | $0.01461 | $0.01461 |
| Sonnet 5 | $0.00584 | $0.00584 |
| Haiku 4.5 | $0.00292 | $0.00292 |
Grade A, and why
signaltree release-process.instructions.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 439 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SignalTree Release Process
Critical: DO NOT Skip These Steps
Publishing broken packages to npm damages user trust and creates support burden. This process is mandatory for all releases.
Pre-Release Checklist (Required)
Before running ANY release commands, verify:
1. Working Directory is Clean
git status
# Must show: "nothing to commit, working tree clean"
If there are uncommitted changes, commit or stash them first.
2. You're on the main branch and up-to-date
git checkout main
git pull origin main
3. All dependencies are installed
pnpm install --frozen-lockfile
4. Full validation passes
npm run validate:all
This runs:
- Linting (
lint:all) - Tests (
test:all) - Builds (
build:all) - Type declaration verification (
validate:types) - Package structure checks
- Export validation
If any validation step fails, DO NOT proceed with release.
Release Commands (Use Release Scripts - NOT nx release directly)
SignalTree has comprehensive release automation in scripts/release.sh. ALWAYS use these npm scripts instead of nx release directly.
Recommended Release Flow (Automated)
# For patch releases (bug fixes)
npm run release:patch
# For minor releases (new features, backward compatible)
npm run release:minor
# For major releases (breaking changes)
npm run release:major
What the Release Script Does
The scripts/release.sh script provides a complete, reliable release workflow:
-
Runs comprehensive pre-publish validation (
scripts/pre-publish-validation.sh)- All tests must pass
- All builds must succeed
- Type declarations must be valid
- Bundle sizes verified
- Export integrity checked
-
Bumps versions in all package.json files (workspace + all packages)
-
Updates peer dependencies with correct version constraints
-
Builds all packages in production mode
-
Updates CHANGELOG.md from conventional commits
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 439 lines · 2,922 tokens per session scan A 2d3bedcd5059
signaltree release-process.instructions.md is an instructions file published in the GitHub repository JBorgia/signaltree (22 stars, last pushed 11d ago), licensed Apache-2.0. It adds 2,922 tokens to every session, about $0.0146 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
planning-with-files AGENTS.md
AGENTS.md instructions for OthmanAdi/planning-with-files, covering agents.md — planning-with-files agent reference card, commit rules, release checklist (12 steps), version bump scope and changelog format.
core AGENTS.md
Instructions for ReactUnity/core, covering release workflow, write changelog files, example, fix button hover state and package references.
codex-ppt-skill AGENTS.md
Instructions for ningzimu/codex-ppt-skill, covering agents.md, contribution flow, changelog, release process and verification.
chatgpt-cli CLAUDE.md
Instructions for kardolus/chatgpt-cli, covering chatgpt-cli — release runbook, prerequisites, 1. cut the release, 2. publish the github release + binaries and 3. update the homebrew tap.
sandbox AGENTS.md
AGENTS.md instructions for vercel/sandbox, covering agents and changesets.
ssgoi AGENTS.md
Instructions for meursyphus/ssgoi, covering ssgoi and releasing.