agentweaver: Skill for Claude Code

.copilot/skills/agentweaver-issue-status/SKILL.md

agentweaver-issue-status is a skill for Claude Code, Codex from sabbour/agentweaver. It costs 129 tokens per session (1,312 once invoked), scanned A, original, MIT.

A live status board for Agentweaver GitHub issues, showing assignments, pipeline stage, commits, pull requests, deployment, and documentation state. GitHub issues track work, while a pull request proposes code changes for merging.

In plain words
What is it for?
Collecting issue records, matching issues to commits and pull requests, checking deployment and documentation status, and reporting the full delivery lifecycle.
Why use it?
It replaces scattered checks across issues, commits, pull requests, deployments, and documentation with one progress view.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is sabbour/agentweaver's own configuration. It tells Claude Code and Codex how to work on agentweaver itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agentweaver configures →

Reuse

Borrowing it

Nothing to install: this file belongs to sabbour/agentweaver. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/sabbour/agentweaver/dev/.copilot/skills/agentweaver-issue-status/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/sabbour/agentweaver

Made for: Claude Code, Codex.

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 agentweaver-issue-status

README.md
[![agentmods](https://agentmods.dev/badge/skills/sabbour/agentweaver/agentweaver-issue-status.svg)](https://agentmods.dev/skills/sabbour/agentweaver/agentweaver-issue-status)
Your own site
<a href="https://agentmods.dev/skills/sabbour/agentweaver/agentweaver-issue-status"><img src="https://agentmods.dev/badge/skills/sabbour/agentweaver/agentweaver-issue-status.svg" alt="Measured on agentmods" height="20"></a>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,312 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00129 $0.01312
Opus 5 $0.00064 $0.00656
Sonnet 5 $0.00026 $0.00262
Haiku 4.5 $0.00013 $0.00131

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

Security

Grade A, and why

agentweaver-issue-status 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 6d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/collect.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.

.copilot/skills/agentweaver-issue-status/SKILL.md · 108 lines

How it starts

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

Issue Status Board

You are producing a pipeline status table for GitHub issues in this repo. The goal is to give the user an at-a-glance view of where each issue stands across the full lifecycle: filed → committed → merged → deployed → documented.

Run the bundled script to collect all data, then render the table.

Step 1 — Run the data collection script

python .copilot/skills/agentweaver-issue-status/scripts/collect.py \
  --repo sabbour/agentweaver \
  [--filter bugs|features|chores|open|closed|all] \
  [--squad trinity|tank|smith|morpheus|link|seraph]

The script outputs a JSON array of issue records. Each record has:

  • number, title, agents (list of squad member names), status
  • commit (SHA of the commit mentioning this issue, or null)
  • deployed (true/false/null — null means unknown)
  • docs (true/false/null — true if docs were updated, false if needed, null if N/A)
  • pr_number, pr_state (open/merged/null)

If the script isn't available or fails, collect the data manually:

  1. gh issue list --state all --limit 30 --json number,title,labels,state
  2. git log --oneline -50 — scan for #N references to find commits
  3. gh pr list --state all --json number,title,state,mergedAt,headRefName — find PRs per issue
  4. Check the live deployment's image tag and provenance with the current Node.js toolchain (scripts/azure/variables.mjs, scripts/azure/provision-infra.mjs) or the cluster's workload metadata. Do not use the removed scripts/aks/ shell scripts. Resolve the deployed tag to its Git ref, then run git log {deployed_sha}..HEAD --oneline — issues whose commits appear here are not yet deployed.

Step 2 — Determine status for each issue

Use this decision tree:

Condition Status label Emoji
Issue closed, merge commit found {short_sha}
Issue closed, no commit found closed
Issue open, PR merged to main merged
Issue open, PR open in review 🔄
Issue open, commit on branch (no PR yet) implementing 🔄
Issue open, squad:smith is sole assignee RCA in progress 🔍
Issue open, go:needs-research label needs research 🔍
Issue open, go:yes, no activity backlog 📋
Issue open, go:no on hold ⏸️

Read the full file on GitHub · 108 lines

Files

What ships with it

1 file 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. 6d ago First seen · 108 lines · 129 tokens per session scan A be9de9f4cdf0

Subscribe to this mod's changes

agentweaver-issue-status is a skill published in the GitHub repository sabbour/agentweaver (5 stars, last pushed yesterday), licensed MIT. It adds 129 tokens to every session and 1,312 once invoked, about $0.0006 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-31.