opencode-swarm 7.107.2 → 7.107.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/dist/cli/{curator-6zvpn7fs.js → curator-1nr4qszq.js} +6 -6
- package/dist/cli/{curator-drift-6ad8mxxb.js → curator-drift-ed7p5mfy.js} +2 -2
- package/dist/cli/{curator-llm-factory-r3m5e7n8.js → curator-llm-factory-x9tk7e6m.js} +6 -6
- package/dist/cli/{evidence-summary-service-7nwhd8s4.js → evidence-summary-service-9r28ds8t.js} +3 -3
- package/dist/cli/{guardrail-explain-zajegz3a.js → guardrail-explain-etdrhd4d.js} +7 -7
- package/dist/cli/{guardrail-log-fsc85hwa.js → guardrail-log-2rns4g6d.js} +2 -2
- package/dist/cli/{hive-promoter-nwcsha2j.js → hive-promoter-j4e6rfa6.js} +6 -6
- package/dist/cli/{index-r87xhtmx.js → index-502f6np6.js} +8 -8
- package/dist/cli/{index-mpe0yk9s.js → index-57ymmh7h.js} +5 -3
- package/dist/cli/{index-357p0baj.js → index-91j1sqzm.js} +14 -2
- package/dist/cli/{index-168p3bfr.js → index-cyzzdbvw.js} +573 -509
- package/dist/cli/{index-t4hbye3v.js → index-hkpw4wwa.js} +1 -1
- package/dist/cli/{index-f12bmedv.js → index-kzfkggjx.js} +88 -31
- package/dist/cli/{index-w8dzxnx4.js → index-m1xjr58n.js} +1 -1
- package/dist/cli/{index-fxtrk7y8.js → index-tgtmbf3r.js} +1 -1
- package/dist/cli/{index-jr54w7pb.js → index-w15984gg.js} +2 -2
- package/dist/cli/index.js +6 -6
- package/dist/cli/{pending-delegations-46xf2n2e.js → pending-delegations-ws51m1e1.js} +1 -1
- package/dist/cli/{pr-subscriptions-3c34rnm1.js → pr-subscriptions-0dpn4epk.js} +2 -2
- package/dist/hooks/guardrails/file-authority.d.ts +1 -1
- package/dist/hooks/knowledge-injector.d.ts +3 -0
- package/dist/hooks/knowledge-reader.d.ts +17 -0
- package/dist/hooks/semantic-diff-injection.d.ts +19 -0
- package/dist/index.js +236 -237
- package/dist/services/directive-predicate-runner.d.ts +1 -1
- package/dist/tools/knowledge-remove.d.ts +11 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Executes a small, fail-closed predicate DSL attached to a knowledge directive
|
|
6
6
|
* (`verification_predicate`). Handlers:
|
|
7
7
|
*
|
|
8
|
-
* grep:<regex>:<path-glob> PASS when
|
|
8
|
+
* grep:<regex>:<path-glob> PASS when a bounded in-process scan finds zero matches in the glob.
|
|
9
9
|
* (A "forbidden pattern" predicate: absence = pass.)
|
|
10
10
|
* tool:<argv> PASS when the command exits 0. Shell-free (argv
|
|
11
11
|
* array), binary must be on a conservative allowlist.
|
|
@@ -1,2 +1,13 @@
|
|
|
1
|
+
import { recordKnowledgeEvent } from '../hooks/knowledge-events.js';
|
|
2
|
+
import { getArchivedKnowledgeIds, transactKnowledge } from '../hooks/knowledge-store.js';
|
|
3
|
+
import { findSkillsBySourceKnowledgeId, findStaleSkillsBySourceKnowledgeId, retireOrMarkStale } from '../services/skill-generator.js';
|
|
1
4
|
import { createSwarmTool } from './create-tool.js';
|
|
5
|
+
export declare const _internals: {
|
|
6
|
+
transactKnowledge: typeof transactKnowledge;
|
|
7
|
+
getArchivedKnowledgeIds: typeof getArchivedKnowledgeIds;
|
|
8
|
+
findSkillsBySourceKnowledgeId: typeof findSkillsBySourceKnowledgeId;
|
|
9
|
+
findStaleSkillsBySourceKnowledgeId: typeof findStaleSkillsBySourceKnowledgeId;
|
|
10
|
+
retireOrMarkStale: typeof retireOrMarkStale;
|
|
11
|
+
recordKnowledgeEvent: typeof recordKnowledgeEvent;
|
|
12
|
+
};
|
|
2
13
|
export declare const knowledge_remove: ReturnType<typeof createSwarmTool>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.107.
|
|
3
|
+
"version": "7.107.3",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|