opencode-swarm 7.126.1 → 7.126.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.opencode/skills/engineering-conventions/SKILL.md +1 -1
- package/.opencode/skills/swarm-pr-feedback/SKILL.md +19 -5
- package/.opencode/skills/swarm-pr-review/SKILL.md +28 -7
- package/dist/background/pr-event-delivery.d.ts +1 -1
- package/dist/cli/{config-doctor-23jxdqwv.js → config-doctor-mfx27331.js} +2 -2
- package/dist/cli/{curation-policy-0t6hny6g.js → curation-policy-n944aq62.js} +2 -2
- package/dist/cli/{curator-g8rggzbk.js → curator-jm9ehfkg.js} +12 -12
- package/dist/cli/{curator-llm-factory-36psae60.js → curator-llm-factory-3cy0h9yw.js} +12 -12
- package/dist/cli/{guardrail-explain-6ffgrjx9.js → guardrail-explain-va0kj05m.js} +13 -13
- package/dist/cli/{guardrail-log-57sczn5h.js → guardrail-log-61gya05m.js} +3 -3
- package/dist/cli/{hive-promoter-c458rgp5.js → hive-promoter-h9c4kyv0.js} +12 -12
- package/dist/cli/{index-w0yztxgq.js → index-3xd9a2g7.js} +1 -1
- package/dist/cli/{index-y9t766sw.js → index-5n868tw8.js} +62 -46
- package/dist/cli/{index-x1w4cx3n.js → index-6t5sa6v0.js} +2 -2
- package/dist/cli/{index-k5xh81c9.js → index-7bxw3v5w.js} +3 -3
- package/dist/cli/{index-6j9p0c40.js → index-88dt7c9z.js} +2 -2
- package/dist/cli/{index-yf4kvhrn.js → index-b16153py.js} +14 -14
- package/dist/cli/{index-1p9z8cc4.js → index-bf76q8q7.js} +1 -1
- package/dist/cli/{index-vvwf9ark.js → index-c48dvb6j.js} +2 -2
- package/dist/cli/{index-nkhp7j16.js → index-f97dm6tz.js} +5 -5
- package/dist/cli/{index-abw10n3f.js → index-gf9cxvp0.js} +1 -1
- package/dist/cli/{index-kx3533dm.js → index-gwss5btk.js} +1 -1
- package/dist/cli/{index-echdpdhy.js → index-gxw20m1d.js} +1 -1
- package/dist/cli/{index-cnhp6c0k.js → index-nqp13m5a.js} +1 -1
- package/dist/cli/{index-nmyg9b7v.js → index-pb8ag9vg.js} +4 -4
- package/dist/cli/{index-3hkbegq2.js → index-pf3xae4s.js} +1 -1
- package/dist/cli/{index-c8sqc3nh.js → index-vcqwhe9d.js} +4 -0
- package/dist/cli/index.js +12 -12
- package/dist/cli/{knowledge-escalator-kd80m9vp.js → knowledge-escalator-nna0zec3.js} +3 -3
- package/dist/cli/{knowledge-events-j7jfwm1d.js → knowledge-events-7k82xk36.js} +1 -1
- package/dist/cli/{knowledge-store-1d4byc7y.js → knowledge-store-efvtng9t.js} +1 -1
- package/dist/cli/{knowledge-validator-63mkgt9x.js → knowledge-validator-jh93eagj.js} +4 -4
- package/dist/cli/{scan-cursor-qzn5jmbe.js → scan-cursor-cydz8d9q.js} +2 -2
- package/dist/cli/{schema-2j92wnns.js → schema-fa033pqw.js} +1 -1
- package/dist/cli/{skill-generator-sv6zvdvz.js → skill-generator-8v463kj7.js} +5 -5
- package/dist/config/bundled-skills.d.ts +3 -2
- package/dist/hooks/delegation-gate.d.ts +14 -2
- package/dist/hooks/init-orphan-recovery.d.ts +1 -1
- package/dist/hooks/pr-workflow-auto-wake.d.ts +31 -0
- package/dist/hooks/pr-workflow-gate.d.ts +19 -1
- package/dist/hooks/pr-workflow-response-gate.d.ts +4 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +149 -146
- package/dist/tools/index.d.ts +1 -0
- package/dist/tools/manifest.d.ts +1 -0
- package/dist/tools/prepare-pr-workflow-checkout.d.ts +25 -0
- package/dist/tools/repo-graph/builder.d.ts +5 -4
- package/dist/tools/tool-metadata.d.ts +4 -0
- package/dist/utils/timeout.d.ts +8 -4
- package/package.json +1 -1
|
@@ -35,7 +35,7 @@ If you are not sure whether you are touching one of these, you are touching one
|
|
|
35
35
|
The full list of 12 invariants is in `AGENTS.md`. The four that have caused the most recent production regressions:
|
|
36
36
|
|
|
37
37
|
1. **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.
|
|
38
|
-
- **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.
|
|
38
|
+
- **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 task queue when nothing downstream needs it before `server()` resolves. Do not use `queueMicrotask` inside the initializer: it can run during a later `await` while `server()` is still unresolved.
|
|
39
39
|
2. **Subprocesses are bounded, non-interactive, and killable.** Every `bunSpawn(['<bin>', ...])` call must pass `cwd`, `stdin: 'ignore'` (unless intentionally interactive), `timeout: <ms>`, bounded stdio, and call `proc.kill()` in a `finally`. An outer `withTimeout` is not enough — it lets the awaiter proceed but does not abort the child.
|
|
40
40
|
3. **Runtime portability — Node-ESM-loadable + v1 plugin shape.** No top-level `bun:` imports in `dist/index.js`. Default export is `{ id, server }`. All `Bun.*` calls go through `src/utils/bun-compat.ts`. v6.86.8 / v6.86.9 are the cautionary tales.
|
|
41
41
|
4. **Test mock isolation.** `mock.module(...)` leaks across files in Bun's shared test-runner process. Prefer, in order: (a) `_test_exports` for pure function testing with zero mocks, (b) `_internals` dependency-injection seam for within-module mocking (see `src/utils/gitignore-warning.ts:_internals` and `src/hooks/diff-scope.ts:_internals`), (c) `mock.module` only when unavoidable. Restore in `afterEach`. The writing-tests skill covers all three tiers in detail; load it before modifying tests.
|
|
@@ -139,9 +139,12 @@ tree:
|
|
|
139
139
|
supersedes your planned fixes, and prefer the parallel work if it's more
|
|
140
140
|
comprehensive (more tests, better edge coverage, clearer error handling).
|
|
141
141
|
Abort your rebase, take the remote state, then add minor improvements on top.
|
|
142
|
-
- Verify the working tree is clean first (`git status --porcelain`). If
|
|
143
|
-
changes exist,
|
|
144
|
-
|
|
142
|
+
- Verify the working tree is clean first (`git status --porcelain`). If tracked
|
|
143
|
+
changes exist, call `prepare_pr_workflow_checkout` with every explicit dirty
|
|
144
|
+
tracked path. It creates an auditable, path-scoped stash and returns its
|
|
145
|
+
recovery command. Do not issue `git stash` through shell. The controller never
|
|
146
|
+
stashes untracked files; move or remove those manually, or abort the checkout.
|
|
147
|
+
- **Check out the head branch locally before dispatching feedback lanes.** Feedback verification reads the working-tree
|
|
145
148
|
filesystem (`Read`/`Glob`/`Grep`), and fixes must land on the PR branch — without a
|
|
146
149
|
checkout you would verify and patch the base branch's code instead. Record the
|
|
147
150
|
exact `merge_base...head_ref` range for diff-scoped inspection.
|
|
@@ -156,6 +159,15 @@ tree:
|
|
|
156
159
|
the upstream of an existing local branch with
|
|
157
160
|
`git branch --set-upstream-to=<remote>/<remote-branch> <local-branch>`).
|
|
158
161
|
Branch creation/tracking is blocked after the immutable head is bound.
|
|
162
|
+
- `gh pr checkout` is permitted only in its non-force, non-submodule form with
|
|
163
|
+
the PR number/URL and optional `--repo` or `--branch` flags. Never use
|
|
164
|
+
`--force`, `--recurse-submodules`, or detached checkout during this
|
|
165
|
+
transition.
|
|
166
|
+
- Before the first feedback verification dispatch binds the head, prove that
|
|
167
|
+
`git rev-parse HEAD` equals the authoritative full `pr_head_sha`,
|
|
168
|
+
`git status --porcelain` is empty, and the current branch tracks the intended
|
|
169
|
+
PR head remote/branch. A detached checkout is valid for review, not feedback
|
|
170
|
+
publication.
|
|
159
171
|
|
|
160
172
|
When a verification lane result includes `output_ref`, treat `output` as a
|
|
161
173
|
preview and call `retrieve_lane_output` before using it to classify, resolve,
|
|
@@ -730,8 +742,10 @@ the independently approved digest, the exact approved commit remains current,
|
|
|
730
742
|
its bound upstream remote-tracking ref points to that exact commit, every
|
|
731
743
|
feedback ID has exact-provenance evidence, and no PR-workflow lanes remain
|
|
732
744
|
open. While the gate remains active, the runtime replaces architect
|
|
733
|
-
final-response text with a mechanical blocked notice and re-wakes an
|
|
734
|
-
parent session.
|
|
745
|
+
final-response text with a mechanical blocked notice and normally re-wakes an
|
|
746
|
+
idle parent session. A user interruption pauses automatic wakes until a later
|
|
747
|
+
explicit user turn settles; the durable gate remains available to continue or
|
|
748
|
+
abort.
|
|
735
749
|
|
|
736
750
|
Report:
|
|
737
751
|
|
|
@@ -134,9 +134,26 @@ If scope cannot be determined, review the narrowest safe scope available and sta
|
|
|
134
134
|
|
|
135
135
|
### Pre-flight git ref availability
|
|
136
136
|
|
|
137
|
-
Before launching explorers (Phase 3),
|
|
138
|
-
|
|
139
|
-
|
|
137
|
+
Before launching explorers (Phase 3), perform this exact standalone sequence:
|
|
138
|
+
|
|
139
|
+
1. Resolve and retain the authoritative full `pr_head_sha` from PR metadata.
|
|
140
|
+
2. Verify the working tree is clean with `git status --porcelain`. If tracked
|
|
141
|
+
changes exist, call `prepare_pr_workflow_checkout` with every explicit dirty
|
|
142
|
+
tracked path. Do not issue `git stash` through shell. The controller never
|
|
143
|
+
stashes untracked files; move or remove those manually, or abort.
|
|
144
|
+
3. Fetch the PR head as one standalone command, for example
|
|
145
|
+
`git fetch origin refs/pull/<N>/head`. Do not compose fetch and checkout.
|
|
146
|
+
4. Prove the full commit exists locally with
|
|
147
|
+
`git cat-file -e <full_pr_head_sha>^{commit}`.
|
|
148
|
+
5. Check out the exact PR filesystem with
|
|
149
|
+
`git switch --detach <full_pr_head_sha>`. Do not use `--track FETCH_HEAD`:
|
|
150
|
+
`FETCH_HEAD` is not a remote-tracking branch.
|
|
151
|
+
6. Confirm `git rev-parse HEAD` equals the full `pr_head_sha`, bind that exact
|
|
152
|
+
head through the first PR-review controller call, and finish this before dispatching explorer lanes.
|
|
153
|
+
|
|
154
|
+
Explorer agents read files from the working tree, not from git history. Passing
|
|
155
|
+
the commit range in a prompt cannot substitute for this checkout because
|
|
156
|
+
`Read` / `Glob` / `Grep` operate on the filesystem.
|
|
140
157
|
- Explicitly pass the verified merge-base range (`base_sha...pr_head_sha`) in every explorer delegation so explorers inspect exactly the controller-bound PR diff. Include `base_ref` only as the live ref used to recompute `base_sha`; do not substitute a two-dot branch-tip range.
|
|
141
158
|
|
|
142
159
|
If refs cannot be fetched or checked out, state the limitation in the context pack.
|
|
@@ -1405,7 +1422,9 @@ the same exact
|
|
|
1405
1422
|
`pr_head_sha`. The tool refuses to clear the session gate while required base,
|
|
1406
1423
|
trigger, declared reviewer/critic, or open-lane obligations remain incomplete.
|
|
1407
1424
|
While the gate remains active, the runtime replaces architect final-response
|
|
1408
|
-
text with a mechanical blocked notice and re-wakes an idle parent session.
|
|
1425
|
+
text with a mechanical blocked notice and re-wakes an idle parent session. A
|
|
1426
|
+
user interruption pauses every automatic wake path until a later explicit user
|
|
1427
|
+
turn settles; the durable gate remains available to continue or abort. Only
|
|
1409
1428
|
emit the final report after the completion tool confirms that the gate cleared.
|
|
1410
1429
|
|
|
1411
1430
|
## Aborting an unrecoverable review
|
|
@@ -1419,9 +1438,11 @@ the merge-base bind can never verify. In that state the response gate
|
|
|
1419
1438
|
suspends further auto-resumes after a small number of consecutive
|
|
1420
1439
|
unproductive wakes, and the only exits are:
|
|
1421
1440
|
|
|
1422
|
-
1. **Diagnose and retry
|
|
1423
|
-
`git fetch origin refs/pull/<N>/head
|
|
1424
|
-
`git
|
|
1441
|
+
1. **Diagnose and retry the canonical standalone sequence.** Run
|
|
1442
|
+
`git fetch origin refs/pull/<N>/head`, verify
|
|
1443
|
+
`git cat-file -e <full_pr_head_sha>^{commit}`, then run
|
|
1444
|
+
`git switch --detach <full_pr_head_sha>`. Do not use `--track FETCH_HEAD`.
|
|
1445
|
+
Confirm `git rev-parse HEAD` equals the authoritative PR head, then recompute the exact
|
|
1425
1446
|
merge base with `git merge-base -- <base_ref> <pr_head_sha>` (single
|
|
1426
1447
|
command) and retry the `swarm-pr-review:base` dispatch with the exact
|
|
1427
1448
|
`pr_head_sha`, `base_sha`, and `base_ref`.
|
|
@@ -89,7 +89,7 @@ export declare function buildWakeMessage(events: FormattedPrEvent[]): string;
|
|
|
89
89
|
* clients that lack it. Bounded by withTimeout; returns false on any
|
|
90
90
|
* failure or timeout. Never throws.
|
|
91
91
|
*/
|
|
92
|
-
declare function sendWakePrompt(sessionID: string, events: FormattedPrEvent[]): Promise<boolean>;
|
|
92
|
+
declare function sendWakePrompt(sessionID: string, events: FormattedPrEvent[], messageID: string): Promise<boolean>;
|
|
93
93
|
export declare const _internals: {
|
|
94
94
|
sendWakePrompt: typeof sendWakePrompt;
|
|
95
95
|
withTimeout: typeof withTimeout;
|
|
@@ -12,8 +12,8 @@ import {
|
|
|
12
12
|
shouldRunOnStartup,
|
|
13
13
|
writeBackupArtifact,
|
|
14
14
|
writeDoctorArtifact
|
|
15
|
-
} from "./index-
|
|
16
|
-
import"./index-
|
|
15
|
+
} from "./index-3xd9a2g7.js";
|
|
16
|
+
import"./index-vcqwhe9d.js";
|
|
17
17
|
import"./index-bk5tah7q.js";
|
|
18
18
|
import"./index-z6xqpmqg.js";
|
|
19
19
|
import"./index-zjygnfay.js";
|
|
@@ -4,9 +4,9 @@ import {
|
|
|
4
4
|
authorizeCuration,
|
|
5
5
|
buildConfigFingerprintInput,
|
|
6
6
|
readCohortConfigFingerprint
|
|
7
|
-
} from "./index-
|
|
7
|
+
} from "./index-gwss5btk.js";
|
|
8
8
|
import"./index-rtry5xyf.js";
|
|
9
|
-
import"./index-
|
|
9
|
+
import"./index-nqp13m5a.js";
|
|
10
10
|
import"./index-ae75rja9.js";
|
|
11
11
|
import"./index-q27bajqb.js";
|
|
12
12
|
import"./index-zgwm4ryv.js";
|
|
@@ -14,31 +14,31 @@ import {
|
|
|
14
14
|
runCuratorInit,
|
|
15
15
|
runCuratorPhase,
|
|
16
16
|
writeCuratorSummary
|
|
17
|
-
} from "./index-
|
|
18
|
-
import"./index-
|
|
19
|
-
import"./index-
|
|
17
|
+
} from "./index-5n868tw8.js";
|
|
18
|
+
import"./index-gxw20m1d.js";
|
|
19
|
+
import"./index-3xd9a2g7.js";
|
|
20
20
|
import"./index-kk1scggc.js";
|
|
21
21
|
import"./index-4905hd2m.js";
|
|
22
22
|
import"./index-134d35c1.js";
|
|
23
23
|
import"./index-6n2jpz7x.js";
|
|
24
|
-
import"./index-
|
|
25
|
-
import"./index-
|
|
26
|
-
import"./index-
|
|
24
|
+
import"./index-7bxw3v5w.js";
|
|
25
|
+
import"./index-f97dm6tz.js";
|
|
26
|
+
import"./index-pf3xae4s.js";
|
|
27
27
|
import"./index-vxv732ex.js";
|
|
28
28
|
import"./index-c8s9a3zh.js";
|
|
29
29
|
import"./index-9ss2m4rs.js";
|
|
30
30
|
import"./index-23zsx7dm.js";
|
|
31
|
-
import"./index-
|
|
32
|
-
import"./index-
|
|
31
|
+
import"./index-88dt7c9z.js";
|
|
32
|
+
import"./index-gwss5btk.js";
|
|
33
33
|
import"./index-rtry5xyf.js";
|
|
34
|
-
import"./index-
|
|
35
|
-
import"./index-
|
|
34
|
+
import"./index-pb8ag9vg.js";
|
|
35
|
+
import"./index-nqp13m5a.js";
|
|
36
36
|
import"./index-ae75rja9.js";
|
|
37
37
|
import"./index-q27bajqb.js";
|
|
38
|
-
import"./index-
|
|
38
|
+
import"./index-gf9cxvp0.js";
|
|
39
39
|
import"./index-k5jrywpr.js";
|
|
40
40
|
import"./index-n832052r.js";
|
|
41
|
-
import"./index-
|
|
41
|
+
import"./index-vcqwhe9d.js";
|
|
42
42
|
import"./index-bk5tah7q.js";
|
|
43
43
|
import"./index-8fwhhayc.js";
|
|
44
44
|
import"./index-q1exe2b3.js";
|
|
@@ -1,31 +1,31 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
createCuratorLLMDelegate
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
6
|
-
import"./index-
|
|
4
|
+
} from "./index-5n868tw8.js";
|
|
5
|
+
import"./index-gxw20m1d.js";
|
|
6
|
+
import"./index-3xd9a2g7.js";
|
|
7
7
|
import"./index-kk1scggc.js";
|
|
8
8
|
import"./index-4905hd2m.js";
|
|
9
9
|
import"./index-134d35c1.js";
|
|
10
10
|
import"./index-6n2jpz7x.js";
|
|
11
|
-
import"./index-
|
|
12
|
-
import"./index-
|
|
13
|
-
import"./index-
|
|
11
|
+
import"./index-7bxw3v5w.js";
|
|
12
|
+
import"./index-f97dm6tz.js";
|
|
13
|
+
import"./index-pf3xae4s.js";
|
|
14
14
|
import"./index-vxv732ex.js";
|
|
15
15
|
import"./index-c8s9a3zh.js";
|
|
16
16
|
import"./index-9ss2m4rs.js";
|
|
17
17
|
import"./index-23zsx7dm.js";
|
|
18
|
-
import"./index-
|
|
19
|
-
import"./index-
|
|
18
|
+
import"./index-88dt7c9z.js";
|
|
19
|
+
import"./index-gwss5btk.js";
|
|
20
20
|
import"./index-rtry5xyf.js";
|
|
21
|
-
import"./index-
|
|
22
|
-
import"./index-
|
|
21
|
+
import"./index-pb8ag9vg.js";
|
|
22
|
+
import"./index-nqp13m5a.js";
|
|
23
23
|
import"./index-ae75rja9.js";
|
|
24
24
|
import"./index-q27bajqb.js";
|
|
25
|
-
import"./index-
|
|
25
|
+
import"./index-gf9cxvp0.js";
|
|
26
26
|
import"./index-k5jrywpr.js";
|
|
27
27
|
import"./index-n832052r.js";
|
|
28
|
-
import"./index-
|
|
28
|
+
import"./index-vcqwhe9d.js";
|
|
29
29
|
import"./index-bk5tah7q.js";
|
|
30
30
|
import"./index-8fwhhayc.js";
|
|
31
31
|
import"./index-q1exe2b3.js";
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailExplain
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
6
|
-
import"./index-
|
|
7
|
-
import"./index-
|
|
4
|
+
} from "./index-6t5sa6v0.js";
|
|
5
|
+
import"./index-5n868tw8.js";
|
|
6
|
+
import"./index-gxw20m1d.js";
|
|
7
|
+
import"./index-3xd9a2g7.js";
|
|
8
8
|
import"./index-kk1scggc.js";
|
|
9
9
|
import"./index-4905hd2m.js";
|
|
10
10
|
import"./index-134d35c1.js";
|
|
11
11
|
import"./index-6n2jpz7x.js";
|
|
12
|
-
import"./index-
|
|
13
|
-
import"./index-
|
|
14
|
-
import"./index-
|
|
12
|
+
import"./index-7bxw3v5w.js";
|
|
13
|
+
import"./index-f97dm6tz.js";
|
|
14
|
+
import"./index-pf3xae4s.js";
|
|
15
15
|
import"./index-vxv732ex.js";
|
|
16
16
|
import"./index-c8s9a3zh.js";
|
|
17
17
|
import"./index-9ss2m4rs.js";
|
|
18
18
|
import"./index-23zsx7dm.js";
|
|
19
|
-
import"./index-
|
|
20
|
-
import"./index-
|
|
19
|
+
import"./index-88dt7c9z.js";
|
|
20
|
+
import"./index-gwss5btk.js";
|
|
21
21
|
import"./index-rtry5xyf.js";
|
|
22
|
-
import"./index-
|
|
23
|
-
import"./index-
|
|
22
|
+
import"./index-pb8ag9vg.js";
|
|
23
|
+
import"./index-nqp13m5a.js";
|
|
24
24
|
import"./index-ae75rja9.js";
|
|
25
25
|
import"./index-q27bajqb.js";
|
|
26
|
-
import"./index-
|
|
26
|
+
import"./index-gf9cxvp0.js";
|
|
27
27
|
import"./index-k5jrywpr.js";
|
|
28
28
|
import"./index-n832052r.js";
|
|
29
|
-
import"./index-
|
|
29
|
+
import"./index-vcqwhe9d.js";
|
|
30
30
|
import"./index-bk5tah7q.js";
|
|
31
31
|
import"./index-8fwhhayc.js";
|
|
32
32
|
import"./index-q1exe2b3.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailLog
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
6
|
-
import"./index-
|
|
4
|
+
} from "./index-bf76q8q7.js";
|
|
5
|
+
import"./index-gxw20m1d.js";
|
|
6
|
+
import"./index-vcqwhe9d.js";
|
|
7
7
|
import"./index-bk5tah7q.js";
|
|
8
8
|
import"./index-z6xqpmqg.js";
|
|
9
9
|
import"./index-zjygnfay.js";
|
|
@@ -7,33 +7,33 @@ import {
|
|
|
7
7
|
isHiveEligible,
|
|
8
8
|
promoteFromSwarm,
|
|
9
9
|
promoteToHive
|
|
10
|
-
} from "./index-
|
|
11
|
-
import"./index-
|
|
12
|
-
import"./index-
|
|
10
|
+
} from "./index-5n868tw8.js";
|
|
11
|
+
import"./index-gxw20m1d.js";
|
|
12
|
+
import"./index-3xd9a2g7.js";
|
|
13
13
|
import"./index-kk1scggc.js";
|
|
14
14
|
import"./index-4905hd2m.js";
|
|
15
15
|
import"./index-134d35c1.js";
|
|
16
16
|
import"./index-6n2jpz7x.js";
|
|
17
|
-
import"./index-
|
|
18
|
-
import"./index-
|
|
19
|
-
import"./index-
|
|
17
|
+
import"./index-7bxw3v5w.js";
|
|
18
|
+
import"./index-f97dm6tz.js";
|
|
19
|
+
import"./index-pf3xae4s.js";
|
|
20
20
|
import"./index-vxv732ex.js";
|
|
21
21
|
import"./index-c8s9a3zh.js";
|
|
22
22
|
import"./index-9ss2m4rs.js";
|
|
23
23
|
import"./index-23zsx7dm.js";
|
|
24
|
-
import"./index-
|
|
25
|
-
import"./index-
|
|
24
|
+
import"./index-88dt7c9z.js";
|
|
25
|
+
import"./index-gwss5btk.js";
|
|
26
26
|
import"./index-rtry5xyf.js";
|
|
27
27
|
import {
|
|
28
28
|
resolveHiveKnowledgePath
|
|
29
|
-
} from "./index-
|
|
30
|
-
import"./index-
|
|
29
|
+
} from "./index-pb8ag9vg.js";
|
|
30
|
+
import"./index-nqp13m5a.js";
|
|
31
31
|
import"./index-ae75rja9.js";
|
|
32
32
|
import"./index-q27bajqb.js";
|
|
33
|
-
import"./index-
|
|
33
|
+
import"./index-gf9cxvp0.js";
|
|
34
34
|
import"./index-k5jrywpr.js";
|
|
35
35
|
import"./index-n832052r.js";
|
|
36
|
-
import"./index-
|
|
36
|
+
import"./index-vcqwhe9d.js";
|
|
37
37
|
import"./index-bk5tah7q.js";
|
|
38
38
|
import"./index-8fwhhayc.js";
|
|
39
39
|
import"./index-q1exe2b3.js";
|