skilly AGENTS.md

A set of project instructions for agents working on the xelandernt/skilly codebase. It explains how to plan changes, preserve compatibility, and handle filesystems and command-line use safely.

In plain words
What is it for?
Use it when modifying the project's Rust core, command-line interface, Python API, filesystem support, or external SkillsMP and GitHub boundaries.
Why use it?
It gives the coding agent rules for avoiding assumptions, unnecessary code, breaking public interfaces, unsafe file handling, and failures in non-interactive environments.

Instructions file for CodexOpenCode

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.

agentmods
npx agentmods add instructions/xelandernt/skilly/agents-md
Clone the repo
git clone --depth 1 https://github.com/xelandernt/skilly

Made for: Codex, OpenCode.

Per session 1,439 This file is loaded in full into every session.
When invoked 1,439 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01439 $0.01439
Opus 5 $0.00720 $0.00720
Sonnet 5 $0.00288 $0.00288
Haiku 4.5 $0.00144 $0.00144

Measured 2d ago against content hash 9bd296d2ae5f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

skilly AGENTS.md 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 2d 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.md · 142 lines

How it starts

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

AGENTS.md

1. Think Before Coding

Don't assume. Don't hide confusion. Surface tradeoffs.

Before implementing:

  • Identify the affected contract first: Rust core, CLI, Python API, custom filesystem protocol, or external SkillsMP/GitHub boundary.
  • Treat the Agent Skills specification as authoritative for SKILL.md fields, names, resources, and validation rules.
  • State whether a public API change is breaking. Preserve compatibility unless the user explicitly allows breaking changes; when breaking changes are allowed, remove the old surface instead of maintaining parallel APIs.
  • Confirm whether a CLI path must support both interactive terminals and non-interactive automation. Never assume a TTY is available.
  • For filesystem work, reason about native and custom filesystems, path traversal, partial writes, stale resources, and rollback before coding.
  • If behavior could live in Rust or Python, default to Rust core logic with a thin Python binding. Explain any exception.
  • If multiple interpretations remain, present them and ask rather than choosing silently.

2. Simplicity First

Minimum code that solves the problem. Nothing speculative.

  • Implement domain behavior once in src/core.rs. Native filesystem entry points and Python/custom-filesystem entry points should delegate to the same generic implementation.
  • Keep src/lib.rs as a binding layer, src/skilly/_bridge.py as a typed adapter, and src/skilly/repository.py as orchestration. Do not duplicate parsing, matching, scanning, installation, or update logic across layers.
  • Prefer one obvious public interface. Do not add response wrappers, aliases, convenience utilities, or configuration paths that duplicate an existing capability.
  • Use SkillRepository for stateful workflows and focused discovery functions for stateless reads.
  • Keep CLI flows small: shared destination resolution, shared core operations, explicit TTY/non-TTY branches, and no terminal UI when plain output is enough.
  • Do not add abstractions for a single use or options without a demonstrated caller.

Read the full file on GitHub · 142 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. 2d ago First seen · 142 lines · 1,439 tokens per session scan A 9bd296d2ae5f

Subscribe to this mod's changes

skilly AGENTS.md is an instructions file published in the GitHub repository xelandernt/skilly (2 stars, last pushed 22d ago), licensed MIT. It adds 1,439 tokens to every session, about $0.0072 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.