ZaxbyHub/opencode-swarm/.opencode/skills/engineering-conventions/SKILL.md
engineering-conventions
Guidelines and non-negotiable engineering invariants for modifying opencode-swarm. Load before architecture, plugin initialization, subprocess, tool registration, plan durability, .swarm storage, runtime portability, session/global state, guardrails/retry, chat/system message hooks, or release/cache changes. Authoritative source: AGENTS.md at the repo root and docs/engineering-invariants.md.
- Source repository stars
- 451
- Declared platforms
- 0
- Static risk flags
- 3
- Last source update
- 2026-08-25
- Source checked
- 2026-08-25
Decision brief
What it does: where it fits
Authoritative source: AGENTS.md at the repo root and docs/engineering-invariants.md. This skill is a pointer + summary so the OpenCode agent loads the right invariants before touching dangerous areas. Read AGENTS.md first. When this skill conflicts with AGENTS.md, AGENTS.md wins.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/ZaxbyHub/opencode-swarm --skill ".opencode/skills/engineering-conventions"Inspect the Agent Skill "engineering-conventions" from https://github.com/ZaxbyHub/opencode-swarm/blob/97dc624b391c8e2e80ed42f4bfa37876554c24cb/.opencode/skills/engineering-conventions/SKILL.md at commit 97dc624b391c8e2e80ed42f4bfa37876554c24cb. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Verification checklist
For any import-chain change touching src/lang/, runtime, or web-tree-sitter: 1. Trace the transitive chain from src/index.ts to verify no heavy module loads at init. 2. Rebuild dist: bun run build (stale dist gives false regressions). 3. Run node scripts/repro-704.mjs — T1 must…
Trace the transitive chain from src/index.ts to verify no heavy module loads at init.Rebuild dist: bun run build (stale dist gives false regressions).Run node scripts/repro-704.mjs — T1 must be under 400ms. - 02
How to use it
1. Identify the files to scan. In a phase, use the union of declared task-scope files plus files the coder is expected to touch. Derive the list from declarescope outputs, git diff --name-only, or the phase's task specs. 2. Before any coder delegation in Phase 1, capture the bas…
Identify the files to scan. In a phase, use the union of declared task-scopeBefore any coder delegation in Phase 1, capture the baseline:After coder work, scan the same file set: - 03
When to load this skill
Load this skill before beginning implementation work that touches any of:
src/index.ts (plugin entry / initializeOpenCodeSwarm)src/hooks/ (any hook that may run during init or QA review)src/tools/ (tool registration, working-directory anchoring, testrunner) - 04
Highest-risk invariants (the ones that have already shipped regressions)
The full list of 12 invariants is in AGENTS.md. The four that have caused the most recent production regressions:
Plugin initialization is bounded and fail-open. Every awaited operation on the plugin-init path must be wrapped in withTimeout(...) and degrade non-fatally on timeout. Issue 704 (v7.0.3) and the v7.3.3 git-hygiene regre…Bounded is not free: withTimeout only prevents an unbounded hang — the awaited work's latency still counts toward the 400 ms repro-704 init deadline. Register non-trivial init I/O in the wrapper-owned post-resolution ta…Subprocesses are bounded, non-interactive, and killable. Every bunSpawn(['', ...]) call must pass cwd, stdin: 'ignore' (unless intentionally interactive), timeout: , bounded stdio, and call proc.kill() in a finally. An… - 05
Cross-link: writing tests
For test changes, also load .swarm/bundled-skills/writing-tests/SKILL.md. It covers bun:test API, mock isolation rules, CI per-file isolation, and cross-platform anti-patterns.
For test changes, also load .swarm/bundled-skills/writing-tests/SKILL.md. It covers bun:test API, mock isolation rules, CI per-file isolation, and cross-platform anti-patterns.
Permission review
Static risk signals and limitations
Runs scripts
The documentation asks the agent to run terminal commands or scripts.
For repo validation, run the shell commands in `contributing.md` / `TESTING.md` directly (per-file isolation loops + tier orchestration).Network access
The documentation includes network, browsing, or remote request actions.
`import type { Query } from 'web-tree-sitter'` — **safe** (erased at compile time, no module load).Network access
The documentation includes network, browsing, or remote request actions.
`import { Query } from 'web-tree-sitter'` — **unsafe** on the init path (loads the WASM module).Reads files
The documentation asks the agent to read local files, directories, or repositories.
After coder work, scan the same file set:Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 95/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 451 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- ZaxbyHub/opencode-swarm
- Skill path
- .opencode/skills/engineering-conventions/SKILL.md
- Commit
- 97dc624b391c8e2e80ed42f4bfa37876554c24cb
- License
- MIT
- Collected
- 2026-08-25
- Default branch
- main
View the original SKILL.md
Engineering Conventions for opencode-swarm
Authoritative source: AGENTS.md at the repo root and docs/engineering-invariants.md. This skill is a pointer + summary so the OpenCode agent loads the right invariants before touching dangerous areas. Read AGENTS.md first. When this skill conflicts with AGENTS.md, AGENTS.md wins.
When to load this skill
Load this skill before beginning implementation work that touches any of:
src/index.ts(plugin entry /initializeOpenCodeSwarm)src/hooks/*(any hook that may run during init or QA review)src/tools/*(tool registration, working-directory anchoring, test_runner)src/utils/bun-compat.ts(subprocess shim — every spawn in the repo eventually flows through here)src/utils/timeout.ts(thewithTimeoutprimitive used by every bounded init step)src/utils/gitignore-warning.ts(Git hygiene; runs on plugin init path)package.json, build configuration,dist/, plugin export shape- Plan ledger / projection / checkpoint code (
src/plan/*,.swarm/plan-*) - Session / guardrails / runtime state (
src/state.ts,src/hooks/guardrails.ts) - Tests involving subprocesses, plugin startup,
mock.module, or temp directories
If you are not sure whether you are touching one of these, you are touching one of these.
Highest-risk invariants (the ones that have already shipped regressions)
The full list of 12 invariants is in AGENTS.md. The four that have caused the most recent production regressions:
- Plugin initialization is bounded and fail-open. Every awaited operation on the plugin-init path must be wrapped in
withTimeout(...)and degrade non-fatally on timeout. Issue #704 (v7.0.3) and the v7.3.3 git-hygiene regression both stem from violating this. The OpenCode plugin host silently drops a plugin whose entry never resolves; users see "no agents in TUI / GUI" with no error.- Bounded is not free:
withTimeoutonly prevents an unbounded hang — the awaited work's latency still counts toward the ~400 ms repro-704 init deadline. Register non-trivial init I/O in the wrapper-owned post-resolution task queue when nothing downstream needs it beforeserver()resolves. Do not usequeueMicrotaskinside the initializer: it can run during a laterawaitwhileserver()is still unresolved.
- Bounded is not free:
- Subprocesses are bounded, non-interactive, and killable. Every
bunSpawn(['<bin>', ...])call must passcwd,stdin: 'ignore'(unless intentionally interactive),timeout: <ms>, bounded stdio, and callproc.kill()in afinally. An outerwithTimeoutis not enough — it lets the awaiter proceed but does not abort the child. - Runtime portability — Node-ESM-loadable + v1 plugin shape. No top-level
bun:imports indist/index.js. Default export is{ id, server }. AllBun.*calls go throughsrc/utils/bun-compat.ts. v6.86.8 / v6.86.9 are the cautionary tales. - Test mock isolation.
mock.module(...)leaks across files in Bun's shared test-runner process. Prefer, in order: (a)_test_exportsfor pure function testing with zero mocks, (b)_internalsdependency-injection seam for within-module mocking (seesrc/utils/gitignore-warning.ts:_internalsandsrc/hooks/diff-scope.ts:_internals), (c)mock.moduleonly when unavoidable. Restore inafterEach. The writing-tests skill covers all three tiers in detail; load it before modifying tests.
Cross-link: writing tests
For test changes, also load .swarm/bundled-skills/writing-tests/SKILL.md. It covers bun:test API, mock isolation rules, CI per-file isolation, and cross-platform anti-patterns.
Hard warning: do NOT use broad test_runner for repo validation
The OpenCode test_runner tool is for targeted agent validation with explicit files: [...] or small targeted scopes. It is not the way to validate the full repo from inside an OpenCode session. In this repo:
MAX_SAFE_TEST_FILES = 50(src/tools/test-runner.ts). Resolutions exceeding this returnoutcome: 'scope_exceeded'with a SKIP. Do not lean on this — broad scopes can stall or kill OpenCode before that guard fires.- For repo validation, run the shell commands in
contributing.md/TESTING.mddirectly (per-file isolation loops + tier orchestration). scope: 'all'is gated behind theSWARM_ALLOW_FULL_SUITE=1env var (intended for opt-in CI mirrors only); there is noallow_full_suitearg. Default tofiles: [...]instead.
Agent prompt strings — escaping pitfalls
Agent prompts in src/agents/*.ts are large TypeScript template literals. They frequently contain characters that have special meaning inside template literals and cause silent parse errors if unescaped:
| Character | Inside template literal | Correct escape |
|---|---|---|
Backtick ` | Terminates the literal | \` (single backslash — renders as ` in output) |
${ | Starts an interpolation | \${ (single backslash) |
Literal backslash \ | Consumed by escape processing | \\ (double backslash renders as \ in output) |
The most common failure pattern: A coder adds an inline code example containing backticks to an agent prompt string. The unescaped backtick silently terminates the template literal, producing a SyntaxError: Unexpected identifier or Unexpected token at the character after the backtick — which appears unrelated to the actual cause.
// WRONG — unescaped backtick terminates the template literal
const PROMPT = `
Use `bun:test` for all tests. // ← bare backtick before "bun" closes the literal
`;
// CORRECT — single backslash before each backtick; renders as Use `bun:test` in output
const PROMPT = `
Use \`bun:test\` for all tests.
`;
// OVER-ESCAPED (also wrong) — triple backslash produces literal \` in the rendered prompt
const PROMPT = `
Use \\\`bun:test\\\` for all tests. // renders as: Use \`bun:test\` (backslashes visible)
`;
Detection: If bun run build or bun --smol test reports a parse error at a line number that seems far from any recent change, search the surrounding lines for an unescaped backtick inside a template literal.
Prevention: After adding any inline code example to an agent prompt, run bun run build immediately — the TypeScript compiler catches unescaped backticks as a syntax error before any tests run.
The invariant-audit gate (PR-time)
Every PR that touches a relevant area must include an ## Invariant audit section in its description. The format is in AGENTS.md ("Invariant audit required in PRs"). The commit-pr skill enforces this gate before push/PR — load it before committing.
If you cannot prove a touched invariant from source and test output, do not push.
Evidence file flow (.swarm/evidence/{taskId}.json)
Agents NEVER write these files directly. The delegation-gate hook
writes them automatically after each reviewer/test_engineer Task
delegation returns. The schema is defined in src/gate-evidence.ts:
export interface GateEvidence {
sessionId: string; // actual session ID from the Task delegation
timestamp: string; // ISO 8601
agent: string; // 'reviewer' | 'test_engineer' | 'sme' | etc.
}
export interface TaskEvidence {
taskId: string;
required_gates: string[];
gates: Record<string, GateEvidence>;
turbo?: boolean;
}
How to verify the flow is working:
- After dispatching a reviewer/test_engineer Task, the
delegation-gatetoolAfter hook should automatically write/update.swarm/evidence/{taskId}.json. - When you call
update_task_status(completed), the tool reads the evidence file and verifies therequired_gatesare all present. - If
update_task_statusfails with "required QA gates not yet satisfied" or "Evidence file is corrupt or unreadable," inspect the evidence file withcat .swarm/evidence/{taskId}.jsonto diagnose.
Do NOT manually write or fabricate evidence files. This bypasses the gate enforcement and can cause downstream tool failures when the real session IDs are looked up.
When to suspect the flow is broken:
- The evidence file doesn't exist after a reviewer/test_engineer Task delegation returns
- The evidence file exists but has wrong
agentorsessionIdvalues - The plan has newly-added task IDs that the hook may not recognize
Workaround for broken flow: If the hook consistently fails to write the evidence file, escalate to the user — do NOT silently fabricate evidence with placeholder session IDs. The gate check exists to enforce that a real review/test run happened.
See .opencode/skills/writing-tests/SKILL.md
§ Cross-Platform Requirements → "macOS rename-visibility race" for the
ENOENT retry pattern that this gate flow triggers on macOS CI.
Init-path-safe imports (invariant 1 deep-dive)
The most expensive invariant-1 violations come from transitive import chains that silently load heavy modules (WASM, tree-sitter) at plugin init time. A single import { X } from '../../lang' in a tool-time module can transitively load runtime.ts → web-tree-sitter (heavy WASM), spiking init latency well past the repro-704 T1 deadline (observed during issue #1471 development).
The lang barrel trap
src/lang/index.ts re-exports from ./runtime, which statically imports web-tree-sitter. Importing anything from the barrel (from '../../lang') transitively loads WASM at module-eval time.
Wrong: import { LANGUAGE_REGISTRY } from '../../lang' — loads runtime → web-tree-sitter.
Right: import { LANGUAGE_REGISTRY } from '../../lang/profiles' — loads only profiles (string data, no WASM).
Type-only vs value imports
import type { Query } from 'web-tree-sitter'— safe (erased at compile time, no module load).import { Query } from 'web-tree-sitter'— unsafe on the init path (loads the WASM module).- For value dependencies on heavy modules in init-reachable code, use dynamic
import()inside an async function (deferred to first call, not module load).
The --external build flag
Dynamic import('web-tree-sitter') only defers loading at runtime if --external web-tree-sitter is set in the bun build config. Without it, bun bundles web-tree-sitter inline and the dynamic import resolves from the bundle (no deferral). Check package.json build scripts for the flag.
Verification checklist
For any import-chain change touching src/lang/, runtime, or web-tree-sitter:
- Trace the transitive chain from
src/index.tsto verify no heavy module loads at init. - Rebuild dist:
bun run build(stale dist gives false regressions). - Run
node scripts/repro-704.mjs— T1 must be under 400ms. - Run
bun --smol test tests/unit/lang/symbol-graph-init-purity.test.ts— init-path purity tests must pass.
Tool version parity (local vs CI)
Tool versions must match CI. When package.json pins a tool version (e.g., @biomejs/[email protected], @biomejs/biome@^2, or any other versioned dev dependency), invoke it with the pinned version during local validation. Unversioned bunx biome resolves to a different version than the CI gate uses, and a CI-blocking failure can be invisible to local pre-commit validation.
Examples:
- Pinned biome:
bunx @biomejs/biome@<version> ci .(substitute<version>frompackage.json). - Unversioned
bunx biome ci .resolves to whatever Bun'sbunxregistry returns at run time — historically 0.3.x vs the pinned 2.x.
The commit-pr skill Tier 1 - quality section pins the biome command to the package.json version; this is the canonical pattern for any tool where local and CI versions could diverge. Apply the same discipline to ESLint, Prettier, TypeScript, and any other versioned dev dependency.
Why this matters: PR #1503 (telemetry rotation fix) had a biome 2.3.14 organizeImports failure on the ./telemetry import block that was invisible to local bunx biome (which resolved to 0.3.3 with no equivalent rule). The reviewer caught it from CI logs, not local validation. Pin tool versions to close the local/CI parity gap.
Skill mirror contract
The cross-tree skill mirror contract is the authoritative registry at src/config/skill-mirrors.ts. If your PR modifies .opencode/skills/<X>/SKILL.md or .claude/skills/<X>/SKILL.md, consult that file to determine the contract kind for skill <X>:
identical:.opencodeand.claudeSKILL.md must be byte-identical (thecanonicalfield records which side wins when they drift). Update both trees byte-for-byte in the same commit. Verify withbun run drift:check. PR #1512 (lane-dispatch) introduced drift in council/deep-dive by only updating.opencode— a contract violation.divergent: both must exist but content intentionally differs per runtime. Examples:engineering-conventionsis divergent (different frontmatter, different conventions per Claude Code vs OpenCode).writing-testsis classified divergent because the additional-contract model does not yet have an adapter kind, but operationally.opencode/skills/writing-tests/SKILL.mdis canonical and.claude/skills/writing-tests/SKILL.mddelegates to it.opencode-only:.opencodeexists; no.claudemirror expected. Examples:loop(would shadow Claude Code's built-in/loop),running-tests(OpenCode-runtime guidance).- Adapter shim pattern: for architect MODE skills like
swarm-pr-reviewandswarm-pr-feedback, the.claudeand.agentsfiles are thin adapter shims that delegate to the canonical.opencodefile viaexpectedCanonicalRef. When updating these, the canonical content goes in.opencode; the adapter shim typically needs no change unless the cross-tree delegation interface changes.
If your PR modifies a .opencode/skills/<X>/SKILL.md file: check src/config/skill-mirrors.ts for the contract, then run bun run drift:check locally before pushing. Mirror drift is currently a soft-warn (DRIFT_CHECK_ENFORCE=1 would make it hard-fail). The drift-check CI job surfaces drift as an issue comment, not a blocking check — but a drift between canonical and mirror means Claude Code agents reading the mirror get stale instructions.
Sandbox env overrides (subprocess-safety deep-dive)
When a sandbox executor (src/sandbox/{linux,macos,win32}/*.ts) interpolates environment variables into a sandbox profile, a bwrap rule, or a PowerShell -EnvironmentVariables block, the following rules apply — they exist because a future shell-injection regression in any new sandbox path would be a security vulnerability, not just a bug:
- Keys must match POSIX env-var name syntax. Every env key must be validated against the regex
/^[A-Za-z_][A-Za-z0-9_]*$/(a leading letter or underscore, then letters/digits/underscores) before being interpolated. Define or reuse a singleisValidEnvKey(key: string): booleanhelper colocated with theSandboxExecutorinterface insrc/sandbox/executor.ts(around line 24+); do not duplicate the regex inline at every call site. Keys that fail validation must be silently dropped (not raised) so that one bad caller cannot wedge the sandbox path — but the drop must be observable in the advisory/observability layer (pendingAdvisoryMessagesor structured log), never silent. - Values must be shell-quoted or treated as opaque single tokens. On POSIX, prepend a leading single quote, escape any embedded single quotes by replacing
'with'\'', and append a trailing single quote. On Windows PowerShell, prefer single-quoted literal contexts (e.g.'$env:NAME') and run values through apsStringEscape-style helper that escapes backtick,$,", and`(the special characters in double-quoted PowerShell strings). Single-quoted PowerShell strings are literal — only'needs escaping, doubling it to''. If a context requires double-quoted PS values, escape embedded"as`, backtick as, and `$` as`` (backtick is the PS escape character in double-quoted strings;$must be escaped to prevent variable expansion). On bwrap, always pass values as separate argv tokens after the--setenvflag (--setenv KEY VALUE, two tokens), never as a single concatenatedKEY=VALUE` token that an intermediate shell would interpret. - Use the array-form argv for every sandbox subprocess. Never
shell:-interpolate. The same invariant-3 rules (array-form spawn,stdin: 'ignore',cwd,timeout,proc.kill()infinally) apply to sandbox spawns as to any other subprocess; opencode-swarm repository contributors can also consult the repo's subprocess-safety developer skill.
Sandbox fallback parity (Windows and Linux)
sandbox/{linux,macos,win32}/*.ts has primary executors plus legacy fallbacks (Windows NativeWindowsSandboxExecutor + RestrictedEnvironmentExecutor / PowerShell wrapper, Linux BubblewrapSandboxExecutor + no-sandbox fallback). When you modify any of the following on the primary executor, you MUST update the fallback path in the same change to keep behavior parity and add a parity test:
getEnvOverridessignature or merge semantics.wrapCommandscoping rules (allowed roots, read-only mounts, temp-dir allocation).isAvailable()/ capability probe logic.- Failure-mode handling (does a missing sandbox envelope hard-fail or soft-fail to env-only isolation?).
- Scope-materialization for lane-scoped resources.
A divergence between primary and fallback that is not exercised by a parity test is a regression. The existing per-OS test files tests/unit/sandbox/{linux,macos,win32}.test.ts must continue to cover both the primary and fallback paths after every env-affecting change — extend these tests rather than relying on dedicated sandbox-envoverride test files that may or may not exist in your branch.
SAST baseline capturing (differential scanning)
The sast_scan tool supports capture_baseline: true with a phase parameter
to snapshot pre-existing findings. Subsequent scans with the same phase value
perform differential checking — they only fail on new findings, not
pre-existing ones.
When to capture a baseline
- Before Phase 1 code changes. The baseline must reflect the state of the codebase before any new work is done. This ensures the differential scan catches findings introduced by the current session's changes.
Critical safety guard
NEVER capture a baseline after code changes have been made in a phase. A baseline captured post-edit silently encodes the very bugs the scan is meant to catch as "pre-existing," suppressing them indefinitely. This turns the SAST gate into theater.
Baseline capture also requires at least one supported, existing file to be
successfully scanned. Omitted, empty, or entirely unscannable changed_files
returns capture_baseline requires changed_files to produce a non-empty baseline
instead of reporting a successful no-op capture.
How to use it
- Identify the files to scan. In a phase, use the union of declared task-scope
files plus files the coder is expected to touch. Derive the list from
declare_scopeoutputs,git diff --name-only, or the phase's task specs. - Before any coder delegation in Phase 1, capture the baseline:
sast_scan(directory, changed_files=[...], capture_baseline=true, phase=1) - After coder work, scan the same file set:
This returns only NEW findings (absent from the baseline).sast_scan(directory, changed_files=[...], phase=1) - If a pre-existing finding is legitimately fixed, the baseline can be re-captured at the start of the next phase with the updated file list.
Why this matters
During PR #1704 review, SAST flagged RegExp.prototype.exec() as
"command injection via child_process.exec()" — a false positive that blocked
the gate. With a baseline captured before the phase, this pre-existing false
positive would have been suppressed, and only genuinely new findings would
surface.
Frequently asked questions
What to verify before installation and use
What does the engineering-conventions source document cover?
Authoritative source: AGENTS.md at the repo root and docs/engineering-invariants.md. This skill is a pointer + summary so the OpenCode agent loads the right invariants before touching dangerous areas. Read AGENTS.md first. When this skill conflicts with AGENTS.md, AGENTS.md wins.
How do I install engineering-conventions?
The source record exposes this install command: npx skills add https://github.com/ZaxbyHub/opencode-swarm --skill ".opencode/skills/engineering-conventions". Inspect the command and pinned source before running it.
Which permission-related actions were detected?
Static rules flagged exec-script, network, read-files in the source; the page lists the matching lines and excerpts.
Alternatives
Compare before choosing
ZaxbyHub/opencode-swarm
engineering-conventions
Guidelines and non-negotiable engineering invariants for modifying opencode-swarm. Load before architecture, plugin initialization, subprocess, tool registration, plan durability, .swarm storage, runtime portability, session/global state, guardrails/retry, chat/system message hooks, or release/cache changes. Authoritative source: AGENTS.md at the repo root and docs/engineering-invariants.md.
vasilyu1983/AI-Agents-public
research-git
Scans public GitHub repos for agent skills, dev practices, and code patterns. Use when enriching skills, setting team policy, or researching a build domain.
open-edge-platform/edge-ai-libraries
chatqna-helm-deploy
Deploy Chat Question-and-Answer Core to Kubernetes using Helm (OpenVINO CPU, OpenVINO GPU, or Ollama), including values.yaml configuration, helm install/upgrade, deployment verification, uninstall, and translation from Docker Compose setup_env.sh variables into Helm override values. Use this skill when the user says "deploy chatqna core to kubernetes", "helm install chatqna-core", "configure values.yaml", "convert compose config to helm", or "translate setup_env.sh to chart values".
almanak-co/sdk
almanak-strategy-builder
Build, test, and deploy DeFi trading strategies using the Almanak SDK. ALWAYS use this skill when the user mentions almanak, DeFi strategy, trading strategy, yield farming, liquidity provision, token swap, borrowing, lending, perpetuals, staking, vault deposit, bridging tokens, backtesting, paper trading, or on-chain execution. Use for writing strategy.py files, composing intents (Swap, LP, Borrow, Supply, Perp, Bridge, Stake, Vault, Prediction), working with config.json strategy parameters, run