issue-tracker

A guide to managing this repository’s work items in the Open Software platform, the project’s designated issue tracker. GitHub Issues are kept only as a legacy or monitoring surface.

In plain words
What is it for?
Use it to list, search, read, comment on, and update issues in the configured organization, while confirming before taking ownership of an issue.
Why use it?
It prevents issues from being read or managed in the wrong system and documents the repository’s required commands and write safeguards.

Agent

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 agents/open-software-network/os-clovy/issue-tracker
Clone the repo
git clone --depth 1 https://github.com/open-software-network/os-clovy
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 770 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.00770
Opus 5 $0.00000 $0.00385
Sonnet 5 $0.00000 $0.00154
Haiku 4.5 $0.00000 $0.00077

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

Security

Grade A, and why

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

docs/agents/issue-tracker.md · 72 lines

How it starts

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

Issue tracker: os-platform

Issues for this repo live on the Open Software platform (os-platform), org june — NOT GitHub Issues. GitHub Issues exist on the repo but are a legacy/watchdog surface, not the triage queue.

All reads go through the vendored os-platform skill (.agents/skills/os-platform/). Run its script from that directory; it needs OS_PLATFORM_API_KEY in the environment (never paste keys into chat). Defaults (org june, limit 20) come from os-platform.json at the repo root.

Read conventions

  • List issues: python3 scripts/os_platform.py issues list june --status todo (filters: --status todo,in_progress,in_review,completed,cancelled, --labels, --assignee, --priority, --project, --q)
  • Search: python3 scripts/os_platform.py issues search june "<query>"
  • Read an issue: python3 scripts/os_platform.py issues show june <number> (comments: comments list issue june <number>)
  • Take an issue (todo → in_progress, assigns you): python3 scripts/os_platform.py issues take june <number> — confirm with the user before passing --yes.

Write conventions

The os-platform script owns routine workflow writes. Run it from .agents/skills/os-platform/ and verify each write with a read before any fan-out:

  • Create an issue: python3 scripts/os_platform.py issues create june --title "..." --body "..." (optional: --type feature|bug|other, --priority low|med|high).
  • Assign yourself: python3 scripts/os_platform.py issues assign june <number>.
  • Change status: python3 scripts/os_platform.py issues status june <number> <status> where status is todo|in_progress|in_review|completed|cancelled.
  • Add a comment: python3 scripts/os_platform.py comments add june <number> --body "...".

issues take remains the confirmed shortcut that assigns an unassigned todo Issue to the authenticated user and moves it to in_progress.

Issue body edits are still append-only and are not exposed by os_platform.py: fetch the full current body first, append, and never overwrite. The direct endpoint remains PATCH /v1/orgs/june/bounties/{number} with the combined body as {"body_markdown": "..."}. Prefer os-task-prep/scripts/enrich_issue.py for diagnosis notes. Other mutations not owned by the script, such as body or label updates, keep the direct API probe-then-verify discipline. Confirm any fan-out mutation on one Issue before applying it to many — this is a shared production tracker.

Read the full file on GitHub · 72 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 · 72 lines · 0 tokens per session scan A 8588dbc9da28

Subscribe to this mod's changes

issue-tracker is an agent published in the GitHub repository open-software-network/os-clovy (357 stars, last pushed 8d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 770 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-30.

Related

Other agents, from other repositories

demo-agents

We need a steady flow of demo videos — X/Twitter, Reddit, YouTube Shorts, blog posts, App Store-style screen recordings — and we'd like to scale that without scheduling Daniel to record every clip by hand. This doc maps the content-creation agent landscape, names the gap between "synthetic video hype" and "scripted…

moona3k/macparakeet · 0 tokens

qa-agents

Every quarter someone pitches an "AI does QA" tool. Most are web-first or mobile-first. MacParakeet is a menu-bar macOS app with a non-activating KeylessPanel overlay, global dictation hotkeys, and TCC-gated microphone/screen-recording flows. The general AI-QA frontier doesn't speak our shape yet. This doc tracks…

moona3k/macparakeet · 0 tokens

flow-verifier

Runs the VZT Flow end-to-end verification ladder (build, tests, TTS-transcribe checks, clean-test latency, paste-test, daemon socket checks, overlay states) and reports real measured numbers — never estimates. Use before claiming a change works, before a release, or when asked to verify VZT Flow.

vonzelle-vzt/vzt-flow · 68 tokens

flow-feature-builder

Implements VZT Flow features observing this repo's boundaries — additive edits, the gotcha list from CLAUDE.md, pull-rebase discipline in a shared worktree, never touching the user's running daily-driver app without relaunching it. Use for routine feature/bugfix work in this repo.

vonzelle-vzt/vzt-flow · 65 tokens

triage-labels

The skills speak in terms of five canonical triage roles. This file maps those roles to the actual label strings used in this repo's issue tracker.

michaelwilhelmsen/humla · 0 tokens

ai-systems-architect

Use as the cross-cutting AI/systems DESIGN authority to decide WHERE a seam goes across the Rust core, Angular FE, and brain — provider/model abstraction, agentic tool-use loop bounds, tool/ACI design, the egress-consent-redaction-ledger firewall, routing, context assembly, a new ingest source or consumption surface.…

murmur-io/murmur · 225 tokens