Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions packages/amico-run/esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ const common = {
bundle: true,
platform: "node",
target: "node20",
// Data-as-import (the #820 sota seed): resources/*.toml are the CANONICAL
// shipped data files, imported as text so the self-contained bins carry
// them (the vsix stages only bin/dist/*.js — no resources dir rides
// along). Vitest loads the same files through the matching plugin in
// vitest.config.ts; the d.ts beside src/ types the specifier.
loader: { ".toml": "text" },
// ESM, not CJS: the package is "type": "module", so node executes the bundle as ESM —
// a CJS bundle would die on `require is not defined in ES module scope`.
format: "esm",
Expand Down
81 changes: 81 additions & 0 deletions packages/amico-run/resources/watched-repos.seed.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# watched-repos.seed.toml — the SEED registry (#820, spec spec-20260905-103000
# living-sota D3): the SOTA codebase lens's shipped data. A fresh sota root
# bootstraps its living copy from this seed; thereafter adding a repo is a
# DATA EDIT of the living registry (never code). The categories are the
# spec's D3 seed set: canonical opencode + the harness-agnostic SOTA field,
# Julia optimal-control adjacent to the Piccolo stack, QEC/qLDPC challenge
# repos, quantum SDK release tracks, the agent-framework field the
# fork-split session surveyed by hand.
schema_version = "1"

[[repos]]
repo = "anomalyco/opencode"
why_watched = "the canonical harness our vendored fork tracks — upstream drift is product drift"
domains = ["agent-harness"]
fetch_surface = ["releases", "issues"]
match_keywords = ["plugin", "permission", "session", "agent", "mcp"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "earendil-works/pi"
why_watched = "the minimal-core extension harness the fork-split SOTA pass surveyed — session trees, steering queues"
domains = ["agent-harness"]
fetch_surface = ["releases", "issues"]
match_keywords = ["session", "branch", "steering", "extension"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "JuliaQuantumControl/QuantumControl.jl"
why_watched = "the Julia optimal-control framework adjacent to the Piccolo stack — API and method shifts propagate into our authoring map"
domains = ["julia-optimal-control"]
fetch_surface = ["releases", "issues"]
match_keywords = ["GRAPE", "Krotov", "propagator", "objective", "trajectory"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "JuliaQuantumControl/QuantumPropagators.jl"
why_watched = "the propagator layer under QuantumControl — integrator changes move our convergence behavior"
domains = ["julia-optimal-control"]
fetch_surface = ["releases", "issues"]
match_keywords = ["Magnus", "integrator", "Chebyshev", "exponential"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "errorcorrectionzoo/ecz"
why_watched = "the error-correction zoo — new qLDPC code families feed the qLDPC challenge campaign's hypothesis space"
domains = ["qec-qldpc"]
fetch_surface = ["releases", "issues"]
match_keywords = ["qLDPC", "quantum LDPC", "code", "decoder"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "Qiskit/qiskit"
why_watched = "the canonical quantum SDK release track — pulse-level and transpiler moves define the field's direction"
domains = ["quantum-sdk"]
fetch_surface = ["releases"]
match_keywords = ["pulse", "transpiler", "qasm", "backend"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "quantumlib/Cirq"
why_watched = "the second quantum SDK track — schedule/pulse surface changes signal field moves"
domains = ["quantum-sdk"]
fetch_surface = ["releases"]
match_keywords = ["pulse", "schedule", "gate", "simulator"]
last_success = ""
consecutive_failures = 0

[[repos]]
repo = "pasqal-io/Pulser"
why_watched = "the neutral-atom SDK — Pasqal device-path changes move our pasqal submission contract"
domains = ["quantum-sdk", "neutral-atoms"]
fetch_surface = ["releases", "issues"]
match_keywords = ["sequence", "register", "pulse", "emulator", "device"]
last_success = ""
consecutive_failures = 0
Loading
Loading