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/pauljphilp/effectpatterns/copilot-instructionsgit clone --depth 1 https://github.com/PaulJPhilp/EffectPatternsWhat 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.05559 | $0.05559 |
| Opus 5 | $0.02780 | $0.02780 |
| Sonnet 5 | $0.01112 | $0.01112 |
| Haiku 4.5 | $0.00556 | $0.00556 |
Grade A, and why
EffectPatterns copilot-instructions.md scanned grade A with 1 finding 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl https://your-deployment-url.vercel.app/api/health How it starts
The opening of the file, as written. The whole thing — 965 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Effect-Patterns AI Agent Instructions
Project Overview
Effect-Patterns is a community-driven knowledge base of practical patterns for building robust applications with Effect-TS. The project includes:
- A pattern server for serving API endpoints
- Documentation and examples of Effect-TS patterns
- Rules and guidelines for AI coding agents
- MCP server integration for context-aware coding assistance
Key Architectural Patterns
Service Pattern
All services must use the modern Effect.Service pattern:
export class UserService extends Effect.Service<UserService>()("UserService", {
// Enable static accessor methods
accessors: true,
// Define implementation with dependencies
effect: Effect.gen(function* () {
// Get dependencies
const logger = yield* LoggerService;
const db = yield* DatabaseService;
return {
getUser: (id: string) =>
Effect.gen(function* () {
yield* logger.log(`Fetching user ${id}`);
return yield* db.query(`SELECT * FROM users WHERE id = ${id}`);
}),
};
}),
// Declare dependencies
dependencies: [LoggerService.Default, DatabaseService.Default],
}) {}
Dependency Injection
- Use Layer-based DI with
Layer.merge - Compose layers logically:
const mainLayer = Layer.merge(
DatabaseService.Default,
LoggerService.Default,
NodeContext.layer
);
const program = Effect.gen(function* () {
// Program logic
}).pipe(Effect.provide(mainLayer));
Error Handling
Define tagged errors for type-safety:
export class ServiceError extends Data.TaggedError("ServiceError")<{
message: string;
cause?: unknown;
}> {}
// Usage
Effect.gen(function* () {
try {
// Operation
} catch (cause) {
yield* Effect.fail(
new ServiceError({
message: "Operation failed",
cause,
})
);
}
});
HTTP Server
Build HTTP servers with @effect/platform:
const app = HttpRouter.empty.pipe(
HttpRouter.get("/health", () =>
Effect.succeed({ status: "ok" }).pipe(
Effect.flatMap(HttpServerResponse.json)
)
)
);
const server = NodeHttpServer.layer(() => require("node:http").createServer(), {
port: 3001,
});
const serverLayer = HttpServer.serve(app);
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.
- 2d ago First seen · 965 lines · 5,559 tokens per session scan A 89f3af130e9f
EffectPatterns copilot-instructions.md is an instructions file published in the GitHub repository PaulJPhilp/EffectPatterns (795 stars, last pushed 2mo ago), licensed MIT. It adds 5,559 tokens to every session, about $0.0278 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
pi-effect-harness AGENTS.md
Instructions for mpsuesser/pi-effect-harness, covering agents.md — pi-effect-harness, layout, verification, where to look for common changes and conventions.
siyuan AGENTS.md
AGENTS.md instructions for siyuan-note/siyuan, covering agents.md, 1. non-negotiable constraints, do not hand-edit, verification and prohibited operations and 2. project-specific rules.
huly-mcp CLAUDE.md
Instructions for dearlordylord/huly-mcp, covering project instructions, design principle: llm-first api, project harness (copy to new projects), package manager and verification.
Axon developer.instructions.md
Instructions for jyunming/Axon, covering role: developer, core conventions, document schema — never deviate, config.yaml → dataclass mapping and adding a new loader.
Axon security-auditor.instructions.md
Instructions for jyunming/Axon, covering role: security auditor, known risk areas in this codebase, 1. bm25 serialization — src/axon/retrievers.py, 2. path traversal — src/axon/api.py /ingest endpoint and 3. dependency cves.
agent-fieldbook CLAUDE.md
Instructions for alessiomarcone/agent-fieldbook, covering repository instructions, objective, rules and development.