hermes - 💡(How to fix) Fix Prefer `curl`, `jq` and other CLI tools over Python snippets in API-oriented skills

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Code Example

curl -s \
  -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20" \
  | python3 -c "
import sys, json
for i in json.load(sys.stdin):
    if 'pull_request' not in i:
        labels = ', '.join(l['name'] for l in i['labels'])
        print(f\"#{i['number']:5}  {i['state']:6}  {labels:30}  {i['title']}\")"

---

curl -s \
  -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20" \
  | jq -r '.[] | select(.pull_request | not) | "#\(.number)  \(.state)  \([.labels[].name] | join(","))  \(.title)"'
RAW_BUFFERClick to expand / collapse

Several API-oriented skills include examples that call APIs with curl but then pipe or hand off JSON parsing to Python snippets. It is unnecessarily slow.

I suggest updating relevant bundled skills to prefer curl, jq and other CLI tools over Python.

Candidate skills / areas

  • github-issues
  • linear
  • SaaS/API-oriented skills generally
  • Any examples that use Python only to pretty-print or extract basic JSON fields

Examples

Instead of:

curl -s \
  -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20" \
  | python3 -c "
import sys, json
for i in json.load(sys.stdin):
    if 'pull_request' not in i:
        labels = ', '.join(l['name'] for l in i['labels'])
        print(f\"#{i['number']:5}  {i['state']:6}  {labels:30}  {i['title']}\")"

Prefer:

curl -s \
  -H "Authorization: token $GITHUB_TOKEN" \
  "https://api.github.com/repos/$OWNER/$REPO/issues?state=open&per_page=20" \
  | jq -r '.[] | select(.pull_request | not) | "#\(.number)  \(.state)  \([.labels[].name] | join(","))  \(.title)"'

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

hermes - 💡(How to fix) Fix Prefer `curl`, `jq` and other CLI tools over Python snippets in API-oriented skills