@webpresso/agent-kit 0.24.0 → 0.25.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.
@@ -6,7 +6,7 @@
6
6
  },
7
7
  "metadata": {
8
8
  "description": "Webpresso agent-kit Claude Code plugin: blueprints, skills, hooks, MCP server",
9
- "version": "0.24.0"
9
+ "version": "0.25.0"
10
10
  },
11
11
  "plugins": [
12
12
  {
@@ -23,5 +23,5 @@
23
23
  ]
24
24
  }
25
25
  ],
26
- "version": "0.24.0"
26
+ "version": "0.25.0"
27
27
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "webpresso",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "description": "Webpresso agent-kit: blueprints, skills, lore commit protocol, tech-debt lifecycle",
5
5
  "skills": "./skills",
6
6
  "commands": "./commands",
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
  > TypeScript infrastructure for AI-agent-driven development. One `wp` runtime
7
7
  > gives agents planning, tests, mutation, e2e, CI, docs, and debt tracking —
8
8
  > all summary-first so they keep context, and enforced as contracts so docs,
9
- > intent, and code can't drift. MIT. Experimental v0.x.
9
+ > intent, and code can't drift. MIT. Active development.
10
10
 
11
11
  ## What it is
12
12
 
@@ -125,7 +125,8 @@ validate` when `claude` is present).
125
125
 
126
126
  ## Status
127
127
 
128
- Experimental v0.x. Public APIs may change before v1.
128
+ Active development. Review [CHANGELOG.md](./CHANGELOG.md) before upgrading
129
+ across minor versions.
129
130
 
130
131
  ## License
131
132
 
@@ -22,10 +22,6 @@ export declare class WebpressoConfigExportError extends Error {
22
22
  readonly exportName: string;
23
23
  constructor(configPath: string, exportName?: string);
24
24
  }
25
- export declare class WebpressoConfigAmbiguousError extends Error {
26
- readonly configPaths: readonly string[];
27
- constructor(configPaths: readonly string[]);
28
- }
29
25
  export declare class HostAdapterModuleLoadError extends Error {
30
26
  readonly moduleSpecifier: string;
31
27
  readonly configPath: string;
@@ -23,14 +23,6 @@ export class WebpressoConfigExportError extends Error {
23
23
  this.name = 'WebpressoConfigExportError';
24
24
  }
25
25
  }
26
- export class WebpressoConfigAmbiguousError extends Error {
27
- configPaths;
28
- constructor(configPaths) {
29
- super(`Multiple Webpresso config files found: ${configPaths.join(', ')}`);
30
- this.configPaths = configPaths;
31
- this.name = 'WebpressoConfigAmbiguousError';
32
- }
33
- }
34
26
  export class HostAdapterModuleLoadError extends Error {
35
27
  moduleSpecifier;
36
28
  configPath;
@@ -65,12 +57,11 @@ export function resolveWebpressoConfigPath(cwd = process.cwd()) {
65
57
  }
66
58
  export function findWebpressoConfigPath(cwd = process.cwd()) {
67
59
  for (const searchDir of getSearchDirectories(cwd)) {
68
- const configPaths = WEBPRESSO_CONFIG_CANDIDATES.map((candidate) => resolve(searchDir, candidate.fileName)).filter((configPath) => existsSync(configPath));
69
- if (configPaths.length > 1) {
70
- throw new WebpressoConfigAmbiguousError(configPaths);
71
- }
72
- if (configPaths.length === 1) {
73
- return configPaths[0];
60
+ for (const candidate of WEBPRESSO_CONFIG_CANDIDATES) {
61
+ const configPath = resolve(searchDir, candidate.fileName);
62
+ if (existsSync(configPath)) {
63
+ return configPath;
64
+ }
74
65
  }
75
66
  }
76
67
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webpresso/agent-kit",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -696,10 +696,10 @@
696
696
  },
697
697
  "packageManager": "pnpm@11.1.1",
698
698
  "optionalDependencies": {
699
- "@webpresso/agent-kit-runtime-darwin-arm64": "0.24.0",
700
- "@webpresso/agent-kit-runtime-darwin-x64": "0.24.0",
701
- "@webpresso/agent-kit-runtime-linux-x64": "0.24.0",
702
- "@webpresso/agent-kit-runtime-linux-arm64": "0.24.0",
703
- "@webpresso/agent-kit-runtime-windows-x64": "0.24.0"
699
+ "@webpresso/agent-kit-runtime-darwin-arm64": "0.25.0",
700
+ "@webpresso/agent-kit-runtime-darwin-x64": "0.25.0",
701
+ "@webpresso/agent-kit-runtime-linux-x64": "0.25.0",
702
+ "@webpresso/agent-kit-runtime-linux-arm64": "0.25.0",
703
+ "@webpresso/agent-kit-runtime-windows-x64": "0.25.0"
704
704
  }
705
705
  }