chronicle-mcp: Skill for Claude Code

.agents/skills/gitpublish-prd-and-tickets/SKILL.md

gitpublish-prd-and-tickets is a skill for Claude Code, Codex from loerei/chronicle-mcp. It costs 29 tokens per session (976 once invoked), scanned A, original, MIT.

A publishing and synchronization tool for turning local product-requirement documents and ticket files into GitHub Issues. GitHub Issues are trackable work items; a PRD is a document describing a product and its requirements.

In plain words
What is it for?
Use it to publish or update PRDs and their tickets, preserve dependencies between tickets, link parent requirements, and synchronize multiple PRDs with GitHub Issues.
Why use it?
It keeps local specification files unchanged while mapping their relationships, links, labels, updates, splits, and removals to GitHub. It also avoids duplicate issues when synchronizing existing work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is loerei/chronicle-mcp's own configuration. It tells Claude Code and Codex how to work on chronicle-mcp 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 chronicle-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to loerei/chronicle-mcp. 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/loerei/chronicle-mcp/main/.agents/skills/gitpublish-prd-and-tickets/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/loerei/chronicle-mcp

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 gitpublish-prd-and-tickets

README.md
[![agentmods](https://agentmods.dev/badge/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets/github.svg)](https://agentmods.dev/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets)
Your own site
<a href="https://agentmods.dev/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets"><img src="https://agentmods.dev/badge/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for gitpublish-prd-and-tickets

Your own site · 80×15
<a href="https://agentmods.dev/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets"><img src="https://agentmods.dev/badge/skills/loerei/chronicle-mcp/gitpublish-prd-and-tickets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 29 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 976 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.00029 $0.00976
Opus 5 $0.00015 $0.00488
Sonnet 5 $0.00006 $0.00195
Haiku 4.5 $0.00003 $0.00098

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

Security

Grade A, and why

gitpublish-prd-and-tickets 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/publish-epic.js), 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.

.agents/skills/gitpublish-prd-and-tickets/SKILL.md · 65 lines

How it starts

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

GitPublish PRD and Tickets

Publish or synchronize a local PRD and its constituent ticket markdown files to GitHub Issues with parallel batch concurrency. Resolves semantic keys (01.1.1.1, 02.1), maps dependencies across both intra-PRD and cross-PRD references, updates parent PRD links, attaches standardized taxonomy labels, and handles in-place updates, splits, and deletions with zero duplicates.

Core Directives

  1. Source Purity & Zero Disk Mutation (SSOT Preservation):
    • Local files under docs/specs/ (PRD.md and tickets/*.md) MUST remain 100% pure semantic files and NEVER be modified on disk by the publish script.
    • All transformations (01.1 $\to$ #138 (01.1), parent references) are compiled ephemerally in memory / OS tempdir exclusively for GitHub API upload.
    • Reviewers in /conduct-deep-reviewing-loop continue to work with clean semantic keys without mutable GitHub issue IDs pollution.
  2. High-Performance Parallel Execution: Runs in-place ticket updates and non-dependent ticket creations concurrently using an internal worker pool (--concurrency <N>, default: 6).
  3. Batch Multi-Epic Synchronization: Supports --all flag to discover, pre-scan, and synchronize all Epics under docs/specs/ in a single command.
  4. Idempotent Reconciliation:
    • Matching Key (01.1 $\to$ 01.1): Executes in-place update (gh issue edit) on the existing GitHub issue without creating duplicates.
    • New Key (Split child 01.1.1 or added 05.2): Creates a new issue (gh issue create).
    • Orphaned Key (Old 01.1 removed or split): Automatically closes the stale remote issue with reason not planned and closing comment (gh issue close --reason "not planned" --comment "...").
  5. Topological Publishing: Publishes tickets in topological order so that prerequisite tickets receive GitHub issue IDs before dependent tickets.
  6. Standardized Taxonomy Auto-Labels:
    • Parent PRD: epic, epic-<num> (e.g. epic,epic-02)
    • Child Tickets: ticket, epic-<num> (e.g. ticket,epic-02)

Read the full file on GitHub · 65 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 · 65 lines · 29 tokens per session scan A 2030d68422db

Subscribe to this mod's changes

gitpublish-prd-and-tickets is a skill published in the GitHub repository loerei/chronicle-mcp (0 stars, last pushed 6d ago), licensed MIT. It adds 29 tokens to every session and 976 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-05.