agentsope

56 mods across 2 repositories, 346 stars between them.

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decision protocol for the map-reduce / dynamic fan-out pattern in LM pipelines — "given list L, run f(item) for each item in parallel, then combine". Activates when the coder agent is about to process N items with N LM calls (per-doc summarize, per-query retrieve, per-candidate rank, parallel tool fan-out). Encodes…

342 7d ago A 151 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decomposed, multi-criteria metric design for LLM pipelines. The metric IS the model — change the metric and the optimizer changes behavior. Decompose by default; bool during compile, float during eval; calibrate against human; mitigate judge bias. Search keywords: LLM-as-judge, llm as judge, eval metric, evaluation…

342 7d ago A 103 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

ENHANCE overlay on [[dspy]] — the upfront rubric for choosing a reasoning SHAPE (Predict / ChainOfThought / ReAct / ProgramOfThought) BEFORE you write a prompt or pick an optimizer. The local dspy skill lists the modules but never surfaces the selection criterion: reasoning shape is chosen by task structure, not by…

342 7d ago A 174 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Security-first SOP for multi-tenant RAG systems. Activate when a calling agent is building, reviewing, or debugging any retrieval pipeline whose vector store is shared across more than one user, organisation, workspace, customer, or permission scope. Encodes the single non-negotiable rule — filter at the vector store…

342 7d ago B 209 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement-overlay (C5) for RAG over long documents — the chunk-paradox resolution. Activate when a single fixed chunk size cannot satisfy both retrieval precision (small chunks) and generation context (large chunks): small chunks lose surrounding context, large chunks dilute embedding relevance into "topic…

342 7d ago A 225 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement-overlay skill — the DECISION + WIRING layer for LM observability that the single-backend skills [[langsmith]], [[phoenix]], [[mlflow]] do NOT cover. Each of those installs one backend; none of them help you DECIDE which backend fits your stack/scale/budget, nor give you a one-line autolog that turns it on…

342 7d ago A 248 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Pick an LM output format per (task x consumer x model) rather than by reflex: different formats carry different cognitive load (e.g. code-in-JSON makes the same model write worse code than plain-text+diff, while asking for prose when you need a typed object fails the other way). Use when designing or debugging an LM's…

342 7d ago A 111 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Lifecycle SOP for per-model prompt artifacts — the compiled prompts, instructions, few-shot demos, edit-format pins, and embedding-bound indices that change behavior when the underlying LM, dataset, or framework version changes. Activate when adopting compiled prompts (DSPy, GEPA, BootstrapFewShot output), when…

342 7d ago A 168 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

The compile-readiness gate for prompt auto-optimization. Decide whether you have earned the right to run an optimizer (DSPy MIPROv2 / GEPA / BootstrapFewShot) before spending compute. Two preconditions only — a real metric, and enough examples for the optimizer you picked. Garbage metric in, garbage prompt out. Pick…

342 7d ago A 96 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Tool skill — the first move in any LM-debugging session: dump the actual rendered prompt the framework sent to the model, before changing anything else. Activate when an LM call produced an unexpected output (wrong answer, schema violation, refusal, truncation, cost spike, latency spike, infinite loop, "model got…

342 7d ago A 203 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement-overlay SOP for query-type routing — sending a query to the right index / tool / engine before retrieving, not after. Activate when a calling agent owns a retrieval or answering surface that fronts more than one handler (a summary index, a vector index, a text-to-SQL engine, a tool) and the inbound queries…

342 7d ago A 314 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Build a held-out eval set, run it on every prompt/model change, and block regressions in CI. An LM change is a code change — gate it with a test suite (eval set + metric + threshold). Cross-framework SOP not surfaced by any single base skill.

342 7d ago A 62 tokens original MIT

agentsop-repo-map

37

agentsope/SkillAlchemy

Skill Claude CodeCodex

Symbol-level code context for LLM coder-agents: tree-sitter extracts symbols, PageRank ranks them over the cross-file reference graph, and the top class/function signatures are fed to the LLM as a token-budgeted read-only map (not RAG, no vector index, human-auditable). Use when an agent must locate the right files in…

342 7d ago A 108 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

A 5-minute gate the coder runs at project kickoff (and again whenever the repo shape changes). Classifies the workspace into Greenfield / Brownfield-large / Mid-size-familiar / Library-SDK, then maps the state to an agent strategy (autonomy, context primitive, tool choice). Use BEFORE picking Cursor vs Claude Code vs…

342 7d ago A 138 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement-overlay SOP for the reranker stage of a RAG pipeline — the "retrieve wide, rerank narrow" discipline. Activate when a calling agent owns a retrieval pipeline whose answers have plateaued: top-k contains the right document but it is buried below noise, or the context window is under pressure from too many…

342 7d ago A 382 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Project-kickoff rubric for the self-host vs managed-cloud decision — when is running your own inference engine / LLM platform worth the ops cost vs paying per-token for a managed API? Decide on two axes — VOLUME (a cost-crossover slider) and COMPLIANCE (a hard gate). Use at kickoff when choosing where to run…

342 7d ago A 93 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decision protocol for managing the context/session state of an AI coding tool: when to /clear, when to keep context, and how to detect "context bleed" — the failure mode where stale conversation history biases the model against the current task. Surfaces a discipline that Aider (/clear), Claude Code (/clear), CrewAI…

342 7d ago C 108 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decision rubric for promoting a prose prompt into a typed DSPy Signature. This is an ENHANCE overlay on top of the [[dspy]] library skill: it does NOT teach DSPy syntax — it answers the coder-agent decision "when do I stop hand-writing a prompt string and declare it as a dspy.Signature, and how do I name/describe its…

342 7d ago A 226 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Tool skill for declaring reducers on LangGraph state keys so parallel writes merge instead of crashing. Activates whenever a coder agent designs a StateGraph with parallel branches, fan-out via Send, multi-agent topologies, or whenever a run raises InvalidUpdateError: At key ' ': Can receive only one value per step.…

342 7d ago A 97 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement-overlay decision protocol for STREAMING the output of long-running LLM / agent runs from the backend, not just wiring a typing animation in the UI. Activates when a coder agent must stream final tokens to a chat client, surface intermediate agent steps (which tool, which node, partial reasoning), emit…

342 7d ago A 140 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decide where to enforce structured LM output (constrain at decode time with Outlines vs validate-and-retry with Instructor vs grammar with Guidance) and which failure stance to take (Assert/hard-fail vs Suggest/soft-retry). Use when an LM's output is parsed or typed by downstream code and you must pick one enforcement…

342 7d ago A 105 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decision protocol for wiring a verify-then-fix loop around a code-editing LLM agent. The agent edits → runs lint/test → reads the output → fixes → re-runs, bounded by an iteration cap and an escalation rule. Activates whenever a coder agent has a verifiable success criterion (exit code, type-checker output, failing…

342 7d ago A 146 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Enhancement overlay for multi-agent / tool-using coder agents. Encodes the per-agent tool- scoping discipline that role-based frameworks (CrewAI, LangChain) document only as a passing best-practice: which agent gets which tool, and why blanket-sharing every tool to every agent is a correctness and blast-radius risk.…

342 7d ago A 174 tokens original MIT

agentsop-vllm

48

agentsope/SkillAlchemy

Skill Claude CodeCodex

Decision SOP for serving LLMs with vLLM. Covers PagedAttention mental model, quantization/parallelism/batching tradeoffs, OOM triage, and when NOT to use vLLM. Activates when a coder-agent is choosing or tuning an inference engine, debugging vLLM throughput/latency/OOM, or comparing vLLM against…

342 7d ago A 96 tokens original MIT