agentsope/SkillAlchemy

From thought to skill. From signal to structure.

366Stars on the repository
48Mods indexed here, across every type
4d agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

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…

not rated 366 +9 4d ago A 174 tokens original MIT

agentsope/SkillAlchemy

Skill Claude Code

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…

not rated 366 +9 4d ago B 209 tokens original MIT

agentsope/SkillAlchemy

Skill Claude CodeCodex

Designs multiscale chunking for RAG by embedding small units for retrieval precision and returning larger context for synthesis. Use when fixed-size chunks either lose surrounding context or dilute relevance in long documents, manuals, filings, or codebases. Covers sentence-window and parent-child or auto-merging…

not rated 366 +9 changed 3d ago A 92 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…

not rated 366 +9 4d 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…

not rated 366 +9 4d ago A 111 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…

not rated 366 +9 4d ago A 203 tokens original MIT

agentsope/SkillAlchemy

Skill Claude Code

Routes heterogeneous queries to the appropriate index, tool, or answering engine before retrieval. Use when one endpoint serves multiple handlers, such as summary, vector retrieval, text-to-SQL, or tools, and query types require different paths. Covers LLM, semantic, and rule-based routers, confidence thresholds…

not rated 366 +9 changed 3d ago A 86 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.

not rated 366 +9 4d ago A 62 tokens original MIT

agentsop-repo-map

33

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…

not rated 366 +9 4d 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…

not rated 366 +9 4d ago A 138 tokens original MIT

agentsope/SkillAlchemy

Skill Claude Code

Adds and tunes a reranker stage for RAG using the retrieve-wide, rerank-narrow pattern. Use when relevant documents appear in the initial top-N but are buried by noise, top-1 precision or MRR is low despite adequate recall, or too many marginal chunks consume context. Covers cross-encoder, API, and local rerankers…

not rated 366 +9 changed 3d ago A 100 tokens original MIT

agentsope/SkillAlchemy

Skill Claude Code

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…

not rated 366 +9 4d 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…

not rated 366 +9 4d 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…

not rated 366 +9 4d 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.…

not rated 366 +9 4d 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…

not rated 366 +9 4d 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…

not rated 366 +9 4d ago A 105 tokens original MIT

agentsope/SkillAlchemy

Skill Claude Code

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…

not rated 366 +9 4d 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.…

not rated 366 +9 4d ago A 174 tokens original MIT

agentsop-vllm

44

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…

not rated 366 +9 4d ago A 96 tokens original MIT

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: