@funkai/cli 0.1.2 → 0.1.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +15 -0
- package/dist/index.mjs +8235 -9818
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -6
- package/src/commands/generate.ts +1 -1
- package/src/commands/prompts/create.ts +1 -1
- package/src/commands/prompts/generate.ts +1 -1
- package/src/commands/prompts/lint.ts +1 -1
- package/src/commands/validate.ts +1 -1
- package/src/index.ts +30 -1
- package/src/lib/prompts/codegen.ts +1 -1
- package/src/lib/prompts/pipeline.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @funkai/cli@0.1.
|
|
2
|
+
> @funkai/cli@0.1.3 build /home/runner/work/funkai/funkai/packages/cli
|
|
3
3
|
> kidd build
|
|
4
4
|
|
|
5
5
|
[?25l│
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
│ │
|
|
11
11
|
│ entry dist/index.mjs │
|
|
12
12
|
│ output dist │
|
|
13
|
-
│ version 0.1.
|
|
13
|
+
│ version 0.1.3 │
|
|
14
14
|
│ │
|
|
15
15
|
├───────────────────────────╯
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @funkai/cli
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8b89d9c: Simplify API surface across all packages: replace OpenRouter-specific provider layer with generic registry pattern, streamline agent internals, and restructure prompt entry points.
|
|
8
|
+
|
|
9
|
+
Migration notes:
|
|
10
|
+
|
|
11
|
+
- `@funkai/agents`: `AgentConfig.resolver` is replaced by `AgentConfig.registry`.
|
|
12
|
+
- `@funkai/models`: OpenRouter-specific provider exports (`openrouter.ts`, `resolver.ts`) were removed in favor of `createProviderRegistry` and `ProviderRegistry`.
|
|
13
|
+
- `@funkai/prompts`: Runtime helpers moved to `@funkai/prompts/runtime`, CLI helpers moved to `@funkai/prompts/cli`.
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [8b89d9c]
|
|
16
|
+
- @funkai/prompts@0.2.0
|
|
17
|
+
|
|
3
18
|
## 0.1.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|