minicode_contributing

minicode_contributing is a skill for Claude Code, Codex from WalterSumbon/minicode-sdk. It costs 42 tokens per session (773 once invoked), scanned A, original, MIT.

A contribution guide for the minicode-sdk, a software development kit for building AI agents and connecting them to tools and services. It describes the project layout and development areas such as agents, tests, sessions, and integrations.

In plain words
What is it for?
Use it when adding features, fixing bugs, improving documentation, or otherwise contributing code to minicode-sdk.
Why use it?
It gives contributors the project-specific context needed to make changes without first working out how the repository is organised. The input does not describe automated actions beyond providing this guidance.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it when adding features, fixing bugs, improving documentation, or otherwise contributing…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/waltersumbon/minicode-sdk/minicode-contributing
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 WalterSumbon/minicode-sdk --skill minicode-contributing
Clone the repo
git clone --depth 1 https://github.com/WalterSumbon/minicode-sdk

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 minicode_contributing

README.md
[![agentmods](https://agentmods.dev/badge/skills/waltersumbon/minicode-sdk/minicode-contributing.svg)](https://agentmods.dev/skills/waltersumbon/minicode-sdk/minicode-contributing)
Your own site
<a href="https://agentmods.dev/skills/waltersumbon/minicode-sdk/minicode-contributing"><img src="https://agentmods.dev/badge/skills/waltersumbon/minicode-sdk/minicode-contributing.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 773 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.00042 $0.00773
Opus 5 $0.00021 $0.00387
Sonnet 5 $0.00008 $0.00155
Haiku 4.5 $0.00004 $0.00077

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

Security

Grade A, and why

minicode_contributing 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.

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.

.minicode/skills/minicode-contributing/SKILL.md · 86 lines

How it starts

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

Contributing to minicode-sdk

Project Structure

minicode-sdk/
├── src/minicode/           # Main source code
│   ├── __init__.py         # Package exports
│   ├── agent.py            # Core Agent implementation
│   ├── config.py           # Global configuration (MCP, Agent Instructions)
│   ├── llm/                # LLM implementations
│   │   ├── base.py         # BaseLLM abstract class
│   │   └── openai.py       # OpenAI implementation
│   ├── tools/              # Tool system
│   │   ├── base.py         # BaseTool abstract class
│   │   ├── registry.py     # Tool registry
│   │   └── builtin/        # Built-in tools
│   ├── mcp/                # MCP integration
│   │   ├── client.py       # MCP client
│   │   └── transport.py    # Transport layer
│   ├── skills/             # Skills system
│   │   └── loader.py       # Skills loader
│   └── session/            # Session management
│       ├── message.py      # Message types
│       ├── session.py      # Session class
│       ├── manager.py      # Session manager
│       └── prompt.py       # Prompt management
├── tests/                  # Test suite
├── examples/               # Example scripts
├── .minicode/              # Project configuration
│   ├── mcp.json            # MCP server config
│   ├── AGENT.md            # Agent instructions
│   └── skills/             # Project skills
└── docs/                   # Documentation

Configuration Files

The .minicode/ directory contains project-level configurations:

  • mcp.json - MCP server configurations
  • AGENT.md - Agent behavior instructions
  • skills/ - Custom skills for the project

Code Style Guidelines

  1. Docstrings: Use Google-style docstrings for all public functions and classes
  2. Type hints: All function parameters and return values must have type annotations
  3. Comments: Use English for code comments
  4. Imports: Group imports in order: standard library, third-party, local

Adding New Features

Adding a New Tool

Read the full file on GitHub · 86 lines

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 · 86 lines · 42 tokens per session scan A e11df1b80239

Subscribe to this mod's changes

minicode_contributing is a skill published in the GitHub repository WalterSumbon/minicode-sdk (2 stars, last pushed 7mo ago), licensed MIT. It adds 42 tokens to every session and 773 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

fastapi

Use when building, reviewing, testing, securing or shipping a FastAPI / async Python service — routers, Pydantic v2 schemas, dependency injection, async SQLAlchemy 2.0, OAuth2/JWT, ASGITransport tests, production wiring. NOT language-level Python or packaging (that is python), NOT engine-level SQL (that is…

ericrisco/rsc-harness · 94 tokens

csharp-dotnet

Use when writing, reviewing, testing, or shipping C# / .NET code — ASP.NET Core APIs (minimal APIs vs controllers), EF Core data access, async correctness, solution layout in .cs/.csproj/.sln. NOT a Java/Spring backend (that is spring-boot), NOT a Node/TypeScript backend (that is nestjs), NOT framework-neutral REST…

ericrisco/rsc-harness · 89 tokens

nodejs

Use when building or operating a plain Node.js / Express 5 backend service: project layout, async correctness, central error middleware, fail-fast config, graceful shutdown on SIGTERM. NOT DI modules/providers/guards (that is nestjs), NOT the type system or tsconfig (that is typescript), NOT REST contract design (that…

ericrisco/rsc-harness · 77 tokens

python

Use when the task is Python itself, in any framework or none: PEP 695 generics, mypy --strict typing, dataclass/Protocol/TypedDict/Enum choices, asyncio.TaskGroup, stdlib idioms, src/ layout + pyproject.toml with uv, ruff+mypy+pytest gate. NOT a FastAPI/ASGI service (that is fastapi), NOT a deep pytest suite (that is…

ericrisco/rsc-harness · 94 tokens

ouroboros-run

Execute a Seed specification through the workflow engine.

Q00/ouroboros · 13 tokens

auto

Automatically converge from goal to A-grade Seed and execute it.

Q00/ouroboros · 13 tokens