opencode-swarm 7.110.2 → 7.111.0

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.
@@ -4,6 +4,8 @@ export interface PlaceholderScanInput {
4
4
  changed_files: string[];
5
5
  allow_globs?: string[];
6
6
  deny_patterns?: string[];
7
+ added_lines?: Record<string, number[]>;
8
+ allow_sentinels?: string[];
7
9
  }
8
10
  export interface PlaceholderFinding {
9
11
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm",
3
- "version": "7.110.2",
3
+ "version": "7.111.0",
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",
@@ -84,6 +84,8 @@
84
84
  "typecheck": "tsc --noEmit",
85
85
  "test": "bun test",
86
86
  "lint": "biome lint .",
87
+ "lint:ci": "biome ci .",
88
+ "test:unit:ci": "bun scripts/ci/run-unit-tests-local.ts",
87
89
  "drift:check": "bun run scripts/drift-check.ts",
88
90
  "format": "biome format . --write",
89
91
  "check": "biome check --write .",