submit-use-case

A submission tool for sharing a documented Sutando use case with the public GitHub community. GitHub issues are discussions about work in a repository, while a pull request proposes file changes.

In plain words
What is it for?
Use it to submit an issue, a documentation pull request, or both, optionally including video, image, YouTube, X, LinkedIn, and contact details.
Why use it?
It checks that the use case is framed around an outcome and prepares the community materials in the expected format. It can avoid making changes by running in dry-run mode.

Skill for Claude CodeCodex

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 skills/sonichi/sutando/submit-use-case
Any agent
npx skills add sonichi/sutando --skill submit-use-case
Clone the repo
git clone --depth 1 https://github.com/sonichi/sutando

Made for: Claude Code, Codex.

Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,341 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.00079 $0.01341
Opus 5 $0.00039 $0.00671
Sonnet 5 $0.00016 $0.00268
Haiku 4.5 $0.00008 $0.00134

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

Security

Grade A, and why

submit-use-case 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 3d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/submit_use_case.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/submit-use-case/SKILL.md · 116 lines

How it starts

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

submit-use-case

OSS counterpart to add-use-case. add-use-case targets the private AG2Platform/agent-universe repo (rendered on sutando.ai) and is for the internal fleet. submit-use-case targets the public sonichi/sutando repo so external contributors can share a use case without needing access to the private rendering repo.

Usage

python3 "$SKILL_DIR/scripts/submit_use_case.py" \
    --title "Your AI plays piano while you sleep" \
    --summary "Outcome-first summary that appears on tile + detail page." \
    --bullets "bullet1" --bullets "bullet2" \
    [--video /abs/path/to/clip.mp4] \
    [--media-url https://example.com/clip.jpg] \
    [--youtube-id ABCDEFG1234] \
    [--x-url https://x.com/...] \
    [--linkedin-url https://www.linkedin.com/...] \
    [--contact "[email protected] or @yourhandle"] \
    [--issue-only | --pr-only] \
    [--dry-run]

--dry-run runs the framing check and prints both the rendered issue body and the rendered docs/community-use-cases/<slug>.md file to stdout. No clone, no gh calls.

What the skill does

  1. Validate title is outcome-framed. Reuses REJECT_PATTERNS + validate_title + suggest_reframes from add-use-case verbatim. Capability-listy titles ("Ask your AI to ...", "Sutando can ...", "Send a ...") are rejected with deterministic reframe suggestions. Same rules, same voice.
  2. Derive slug. slugify(title) — lowercased, non-alphanum→-, trimmed to 60 chars.
  3. Idempotency checks (skipped in --dry-run):
    • Does a branch community-use-case/<slug> already exist on sonichi/sutando? If yes, abort with a pointer to the existing PR.
    • Is there an open issue on sonichi/sutando with the same title? If yes, abort with the existing issue URL.
  4. Open an issue (unless --pr-only). gh issue create --repo sonichi/sutando with label use-case-submission. Body has structured sections: Title, Summary, Bullets, Links (video / youtube / x / linkedin), Contact, and a forward-ref to the PR if one is opened in the same invocation.
  5. Open a PR (unless --issue-only).
    • Fresh clone: gh repo clone sonichi/sutando /tmp/sutando-submit-use-case-{ts}/
    • Branch: community-use-case/<slug> from main
    • File: docs/community-use-cases/<slug>.md — YAML frontmatter mirroring the agent-universe UseCase shape so the sync script can later promote it.
    • Identity: the script never overrides git config — the commit is attributed to the runner's existing user.name / user.email, so the CLA signs under whoever they already are (that's the whole point of CLA-Assistant signing). It prints the identity before committing and aborts if it's unset, so attribution can't silently go out wrong.
    • Commit, push, gh pr create. PR body cross-links the issue if one was opened.
  6. Return both URLs to stdout (issue URL, then PR URL, last two lines).

Read the full file on GitHub · 116 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 3d ago First seen · 116 lines · 79 tokens per session scan A 9c7cc8877c8f

Subscribe to this mod's changes

submit-use-case is a skill published in the GitHub repository sonichi/sutando (389 stars, last pushed 3d ago), licensed MIT. It adds 79 tokens to every session and 1,341 once invoked, about $0.0004 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.