test

A command that commits code changes, pushes them to a remote repository, and records the work time in Jira, a tool for tracking software tasks.

In plain words
What is it for?
Use it when a feature branch is ready to commit and push, especially when the work must be linked to a Jira ticket and logged.
Why use it?
It combines several release steps and handles cases such as missing tickets, repeated pushes, or protected branches.

Command

Install

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.

agentmods
npx agentmods add commands/jpesewang/solo-dev-workflow/test
Clone the repo
git clone --depth 1 https://github.com/jpeseWang/solo-dev-workflow
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 726 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What 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.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.00726
Opus 5 $0.00000 $0.00363
Sonnet 5 $0.00000 $0.00145
Haiku 4.5 $0.00000 $0.00073

Measured 2d ago against content hash c67911a16e19, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

test 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.

variants/solo/commands/test.md · 84 lines

How it starts

The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Write tests

Generate or strengthen tests for the changed code, then run them.

Add the test that would have caught the bug, or that locks in the new behavior. Match the project's existing testing setup — don't introduce a new framework.

Input: an optional target.

  • none → test the code in the current uncommitted diff
  • path/to/file → test that file
  • a description → test that behavior

Step 1 — Detect the test setup

Figure out what the project already uses before writing anything:

# JS/TS
grep -lE '"(jest|vitest|mocha|@playwright/test|node:test)"' package.json 2>/dev/null
ls vitest.config.* jest.config.* playwright.config.* 2>/dev/null
# Python
ls pytest.ini pyproject.toml tox.ini 2>/dev/null && grep -l pytest pyproject.toml 2>/dev/null
# Go
ls go.mod 2>/dev/null   # go test, *_test.go
# Find sibling tests to copy the convention from
git ls-files | grep -iE '(\.test\.|\.spec\.|_test\.|/__tests__/|/tests?/)' | head -20

Adopt the existing file naming, folder location, and assertion style. If there is genuinely no test setup, say so and propose the smallest reasonable one — don't install it without asking.

Step 2 — Identify what to test

From the target, list the behaviors worth covering, prioritized:

  1. The happy path (the main thing the code does).
  2. Edge cases: empty/zero/negative, boundaries, missing optional inputs.
  3. Error paths: what happens when a dependency throws or returns a failure.
  4. Any regression — if this change is a bug fix, write the test that fails on the old code.

Skip trivial getters/passthroughs and generated code. Don't chase a coverage number; chase the cases that actually break.

Step 3 — Write the tests

  • One clear behavior per test; name it so a failure reads like a sentence.
  • Arrange / act / assert. Mock only true external boundaries (network, clock, fs) — don't mock the unit under test.
  • Reuse existing fixtures/helpers/builders rather than duplicating setup.

Step 4 — Run them

Run the suite (or just the new file) using the project's test command. Report honestly:

Read the full file on GitHub · 84 lines

Changes

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.

  1. 2d ago First seen · 84 lines · 0 tokens per session scan A c67911a16e19

Subscribe to this mod's changes

test is a command published in the GitHub repository jpeseWang/solo-dev-workflow (2 stars, last pushed 12d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 726 tokens. 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-31.