conjure AGENTS.md

Repository-specific instructions for Conjure, an Elixir library for working with Anthropic Agent Skills. They describe the project, its build commands, tests, supported execution backends, and file storage options.

In plain words
What is it for?
Use them when installing dependencies, changing Conjure, running its tests, formatting code, checking types, linting, or compiling it.
Why use it?
They give a coding agent the project context and the checks expected before changes are considered ready. Elixir is a programming language, and Mix is its build and test tool.

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/holsee/conjure/agents-md
Clone the repo
git clone --depth 1 https://github.com/holsee/conjure

Made for: Codex, OpenCode.

Per session 2,530 This file is loaded in full into every session.
When invoked 2,530 The same file — it is already loaded in full.
Security scan B 1 finding. 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.02530 $0.02530
Opus 5 $0.01265 $0.01265
Sonnet 5 $0.00506 $0.00506
Haiku 4.5 $0.00253 $0.00253

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

Security

Grade B, and why

conjure AGENTS.md scanned grade B 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.

Unrestricted tool accessmediumExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

- Skills can execute arbitrary code - audit before loading
AGENTS.md · 347 lines

How it starts

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

AGENTS.md

Guidance for LLM coding agents working on this repository.

Project Overview

Conjure is an Elixir library for Anthropic Agent Skills with Claude models. It provides:

  • Unified Session API - Conjure.Session.chat/3 works across all backends
  • 4 Execution Backends - Local, Docker, Anthropic (hosted), Native (BEAM)
  • Skill Loading - Parse SKILL.md files with YAML frontmatter, load .skill ZIP packages
  • Pluggable Storage - Local, S3, Tigris backends for session file management
  • API-Agnostic - No HTTP client bundled; consumers provide API callbacks

Build & Development Commands

# Install dependencies
mix deps.get

# Run tests
mix test
mix test path/to/test.exs           # Specific file
mix test path/to/test.exs:42        # Specific line

# Code quality (all enforced in CI)
mix format                          # Auto-format
mix format --check-formatted        # Check formatting
mix credo --strict                  # Lint
mix dialyzer                        # Type checking
mix compile --warnings-as-errors    # Strict compilation

# Full CI check locally
mix format && mix credo --strict && mix compile --warnings-as-errors && mix test && mix dialyzer

# Generate documentation
mix docs

Architecture

Module Hierarchy

Conjure (Main API)
├── Session (Unified interface)
│   └── Backend (Behaviour)
│       ├── Local (System.cmd execution)
│       ├── Docker (Container execution)
│       ├── Anthropic (Skills API)
│       └── Native (BEAM execution)
├── Loader (SKILL.md parsing)
├── Registry (GenServer skill store)
├── Storage (Behaviour)
│   ├── Local (Temp directories)
│   ├── S3 (AWS)
│   └── Tigris (Fly.io)
└── NativeSkill (Behaviour for Elixir skills)

Key Modules

Module Purpose
Conjure Main public API entry point
Conjure.Session Unified session interface, delegates to backends
Conjure.Backend Behaviour defining unified interface for all backends
Conjure.NativeSkill Behaviour for implementing skills as Elixir modules
Conjure.Storage Behaviour for session storage backends
Conjure.Loader SKILL.md parsing, ZIP loading, progressive disclosure
Conjure.Registry GenServer-based skill registry with hot-reload
Conjure.Conversation Tool-use conversation loop (Local/Docker)
Conjure.Prompt Generates XML-formatted system prompt fragments
Conjure.Tools Claude-compatible tool schemas (view, bash_tool, create_file, str_replace)

Read the full file on GitHub · 347 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 · 347 lines · 2,530 tokens per session scan B c912075562d4

Subscribe to this mod's changes

conjure AGENTS.md is an instructions file published in the GitHub repository holsee/conjure (10 stars, last pushed 8mo ago), licensed Apache-2.0. It adds 2,530 tokens to every session, about $0.0127 per session on Opus 5. A static security scan graded it B with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,182 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,345 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

next.js AGENTS.md

Instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens