Borrowing it
Nothing to install: this file belongs to ravikant1918/sharepoint-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ravikant1918/sharepoint-mcp/main/.agents/skills/minimal-code-writer/SKILL.mdgit clone --depth 1 https://github.com/ravikant1918/sharepoint-mcpWrote 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.
[](https://agentmods.dev/skills/ravikant1918/sharepoint-mcp/minimal-code-writer)<a href="https://agentmods.dev/skills/ravikant1918/sharepoint-mcp/minimal-code-writer"><img src="https://agentmods.dev/badge/skills/ravikant1918/sharepoint-mcp/minimal-code-writer/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.
<a href="https://agentmods.dev/skills/ravikant1918/sharepoint-mcp/minimal-code-writer"><img src="https://agentmods.dev/badge/skills/ravikant1918/sharepoint-mcp/minimal-code-writer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00514 |
| Opus 5 | $0.00000 | $0.00257 |
| Sonnet 5 | $0.00000 | $0.00103 |
| Haiku 4.5 | $0.00000 | $0.00051 |
Grade A, and why
minimal-code-writer 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.
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.
What it actually says
Minimal Code Writer — 'Do Not Copy' Minimal Implementation Skill
Purpose
- Produce small, original, well-structured code that implements required behavior without copying large blocks from external sources.
- Enforce a minimal, standard project layout and coding guidelines so new code is easy to review and integrate.
When to use
- When asked to implement a new feature, helper, tool, or to refactor a small module.
- When asked to scaffold a minimal runnable example (CLI, microservice handler, library module).
Principles
- Do not copy-paste large external code. It's acceptable to read documentation and translate ideas into original code.
- Keep changes minimal and focused: change only what's necessary to implement the feature or fix the bug.
- Prefer clarity over cleverness. Use descriptive names and small functions.
- Make code testable: inject dependencies, avoid hidden global state, and keep I/O at the edges.
- Follow repository style and existing patterns whenever reasonable.
Standard directory layout (Python)
src/<package>/
__init__.py
module.py
helpers/
__init__.py
utils.py
tests/
conftest.py
test_module.py
pyproject.toml
README.md
Implementation approach
- Start with a one-paragraph plan: responsibilities, inputs, outputs, edge cases.
- Create the minimal module implementing clean public functions / classes with docstrings.
- Add small unit tests exercising the behavior (happy path + 1-2 edge cases).
- Avoid adding heavy dependencies; prefer stdlib unless justified.
Testing & validation
- Provide tests under
tests/that run withpytest. - Mock external calls where needed; keep tests isolated and fast.
Documentation
- Add a short README or module docstring describing usage and exported symbols.
Code style & safety
- Type hints for public functions.
- Short functions (ideally <40 LOC).
- No inline credential or secrets handling; read from environment via a Settings object.
Example deliverable when asked for minimal feature
- New file:
src/<package>/feature.pywith 40–120 lines implementing behavior. - Tests:
tests/test_feature.pywith 3–6 focused tests. - Update
tests/conftest.pyonly if a reusable fixture is required. - Short run instructions in a README bullet.
License / attribution
- If referencing a public algorithm, include a one-line attribution comment and prefer to reimplement in own words rather than copy.
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.
- 8d ago First seen · 69 lines · 0 tokens per session scan A d23655aebfdc
minimal-code-writer is a skill published in the GitHub repository ravikant1918/sharepoint-mcp (12 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 514 tokens. 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 skills, from other repositories
matlab
Build, review, migrate, and safely plan MATLAB or GNU Octave numerical workflows, including arrays, tabular/time data, tests, projects, graphics, MAT files, and explicit Python interoperability.
pennylane
Hardware-agnostic quantum ML framework with automatic differentiation. Use when training quantum circuits via gradients, building hybrid quantum-classical models, or needing device portability across IBM/Google/Rigetti/IonQ. Best for variational algorithms (VQE, QAOA), quantum neural networks, and integration with…
dd-code-generation
Use pup CLI for immediate Datadog operations or generate code for integration into applications.
rocm-kernels
Provides guidance for writing and benchmarking optimized Triton kernels for AMD GPUs (MI355X, R9700) on ROCm, targeting HuggingFace diffusers (LTX-Video, SD3, FLUX) and transformers. Core kernels: RMSNorm, RoPE 3D, GEGLU, AdaLN. Includes XCD swizzle, autotune, diffusers integration patterns, and LTX-Video pipeline…
holoscan-install-wheel
Install Holoscan SDK Python wheel via pip into a venv. Use for Python installs; not for native C++/apt or Conda installs.
typing-exclusion-worker
Python typing exclusion worker: remove assigned mypy exclusion modules in small scoped batches, fix typing issues, run validation, and produce a structured completion summary. Use when running parallel typing-debt workers or when asked to remove modules from pyproject mypy exclusion overrides.