T3MP3ST needs contributions from prompt engineers, cyber operators, bug bounty hunters, red-teamers, AI-security researchers, and product-minded builders.
The best contributions make the system more capable while making its evidence and authority boundaries clearer.
The canonical repository and tracker are
elder-plinius/T3MP3ST. Open issues
and pull requests there against main. The project uses focused branches,
squash merges, green exact-head CI, and does not permit force-pushing published
review history.
- Add a tool adapter in
src/arsenal/catalog.ts. - Add or improve a mission-family prompt pack in
src/resources/. - Add a runbook phase with evidence requirements and exit criteria.
- Add a local-safe demo mission in
examples/demo-missions.json. - Add a smoke-test check in
scripts/arsenal-smoke.mjsorscripts/field-drill.mjs. - Improve UI truth labels for preview, wired, installed, gated, synthetic, and live states.
- Add parser support that turns tool output into structured evidence.
Every adapter should define:
id,binary, and human-readablename.categoryand missionfamilies.risk:local_read,passive,active,intrusive,credential, ordangerous.execution:safe_command,receipt_required,import_only, orcatalog_only.networked: whether it can touch remote systems.evidenceKinds: what proof the tool should produce.outputFormats: expected output shape.installHintandcommandHint.parserStatus:structured,text, orplanned.notes: the operational caution or value.
Prompt packs should include:
- A sharp role frame.
- Operating rules that bind the agent to scope and evidence.
- Expected outputs that reviewers can inspect.
- Escalation rules for uncertainty, scope, and dangerous actions.
- Evidence contracts that say what must be captured before making claims.
Behavior changes must include outcome-oriented regression coverage. A change with no relevant tests is blocked. Changed executable lines should reach at least 50% coverage; documentation-only and metadata-only changes may mark this not applicable with a reason. Trust-boundary, scope, evidence, provider, installation, and release changes also need the focused checks for that risk.
Before opening a PR, run the same correctness gate used by CI:
npm run test:prFor changes that affect claims, run modes, agent/tool execution, target scope,
egress, redaction, reports, or benchmark artifacts, include a contribution
receipt using docs/CONTRIBUTION_RECEIPTS.md.
If the API is running:
npm run arsenal:smoke
npm run field:drillFollow the full Pull Request Delivery Guide before requesting review. In particular, run:
git diff --name-status upstream/main...HEADThe PR must stay scoped to its title. Do not include stale-base deletions,
unrelated provider/config churn, benchmark fixture removals, provenance doc
removals, or safety-test removals. If the branch has drifted, recreate it from
current main and reapply only the intended change.
When a contribution uses an earlier PR as notes, reference material, or a code
source, say so in the Prior work and attribution section. Identify adapted
paths or concepts and describe the fresh verification applied; prior review and
CI do not transfer to a new head. For focused implementations derived from
PR #163, thank and mention
@xxmafiaxxx in both the PR body and the issue completion comment. The
decomposition roadmap defines
the execution order and closeout evidence for issues #171–#183.
Maintainers run npm run test:release and npm audit --audit-level=high against
the exact release tag before publishing. The tag workflow creates one
deterministic source ZIP, verifies it, records SHA-256 checksums, and retains a
Sigstore provenance bundle. A green PR gate is necessary for review and merge,
but it is not release certification.
Do not include secrets, private tracker content, unlicensed corpora, or
uncoordinated vulnerability details. Use the disclosure channel in
SECURITY.md for security-sensitive reports.
- Prefer clear adapters and evidence contracts over clever hidden behavior.
- Label preview surfaces honestly.
- Keep dangerous capability modeled, gated, and auditable.
- Make the nontechnical path simpler without weakening the expert path.