Source profileQuality 73/100

sonichi/sutando/skills/open-sutando-ref/SKILL.md

open-sutando-ref

Resolve a fuzzy GitHub reference (issue number, PR number, or text description) to a URL and optionally open it in the browser.

Source repository stars
359
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

Resolves natural-language and numeric GitHub references to URLs and optionally navigates to them. Closes 903.

Best for

  • Voice command: "open the result-marker PR" → invoke resolve.py --open "result-marker PR"
  • Chat shorthand: "check 874" → invoke resolve.py "874"
  • Proactive loop step 10: when forwarding Discord references, resolve before posting

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/sonichi/sutando --skill "skills/open-sutando-ref"
Safe inspection promptEditorial

Inspect the Agent Skill "open-sutando-ref" from https://github.com/sonichi/sutando/blob/6a8f0fccd32e5aa620a3572c8885544f144bb6fe/skills/open-sutando-ref/SKILL.md at commit 6a8f0fccd32e5aa620a3572c8885544f144bb6fe. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Reference formats

    874 / 874 — numeric (auto-detects PR vs issue)

    874 / 874 — numeric (auto-detects PR vs issue)PR 874 / pull request 874 — explicit PRissue 874 — explicit issue
  2. 02

    What this skill does

    1. Parse the reference: numeric, explicit PR/issue, or fuzzy query. 2. For numeric refs: check whether the number exists as a PR, fall back to issue. 3. For fuzzy refs: run gh pr list --search then gh issue list --search ; return the top match URL. 4. Print the URL to stdout. 5.…

    Parse the reference: numeric, explicit PR/issue, or fuzzy query.For numeric refs: check whether the number exists as a PR, fall back to issue.For fuzzy refs: run gh pr list --search then gh issue list --search ; return the top match URL.
  3. 03

    Configuration

    SUTANDOGHREPO — override the target repo (default: inferred from gh repo view or sonichi/sutando).

    SUTANDOGHREPO — override the target repo (default: inferred from gh repo view or sonichi/sutando).- SUTANDOGHREPO — override the target repo (default: inferred from gh repo view or sonichi/sutando).
  4. 04

    When to use

    Voice command: "open the result-marker PR" → invoke resolve.py --open "result-marker PR"

    Voice command: "open the result-marker PR" → invoke resolve.py --open "result-marker PR"Chat shorthand: "check 874" → invoke resolve.py "874"Proactive loop step 10: when forwarding Discord references, resolve before posting

Permission review

Static risk signals and limitations

Network access

medium · line 22

The documentation includes network, browsing, or remote request actions.

For fuzzy refs: run `gh pr list --search <query>` then `gh issue list --search <query>`; return the top match URL.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score73/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars359SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
sonichi/sutando
Skill path
skills/open-sutando-ref/SKILL.md
Commit
6a8f0fccd32e5aa620a3572c8885544f144bb6fe
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

Open Sutando Ref

Resolves natural-language and numeric GitHub references to URLs and optionally navigates to them. Closes #903.

Usage: /open-sutando-ref [--open] <ref>

ARGUMENTS: $ARGUMENTS

Reference formats

  • #874 / 874 — numeric (auto-detects PR vs issue)
  • PR 874 / pull request 874 — explicit PR
  • issue 874 — explicit issue
  • "the result-marker PR" — fuzzy text search via gh pr/issue list --search
  • "multi-core scheduler" — searches both PRs and issues, returns best match

What this skill does

  1. Parse the reference: numeric, explicit PR/issue, or fuzzy query.
  2. For numeric refs: check whether the number exists as a PR, fall back to issue.
  3. For fuzzy refs: run gh pr list --search <query> then gh issue list --search <query>; return the top match URL.
  4. Print the URL to stdout.
  5. If --open flag is present, call open <url> to navigate in the default browser.

Configuration

  • SUTANDO_GH_REPO — override the target repo (default: inferred from gh repo view or sonichi/sutando).

When to use

  • Voice command: "open the result-marker PR" → invoke resolve.py --open "result-marker PR"
  • Chat shorthand: "check #874" → invoke resolve.py "#874"
  • Proactive loop step 10: when forwarding Discord references, resolve before posting