sharepoint-mcp: Skill for Claude Code

.agents/skills/minimal-code-writer/SKILL.md

minimal-code-writer is a skill for Claude Code, Codex from ravikant1918/sharepoint-mcp. It costs 0 tokens per session (514 once invoked), scanned A, original, MIT.

A set of rules for writing small, original, readable code and keeping changes focused. It includes a basic project layout for Python modules and tests.

In plain words
What is it for?
Use it when implementing a feature, helper, command-line tool, small service handler, library module, refactor, or minimal runnable example.
Why use it?
It helps prevent unnecessary rewrites, copied code, hidden dependencies, and difficult-to-test functions. The guidance makes small changes easier to review and fit into an existing project.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is ravikant1918/sharepoint-mcp's own configuration. It tells Claude Code and Codex how to work on sharepoint-mcp 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 sharepoint-mcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/ravikant1918/sharepoint-mcp/main/.agents/skills/minimal-code-writer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ravikant1918/sharepoint-mcp

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 minimal-code-writer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ravikant1918/sharepoint-mcp/minimal-code-writer/github.svg)](https://agentmods.dev/skills/ravikant1918/sharepoint-mcp/minimal-code-writer)
Your own site
<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.

agentmods 80×15 button for minimal-code-writer

Your own site · 80×15
<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>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 514 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.00000 $0.00514
Opus 5 $0.00000 $0.00257
Sonnet 5 $0.00000 $0.00103
Haiku 4.5 $0.00000 $0.00051

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

Security

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.

.agents/skills/minimal-code-writer/SKILL.md · 69 lines

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

  1. Do not copy-paste large external code. It's acceptable to read documentation and translate ideas into original code.
  2. Keep changes minimal and focused: change only what's necessary to implement the feature or fix the bug.
  3. Prefer clarity over cleverness. Use descriptive names and small functions.
  4. Make code testable: inject dependencies, avoid hidden global state, and keep I/O at the edges.
  5. 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 with pytest.
  • 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.py with 40–120 lines implementing behavior.
  • Tests: tests/test_feature.py with 3–6 focused tests.
  • Update tests/conftest.py only 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.
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. 8d ago First seen · 69 lines · 0 tokens per session scan A d23655aebfdc

Subscribe to this mod's changes

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.

Related

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.

K-Dense-AI/scientific-agent-skills · 42 tokens

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…

K-Dense-AI/scientific-agent-skills · 98 tokens

dd-code-generation

Use pup CLI for immediate Datadog operations or generate code for integration into applications.

DataDog/pup · 16 tokens

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…

huggingface/kernels · 93 tokens

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.

NVIDIA/skills · 37 tokens

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.

getsentry/skills · 57 tokens