issue

issue is a command for Claude Code from synaptiai/synapti-marketplace. It costs 28 tokens per session (1,407 once invoked), scanned A, original, Apache-2.0.

A command for creating a well-defined GitHub issue, a tracked request or problem in a software project.

In plain words
What is it for?
Use it to gather requirements, find related issues, choose labels, and write requirements that can be verified when complete.
Why use it?
It helps turn an idea or problem into clear requirements with acceptance criteria, while checking for duplicates and suitable labels.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the AskUserQuestion tool.

Part of the flow plugin — 31 skills, 21 commands, 9 agents shipped together

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/synaptiai/synapti-marketplace/issue
Clone the repo
git clone --depth 1 https://github.com/synaptiai/synapti-marketplace

Made for: Claude Code.

Or install flow, the plugin that ships this one along with the rest of its 31 skills, 21 commands, 9 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for issue

README.md
[![agentmods](https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/issue.svg)](https://agentmods.dev/commands/synaptiai/synapti-marketplace/issue)
Your own site
<a href="https://agentmods.dev/commands/synaptiai/synapti-marketplace/issue"><img src="https://agentmods.dev/badge/commands/synaptiai/synapti-marketplace/issue.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,407 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.1 $0.00028 $0.01407
Opus 5 $0.00014 $0.00704
Sonnet 5 $0.00006 $0.00281
Haiku 4.5 $0.00003 $0.00141

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

Security

Grade A, and why

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

plugins/flow/commands/issue.md · 194 lines

How it starts

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

Create Issue: $ARGUMENTS

Skill-driven issue creation. Follows the Explore > Plan > Code > Verify loop with issue-crafting skill knowledge.

Required Skills

  • issue-crafting — solution-agnostic issues, duplicate detection, label discovery

Phase 1: EXPLORE

Gather context before formulating the issue.

# Output: `###`-headed sections + KEY=value per
# `references/command-output-format.md`.

echo "### Repo Context"
REPO=$(gh repo view --json nameWithOwner --jq '.nameWithOwner' 2>/dev/null)
if [ -z "$REPO" ]; then
  echo "STATE=unavailable"
  echo "ERROR=cannot resolve repo (gh auth or non-repo CWD?)"
else
  echo "STATE=ok"
  echo "REPO=$REPO"
fi

echo ""
echo "### Git State"
echo "BRANCH=$(git branch --show-current 2>/dev/null)"
UNCOMMITTED_COUNT=$(git status --porcelain 2>/dev/null | wc -l | tr -d ' ')
echo "UNCOMMITTED_COUNT=$UNCOMMITTED_COUNT"
[ "$UNCOMMITTED_COUNT" != "0" ] && git status --short 2>/dev/null | head -20 | sed 's/^/UNCOMMITTED_LINE=/'

true

Branch context extraction: If on a feature branch matching feature/issue-{N}-* or fix/issue-{N}-*, extract the issue number — the new issue may be related.

Requirements gathering from $ARGUMENTS:

If $ARGUMENTS provides a description, parse it for initial context. For each missing element, use the AskUserQuestion tool with contextual options:

  1. Context: "What's the background/motivation for this issue?"
  2. Current State: "What's happening now? What's the problem or gap?"
  3. Objective: "What should be achieved? Describe the desired outcome."
  4. Acceptance Criteria: "What observable behaviors prove this is complete?"

If $ARGUMENTS is empty, walk through all four elements interactively.

Iron law enforcement: If any gathered element contains file paths, function names, class names, or implementation details — rewrite it to describe outcomes instead. Example:

  • Bad: "Add a reset_password method to UserController"
  • Good: "Users can reset their password via email"

Read the full file on GitHub · 194 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 · 194 lines · 28 tokens per session scan A d42e6d7f7721

Subscribe to this mod's changes

issue is a command published in the GitHub repository synaptiai/synapti-marketplace (6 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 28 tokens to every session and 1,407 once invoked, about $0.0001 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-09-03.