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.
npx agentmods add instructions/gotalab/skillport/agents-mdgit clone --depth 1 https://github.com/gotalab/skillportWhat 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 | $0.00813 | $0.00813 |
| Opus 5 | $0.00407 | $0.00407 |
| Sonnet 5 | $0.00163 | $0.00163 |
| Haiku 4.5 | $0.00081 | $0.00081 |
Grade A, and why
skillport 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Guidelines & Context
1. Core Principles (10-second recall)
- PLAN.md: SSOT for「どう作るか」(how to build); keep tasks in
docs/latest/PLAN.md, update continuously, snapshot at release. - Task tracking: Use checkbox lists (
- [ ]/- [x]); include Task ID for larger work. - Safe defaults: Default
EMBEDDING_PROVIDER=none; when enabling external providers, fail fast on missing keys. - Normalization: Always trim+lowercase
category/tagsfor indexing, filtering, and search. - Fallback chain: Preserve vector → FTS → substring fallback; never break the chain.
- MCP logging: stdout is JSON-RPC only; send all logs/debug to stderr.
- Behavioral regression tests (golden traces): Not required now; add for critical flows when ready.
- Refactoring style: Prefer function-based design with dict dispatch over class-based Strategy/ABC patterns. Keep helpers small; share common logic via helper functions, not inheritance.
- Docs governance: See
docs/AGENTS.mdfor layout/roles;docs/steering/OPERATING_MODEL.mdfor doc/release ops;docs/steering/ENGINEERING_GUIDE.mdfor technical policy;docs/steering/RUNBOOK.mdfor operational steps.
2. Project Context
Architecture
- Brand: SkillPort
- Packages:
skillport(CLI),skillport-mcp(MCP server),skillport-core(shared lib) - Type: CLI + MCP Server (Model Context Protocol)
- Stack:
- Runtime: Python 3.10+
- Package Manager:
uv - MCP Lib:
fastmcp - Database:
lancedb(Vector + FTS) - Config:
pydantic-settings
Directory Structure
packages/skillport-core/src/skillport/: Source code (modular monolith)interfaces/cli/: Typer CLI adapterinterfaces/mcp/: FastMCP server adaptermodules/skills/: Skill management public/internal APIsmodules/indexing/: Index build/query logicshared/: Config, types, utils, exceptions
docs/latest/: Living documentation (SSOT)docs/releases/vX.Y.Z/: Release snapshots (frozen)docs/steering/: Governance & guides.skills/: Local skills storage for testingverify_server.py: Verification script (Mock Client)
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.
- yesterday First seen · 58 lines · 813 tokens per session scan A 741d2ac2a338
skillport AGENTS.md is an instructions file published in the GitHub repository gotalab/skillport (409 stars, last pushed 2mo ago), licensed MIT. It adds 813 tokens to every session, about $0.0041 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-30.
Other instructions, from other repositories
apm tests.instructions.md
Test conventions: URL assertions must use urllib.parse, never substring.
apm cli.instructions.md
CLI Design Guidelines for visual output, styling, and user experience standards.
apm integrators.instructions.md
Architecture rules for file-level integrators (BaseIntegrator pattern).
apm copilot-instructions.md
Instructions for microsoft/apm, covering linting (canonical contract), ci-mirror commands, local workflow, common surprises and lifecycle binding.
apm architecture.instructions.md
Single canonical owner discipline: one authority per durable decision, guarded by a regression test + a static boundary check.
apm cicd.instructions.md
CI/CD Pipeline configuration for PyInstaller binary packaging and release workflow.