@vibe-forge/workspace-assets 0.10.1-alpha.1 → 0.11.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.
package/__tests__/bundle.spec.ts
CHANGED
|
@@ -479,19 +479,23 @@ describe('resolvePromptAssetSelection', () => {
|
|
|
479
479
|
|
|
480
480
|
await writeDocument(
|
|
481
481
|
join(workspace, '.ai/plugins/demo/.vf-plugin.json'),
|
|
482
|
-
JSON.stringify(
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
482
|
+
JSON.stringify(
|
|
483
|
+
{
|
|
484
|
+
version: 1,
|
|
485
|
+
adapter: 'claude',
|
|
486
|
+
name: 'demo',
|
|
487
|
+
scope: 'demo',
|
|
488
|
+
installedAt: new Date().toISOString(),
|
|
489
|
+
source: {
|
|
490
|
+
type: 'path',
|
|
491
|
+
path: './demo'
|
|
492
|
+
},
|
|
493
|
+
nativePluginPath: 'native',
|
|
494
|
+
vibeForgePluginPath: 'vibe-forge'
|
|
491
495
|
},
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
496
|
+
null,
|
|
497
|
+
2
|
|
498
|
+
)
|
|
495
499
|
)
|
|
496
500
|
await writeDocument(
|
|
497
501
|
join(workspace, '.ai/plugins/demo/vibe-forge/skills/research/SKILL.md'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibe-forge/workspace-assets",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "Workspace asset resolution and adapter asset planning for Vibe Forge",
|
|
5
5
|
"imports": {
|
|
6
6
|
"#~/*.js": {
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"fast-glob": "^3.3.3",
|
|
30
30
|
"front-matter": "^4.0.2",
|
|
31
31
|
"js-yaml": "^4.1.1",
|
|
32
|
-
"@vibe-forge/
|
|
33
|
-
"@vibe-forge/
|
|
34
|
-
"@vibe-forge/
|
|
35
|
-
"@vibe-forge/
|
|
32
|
+
"@vibe-forge/definition-core": "^0.11.0",
|
|
33
|
+
"@vibe-forge/config": "^0.11.0",
|
|
34
|
+
"@vibe-forge/types": "^0.11.0",
|
|
35
|
+
"@vibe-forge/utils": "^0.11.0"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@types/js-yaml": "^4.0.9"
|