@adityaaria/spark 6.0.13 → 6.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adityaaria/spark",
3
- "version": "6.0.13",
3
+ "version": "6.0.14",
4
4
  "description": "SPARK skills and runtime bootstrap for coding agents",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -48,9 +48,13 @@ export function stageCodexPlugin({ cwd = process.cwd(), packageRoot, dryRun = fa
48
48
  }
49
49
 
50
50
  function writeMarketplaceManifest(marketplaceRoot) {
51
- const manifestPath = path.join(marketplaceRoot, 'marketplace.json');
51
+ const manifestPath = path.join(marketplaceRoot, '.agents', 'plugins', 'marketplace.json');
52
52
  const manifest = {
53
53
  name: 'spark-local',
54
+ interface: {
55
+ displayName: 'SPARK',
56
+ shortDescription: 'Local SPARK marketplace for Codex CLI',
57
+ },
54
58
  plugins: [
55
59
  {
56
60
  name: 'spark',
@@ -67,6 +71,6 @@ function writeMarketplaceManifest(marketplaceRoot) {
67
71
  ],
68
72
  };
69
73
 
70
- fs.mkdirSync(marketplaceRoot, { recursive: true });
74
+ fs.mkdirSync(path.dirname(manifestPath), { recursive: true });
71
75
  fs.writeFileSync(manifestPath, JSON.stringify(manifest, null, 2) + '\n', 'utf8');
72
76
  }