artifact-templates

artifact-templates is a skill for Claude Code from rp1-run/rp1. It costs 27 tokens per session (2,711 once invoked), scanned A, original, Apache-2.0.

A collection of templates for producing structured Markdown files called rp1 artifacts. Each template defines the format, metadata, file location, and any required registration step.

In plain words
What is it for?
Use it when an agent creates rp1 artifacts such as reports or build documents.
Why use it?
It removes the need to remember the correct format and destination for each artifact, reducing inconsistent or misplaced documents.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the rp1-base plugin — 20 skills, 17 agents, 1 hook shipped together

Good fit Use it when an agent creates rp1 artifacts such as reports or build documents.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rp1-run/rp1/artifact-templates
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.

Any agent
npx skills add rp1-run/rp1 --skill artifact-templates
Clone the repo
git clone --depth 1 https://github.com/rp1-run/rp1

Made for: Claude Code.

Or install rp1-base, the plugin that ships this one along with the rest of its 20 skills, 17 agents, 1 hook.

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 artifact-templates

README.md
[![agentmods](https://agentmods.dev/badge/skills/rp1-run/rp1/artifact-templates/github.svg)](https://agentmods.dev/skills/rp1-run/rp1/artifact-templates)
Your own site
<a href="https://agentmods.dev/skills/rp1-run/rp1/artifact-templates"><img src="https://agentmods.dev/badge/skills/rp1-run/rp1/artifact-templates/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 artifact-templates

Your own site · 80×15
<a href="https://agentmods.dev/skills/rp1-run/rp1/artifact-templates"><img src="https://agentmods.dev/badge/skills/rp1-run/rp1/artifact-templates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,711 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.00027 $0.02711
Opus 5 $0.00014 $0.01355
Sonnet 5 $0.00005 $0.00542
Haiku 4.5 $0.00003 $0.00271

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

Security

Grade A, and why

artifact-templates 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 11d 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.

plugins/base/skills/artifact-templates/SKILL.md · 156 lines

How it starts

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

Artifact Templates

Centralized output templates for all rp1 artifact types. Agents read templates to produce correctly formatted, correctly routed artifacts.

Usage

  1. Read this SKILL.md to find the template for your artifact type in the index below.
  2. Read the template file at the listed path (relative to this skill directory).
  3. Fill placeholders ({FEATURE_ID}, {Date}, [bracketed text]) with actual values.
  4. Write the artifact to the location specified by scope + path_pattern.
  5. If the template includes emit_hint, the producer MUST register the artifact after writing it.

Templates contain YAML frontmatter with routing metadata and a markdown body with the artifact format. Section-level templates (type: section) are appended to existing files, not written as standalone documents.

Active /build artifacts are producer-owned: the agent that writes the artifact registers that exact path with explicit storageRoot. Do not recover active build artifacts by directory scan. Do not generate or register legacy tracker.md or milestone-*.md artifacts for new work.

Template Index

Producer Artifact Type Scope Path Pattern Template Path
feature-requirement-gatherer requirements.md document workRoot features/{FEATURE_ID}/requirements.md templates/feature-requirement-gatherer/requirements.md
feature-architect design.md document workRoot features/{FEATURE_ID}/design.md templates/feature-architect/design.md
feature-architect design-decisions.md document workRoot features/{FEATURE_ID}/design-decisions.md templates/feature-architect/design-decisions.md
feature-tasker tasks.md document workRoot features/{FEATURE_ID}/tasks.md templates/feature-tasker/tasks.md
feature-tasker tasks.json data workRoot features/{FEATURE_ID}/tasks.json templates/feature-tasker/tasks.json
feature-verifier verification-report.md document workRoot features/{FEATURE_ID}/feature_verification_{N}.md templates/feature-verifier/verification-report.md
build-verify-aggregator build-readiness.md document workRoot features/{FEATURE_ID}/build-readiness.md templates/build-verify-aggregator/build-readiness.md
feature-editor edit-marker section workRoot features/{FEATURE_ID}/requirements.md (append) templates/_sections/edit-marker.md
hypothesis-tester hypothesis-document.md document workRoot features/{FEATURE_ID}/hypotheses.md templates/hypothesis-tester/hypothesis-document.md
hypothesis-tester hypothesis-document-adhoc.md document workRoot hypotheses/{YYYY-MM-DD}-{SLUG}[-{N}].md templates/hypothesis-tester/hypothesis-document-adhoc.md
research-reporter research-report.md document workRoot research/{YYYY-MM-DD}-{TOPIC_SLUG}.md templates/research-reporter/research-report.md
project-documenter birds-eye-view.md document workRoot birds-eye/{YYYY-MM-DD}-{PROJECT_SLUG}.md templates/project-documenter/birds-eye-view.md
security-validator security-report.md document workRoot security/{REPORT_ID}/report.md templates/security-validator/security-report.md
pr-review-reporter pr-review-report.md document workRoot pr-reviews/{REVIEW_ID}-review-{NNN}.md templates/pr-review-reporter/pr-review-report.md
pr-walkthrough-reporter pr-walkthrough.md document workRoot pr-walkthroughs/{REVIEW_ID}-walkthrough-{NNN}.md templates/pr-walkthrough-reporter/pr-walkthrough.md
pr-feedback-collector pr-feedback-tasks.md document workRoot pr-reviews/{IDENTIFIER}-feedback-{NNN}.md templates/pr-feedback-collector/pr-feedback-tasks.md
code-auditor audit-report.md document workRoot audits/{SCOPE}/report.md templates/code-auditor/audit-report.md
bug-investigator investigation-report.md document workRoot investigations/{BUG_ID}/report.md templates/bug-investigator/investigation-report.md
build-fast-planner quick-build.md document workRoot quick-builds/{ID}/quick-build.md templates/build-fast-planner/quick-build.md
socratic-duel managed-debate-region section absolute {TARGET_PATH} (managed region) templates/socratic-duel/managed-debate-region.md
socratic-duel debate-artifact.md document workRoot debates/{YYYY-MM-DD}-{TOPIC_SLUG}{UNIQUE_SUFFIX}.md templates/socratic-duel/debate-artifact.md
phase-planner phase-plan.md document workRoot {PHASE_PLAN_DIR}/{PHASE_PLAN_FILENAME} templates/phase-planner/phase-plan.md
blueprint-wizard prd.md document workRoot prds/{PRD_NAME}.md templates/blueprint-wizard/prd.md
blueprint-auditor prd-audit-results.md document workRoot prds/{PRD_NAME}-audit.md templates/blueprint-auditor/prd-audit-results.md
prd-archiver closure-summary.md document workRoot archives/prds/{PRD_NAME}/closure-summary.md templates/prd-archiver/closure-summary.md
charter-interviewer charter.md document kbRoot charter.md templates/charter-interviewer/charter.md
speedrun session-log.md document workRoot speedrun/{SESSION_ID}/log.md templates/speedrun/session-log.md
task-builder implementation-summary section workRoot features/{FEATURE_ID}/tasks.md (append) templates/_sections/implementation-summary.md
task-reviewer verification section workRoot features/{FEATURE_ID}/tasks.md (append) templates/_sections/verification.md
knowledge-base index.md document kbRoot index.md templates/knowledge-base/single-project/index.md
knowledge-base concept_map.md document kbRoot concept_map.md templates/knowledge-base/single-project/concept_map.md
knowledge-base architecture.md document kbRoot architecture.md templates/knowledge-base/single-project/architecture.md
knowledge-base interaction-model.md document kbRoot interaction-model.md templates/knowledge-base/single-project/interaction-model.md
knowledge-base modules.md document kbRoot modules.md templates/knowledge-base/single-project/modules.md
knowledge-base patterns.md document kbRoot patterns.md templates/knowledge-base/single-project/patterns.md
knowledge-base features.md document kbRoot features.md templates/knowledge-base/single-project/features.md
knowledge-base index.md (monorepo) document kbRoot index.md templates/knowledge-base/monorepo/index.md
knowledge-base concept_map.md (monorepo) document kbRoot concept_map.md templates/knowledge-base/monorepo/concept_map.md
knowledge-base architecture.md (monorepo) document kbRoot architecture.md templates/knowledge-base/monorepo/architecture.md
knowledge-base interaction-model.md (monorepo) document kbRoot interaction-model.md templates/knowledge-base/monorepo/interaction-model.md
knowledge-base modules.md (monorepo) document kbRoot modules.md templates/knowledge-base/monorepo/modules.md
knowledge-base patterns.md (monorepo) document kbRoot patterns.md templates/knowledge-base/monorepo/patterns.md
knowledge-base dependencies.md (monorepo) document kbRoot dependencies.md templates/knowledge-base/monorepo/dependencies.md
knowledge-base technology-matrix.md (monorepo) document kbRoot technology-matrix.md templates/knowledge-base/monorepo/technology-matrix.md
knowledge-base features.md (monorepo) document kbRoot features.md templates/knowledge-base/monorepo/features.md
knowledge-base state.json data kbRoot state.json templates/knowledge-base/state.json
knowledge-base meta.json data kbRoot meta.json templates/knowledge-base/meta.json
note note.md document workRoot notes/{yyyy-mm-dd}-{title-slug}.md templates/note/note.md
prompt-eval-builder promptfoo-config document - (agent-determined) templates/prompt-eval-builder/promptfoo-config.yaml
tech-debt-collector report.md document workRoot features/tech-debt-collector/report.md templates/tech-debt-collector/report.md

Read the full file on GitHub · 156 lines

Files

What ships with it

52 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. 11d ago First seen · 156 lines · 27 tokens per session scan A 444c9026ee90

Subscribe to this mod's changes

artifact-templates is a skill published in the GitHub repository rp1-run/rp1 (38 stars, last pushed 3d ago), licensed Apache-2.0. It adds 27 tokens to every session and 2,711 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.

Related

Other skills, from other repositories

skill-curator

A Chinese-language evaluator for deciding whether developer tools and agent resources are suitable for a curated collection. It checks real repositories, installation paths, activity, duplicates, and security boundaries using evidence.

laolaoshiren/claude-code-skills-zh · 75 tokens

git-workflow

A guide for handling Git repository work safely, including status checks, branches, commits, pushes, pull requests, and rebasing. Git is a version-control system that records code changes and coordinates work between developers.

laolaoshiren/claude-code-skills-zh · 73 tokens

i18n-helper

A helper for adding internationalization, which lets software show different languages and regional text. It finds user-visible text written directly in code and moves it into language files.

laolaoshiren/claude-code-skills-zh · 33 tokens

brainstorm

Explore ambiguous or early-stage ideas interactively — tracks wish-readiness and crystallizes into a design for wish.

automagik-dev/genie · 25 tokens

refactor-advisor

A code review helper that finds common design and maintenance problems in a codebase and suggests ways to restructure the code.

laolaoshiren/claude-code-skills-zh · 22 tokens

acceptance-test-authoring

Use when creating or modifying acceptance tests, configuring cucumber-js or behave runners, writing or refactoring step definitions, linting executable Gherkin specs, choosing an acceptance stack, or implementing OpenSpec tasks that involve acceptance tests.

intent-driven-dev/intent-driven-template · 51 tokens