repoforge: Skill for Claude Code

.claude/skills/main/scenarios_real/SKILL.md

add-scenarios-real-endpoint is a skill for Claude Code from JNZader/repoforge. It costs 32 tokens per session (322 once invoked), scanned A, original, MIT.

A guide for adding scenario endpoints that retrieve backend modules for reports and authentication. A backend is the server-side part of an application.

In plain words
What is it for?
Use it when adding reporting or authentication functionality to the scenarios_real module, or when debugging backend-module retrieval.
Why use it?
It provides known ways to access these modules without tying the code to fixed module paths.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is JNZader/repoforge's own configuration. It tells Claude Code how to work on repoforge 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 repoforge configures →

Reuse

Borrowing it

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

Made for: Claude Code.

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 add-scenarios-real-endpoint

README.md
[![agentmods](https://agentmods.dev/badge/skills/jnzader/repoforge/scenarios_real/github.svg)](https://agentmods.dev/skills/jnzader/repoforge/scenarios_real)
Your own site
<a href="https://agentmods.dev/skills/jnzader/repoforge/scenarios_real"><img src="https://agentmods.dev/badge/skills/jnzader/repoforge/scenarios_real/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 add-scenarios-real-endpoint

Your own site · 80×15
<a href="https://agentmods.dev/skills/jnzader/repoforge/scenarios_real"><img src="https://agentmods.dev/badge/skills/jnzader/repoforge/scenarios_real.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 32 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 322 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.00032 $0.00322
Opus 5 $0.00016 $0.00161
Sonnet 5 $0.00006 $0.00064
Haiku 4.5 $0.00003 $0.00032

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

Security

Grade A, and why

add-scenarios-real-endpoint 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.

.claude/skills/main/scenarios_real/SKILL.md · 64 lines

What it actually says

Critical Patterns

Get Reports Backend Module

Use this function to retrieve the backend module for reports.

from eval.scenarios_real import get_reports_backend_module

reports_backend = get_reports_backend_module()

Get Auth Backend Module

Utilize this function to access the authentication backend module.

from eval.scenarios_real import get_auth_backend_module

auth_backend = get_auth_backend_module()

When to Use

  • When you need to implement reporting features in the scenarios_real module.
  • When integrating user authentication in the scenarios_real context.
  • To debug issues related to backend module retrieval.

Commands

python -m repoforge.cli skills
python -m repoforge.cli docs

Anti-Patterns

Don't: Hardcode Module Paths

Hardcoding paths can lead to maintenance issues and reduce code portability.

# BAD
from eval.scenarios_real import get_reports_backend_module as reports_backend
reports_backend = sys.path[0] + "/eval/scenarios_real/reports_backend"

Quick Reference

Task Pattern
Retrieve reports backend get_reports_backend_module()
Access auth backend get_auth_backend_module()
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 · 64 lines · 32 tokens per session scan A 4c45511cb870

Subscribe to this mod's changes

add-scenarios-real-endpoint is a skill published in the GitHub repository JNZader/repoforge (5 stars, last pushed 17d ago), licensed MIT. It adds 32 tokens to every session and 322 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

groq-inference

Ultra-fast LLM inference on custom LPU hardware. OpenAI-compatible API at api.groq.com. Lowest latency in the industry (500-1000+ tok/s). Supports chat completions, vision, audio (Whisper STT + TTS), tool calling, JSON mode, and streaming. Free tier available. Inference only — no training.

synthetic-sciences/openscience · 77 tokens

bun-file-io

Use this when you are working on file operations like reading, writing, scanning, or deleting files. It summarizes the preferred file APIs and patterns used in this repo. It also notes when to use filesystem helpers for directories.

synthetic-sciences/openscience · 49 tokens

protocolsio-integration

Integration with protocols.io API for managing scientific protocols. This skill should be used when working with protocols.io to search, create, update, or publish protocols; manage protocol steps and materials; handle discussions and comments; organize workspaces; upload and manage files; or integrate protocols.io…

synthetic-sciences/openscience · 85 tokens

opensrc

Fetch dependency source code to give AI agents deeper implementation context. Use when the agent needs to understand how a library works internally, read source code for a package, fetch implementation details for a dependency, or explore how an npm/PyPI/crates.io package is built. Triggers include "fetch source for"…

vercel-labs/opensrc · 103 tokens

knowledge-shared-api-and-runtime-schemas

Shared request and response definitions for the server and web app, with runtime checks for incoming data and cleaned JSON schemas for tools. TypeBox is the library used to describe these data shapes.

echoVic/blade-code · 149 tokens

arkcli-infer-endpoint

A manager for inference endpoints, the online addresses used to send requests to deployed AI models. It can work with endpoints created by the current SSO sub-user, which is a separately identified account user.

volcengine/ark-cli · 258 tokens