dismech: Skill for Claude Code

.claude/skills/projman/SKILL.md

projman is a skill for Claude Code, Codex from monarch-initiative/dismech. It costs 85 tokens per session (1,375 once invoked), scanned A, original, BSD-3-Clause.

A project-management guide for Markdown-based projects stored in a projects folder, with optional synchronization to GitHub Projects. Markdown files remain the main source of truth.

In plain words
What is it for?
Use it to create and review project files, manage checkbox-based work, synchronize status with GitHub Projects, and record dated session notes.
Why use it?
It provides a consistent way to track work, choose the next unfinished item, and update project status without relying on memory.

Skill for Claude CodeCodex

Written for Claude Code and Codex: installed under .claude/, but also agents/openai.yaml present.

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

Reuse

Borrowing it

Nothing to install: this file belongs to monarch-initiative/dismech. 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/monarch-initiative/dismech/main/.claude/skills/projman/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/monarch-initiative/dismech

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 projman

README.md
[![agentmods](https://agentmods.dev/badge/skills/monarch-initiative/dismech/projman.svg)](https://agentmods.dev/skills/monarch-initiative/dismech/projman)
Your own site
<a href="https://agentmods.dev/skills/monarch-initiative/dismech/projman"><img src="https://agentmods.dev/badge/skills/monarch-initiative/dismech/projman.svg" alt="Measured on agentmods" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,375 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00085 $0.01375
Opus 5 $0.00043 $0.00687
Sonnet 5 $0.00017 $0.00275
Haiku 4.5 $0.00009 $0.00137

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

Security

Grade A, and why

projman 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 8d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/sync_epic.py, scripts/sync_to_gh_project.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.

.claude/skills/projman/SKILL.md · 208 lines

How it starts

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

Project Management (projman)

Overview

Manage markdown-based project files in projects/ with optional sync to GitHub Projects. Markdown files are the source of truth; GitHub Projects provides visibility/collaboration.

Project File Structure

Projects live in projects/ as either:

  • PROJECT_NAME.md - single file project
  • PROJECT_NAME/ - folder with multiple materials

Standard Sections

# Project Title

## Overview
[Project description, goals, selection criteria]

## Items to Process
| Item | Field1 | Field2 | Status |
|------|--------|--------|--------|
| Item A | value | value | [ ] |
| Item B | value | value | [x] |

---
# STATUS
## Tier/Category 1 (N/M) ✓
- [x] Completed item - Date, notes
- [ ] Pending item

## Tier/Category 2 (N/M)
- [ ] Item

# NOTES
## YYYY-MM-DD
[Session notes - add new entries at top]

Core Workflows

1. View Project Status

# List all projects
ls projects/

# Quick status - count checkboxes
grep -c "^\- \[x\]" projects/CANCER.md    # completed
grep -c "^\- \[ \]" projects/CANCER.md    # pending

2. Pick Up Next Item

Read project file → find first unchecked item in priority order → work on it.

# Parse checkboxes from markdown
import re
with open("projects/CANCER.md") as f:
    content = f.read()
# Find unchecked items: - [ ] Item name
pending = re.findall(r'- \[ \] (.+)', content)
next_item = pending[0] if pending else None

3. Update Status After Work

After completing an item:

  1. Change - [ ] to - [x]
  2. Add date/compliance info: - [x] Item Name - Created 2026-01-30, 55% compliance
  3. Add session notes under # NOTES with today's date

4. Add Session Notes

Always add notes incrementally:

# NOTES

## 2026-01-30
[Today's work - add at TOP]
- Completed X, Y, Z
- Key findings: ...

## 2026-01-29
[Previous session - don't edit unless continuing]

Get today's date: date +%Y-%m-%d

GitHub Project Sync

Setup (One-Time)

# Check auth has project scope
gh auth status  # should show 'project' in scopes

# If missing:
gh auth refresh -s project

# Create a new GitHub Project for a markdown project
gh project create --owner @me --title "dismech: CANCER Curation"
# Note the project number returned (e.g., 4)

Read the full file on GitHub · 208 lines

Files

What ships with it

4 files 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. 8d ago First seen · 208 lines · 85 tokens per session scan A c093fe4354a8

Subscribe to this mod's changes

projman is a skill published in the GitHub repository monarch-initiative/dismech (58 stars, last pushed today), licensed BSD-3-Clause. It adds 85 tokens to every session and 1,375 once invoked, about $0.0004 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-30.