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.
npx agentmods add commands/giuseppe-trisciuoglio/developer-kit/devkit.github.create-prgit clone --depth 1 https://github.com/giuseppe-trisciuoglio/developer-kitWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00026 | $0.03150 |
| Opus 5 | $0.00013 | $0.01575 |
| Sonnet 5 | $0.00005 | $0.00630 |
| Haiku 4.5 | $0.00003 | $0.00315 |
Grade A, and why
devkit.github.create-pr 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.
How it starts
The opening of the file, as written. The whole thing — 540 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Create GitHub Pull Request
Overview
Creates a GitHub pull request with branch creation, commits, and detailed description. Use when you need to submit changes for review.
Usage
/devkit.github.create-pr $ARGUMENTS
Arguments
| Argument | Description |
|---|---|
$ARGUMENTS |
Combined arguments passed to the command |
Current Context
- Current Branch: !
git branch --show-current - Git Status: !
git status --porcelain - Remote Repository: !
git config --get remote.origin.url - Modified Files: !
git diff --name-only
Execution Instructions
Agent Selection: To execute this GitHub task, use the following approach:
- Primary: Use
general-purposeagent with GitHub CLI expertise and code analysis capabilities
Configuration
Arguments received: $ARGUMENTS
$1: PR title (optional - will be generated if not provided)
$2: Target branch (optional - defaults to main or master)
$3: Language for PR description (optional - defaults to en)
Supported languages: en, it, es, fr, de
Phase 1: Pre-Flight Validation
1.1 Check Working Directory
Verify git repository and working directory status:
# Verify git repository
if ! git rev-parse --git-dir > /dev/null 2>&1; then
echo "Error: Not a git repository"
exit 1
fi
# Check for uncommitted changes
if [ -z "$(git status --porcelain)" ]; then
echo "Error: No changes to commit"
exit 1
fi
# Verify remote repository exists
if ! git config --get remote.origin.url > /dev/null 2>&1; then
echo "Error: No remote repository configured"
exit 1
fi
# Check GitHub CLI authentication
if ! gh auth status > /dev/null 2>&1; then
echo "Error: GitHub CLI not authenticated. Run: gh auth login"
exit 1
fi
1.2 Determine Target Branch
# Detect default branch
TARGET_BRANCH="${2:-$(git remote show origin | grep 'HEAD branch' | cut -d' ' -f5)}"
if [ -z "$TARGET_BRANCH" ]; then
TARGET_BRANCH="main"
fi
echo "Target branch: $TARGET_BRANCH"
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.
- 2d ago First seen · 540 lines · 26 tokens per session scan A 36f33cc8fc08
devkit.github.create-pr is a command published in the GitHub repository giuseppe-trisciuoglio/developer-kit (337 stars, last pushed 15d ago), licensed MIT. It adds 26 tokens to every session and 3,150 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-08-30.
Other commands, from other repositories
commit
Create a local git commit for source skills without pushing.
commit
Create a git commit using the Haiku model.
demo-command
Example slash command that wraps the demo-skill. Showcases the command kind.
claude-cmd-status
A Claude Code slash command. OpenCode does not read Claude commands.
advisor
Get a second opinion from Codex (GPT-5) on your current plan, diff, or a specific question.
constatar-audit
Audit a constatar run — conformance, health trends, cost.