@adityaaria/spark 6.0.7 → 6.0.8

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.
@@ -2,7 +2,7 @@
2
2
  "name": "spark-dev",
3
3
  "description": "Development marketplace for SPARK core skills library",
4
4
  "owner": {
5
- "name": "Jesse Vincent",
5
+ "name": "Aditya Aria",
6
6
  "email": "jesse@fsck.com"
7
7
  },
8
8
  "plugins": [
@@ -12,7 +12,7 @@
12
12
  "version": "6.0.3",
13
13
  "source": "./",
14
14
  "author": {
15
- "name": "Jesse Vincent",
15
+ "name": "Aditya Aria",
16
16
  "email": "jesse@fsck.com"
17
17
  }
18
18
  }
@@ -3,7 +3,7 @@
3
3
  "description": "Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques",
4
4
  "version": "6.0.3",
5
5
  "author": {
6
- "name": "Jesse Vincent",
6
+ "name": "Aditya Aria",
7
7
  "email": "jesse@fsck.com"
8
8
  },
9
9
  "homepage": "https://github.com/adityaaria/SPARK",
@@ -3,7 +3,7 @@
3
3
  "version": "6.0.3",
4
4
  "description": "An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.",
5
5
  "author": {
6
- "name": "Jesse Vincent",
6
+ "name": "Aditya Aria",
7
7
  "email": "jesse@fsck.com",
8
8
  "url": "https://github.com/adityaaria"
9
9
  },
@@ -26,7 +26,7 @@
26
26
  "displayName": "SPARK",
27
27
  "shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",
28
28
  "longDescription": "Use SPARK to guide agent work through brainstorming, implementation planning, test-driven development, systematic debugging, parallel execution, code review, and finish-the-branch workflows.",
29
- "developerName": "Jesse Vincent",
29
+ "developerName": "Aditya Aria",
30
30
  "category": "Coding",
31
31
  "capabilities": [
32
32
  "Interactive",
@@ -4,7 +4,7 @@
4
4
  "description": "Core skills library: TDD, debugging, collaboration patterns, and proven techniques",
5
5
  "version": "6.0.3",
6
6
  "author": {
7
- "name": "Jesse Vincent",
7
+ "name": "Aditya Aria",
8
8
  "email": "jesse@fsck.com"
9
9
  },
10
10
  "homepage": "https://github.com/adityaaria/SPARK",
@@ -3,7 +3,7 @@
3
3
  "version": "6.0.3",
4
4
  "description": "An agentic skills framework and software development methodology.",
5
5
  "author": {
6
- "name": "Jesse Vincent",
6
+ "name": "Aditya Aria",
7
7
  "email": "jesse@fsck.com"
8
8
  },
9
9
  "homepage": "https://github.com/adityaaria/SPARK",
@@ -27,7 +27,7 @@
27
27
  "displayName": "SPARK",
28
28
  "shortDescription": "Planning, TDD, debugging, and delivery workflows for coding agents",
29
29
  "longDescription": "Use SPARK to guide agent work through brainstorming, implementation planning, test-driven development, systematic debugging, parallel execution, code review, and finish-the-branch workflows.",
30
- "developerName": "Jesse Vincent",
30
+ "developerName": "Aditya Aria",
31
31
  "capabilities": [
32
32
  "Interactive",
33
33
  "Read",
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Jesse Vincent
3
+ Copyright (c) 2025 Aditya Aria
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -276,7 +276,7 @@ MIT License - see LICENSE file for details
276
276
 
277
277
  ## Community
278
278
 
279
- SPARK is built by [Jesse Vincent](https://blog.fsck.com) and contributors.
279
+ SPARK is built by [Aditya Aria](https://blog.fsck.com) and contributors.
280
280
 
281
281
  - **Community**: Use the repository issues and discussions for support, questions, and sharing what you're building with SPARK
282
282
  - **Issues**: https://github.com/adityaaria/SPARK/issues
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adityaaria/spark",
3
- "version": "6.0.7",
3
+ "version": "6.0.8",
4
4
  "description": "SPARK skills and runtime bootstrap for coding agents",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -78,7 +78,7 @@ export function createVsCodeAdapter() {
78
78
  label: 'VS Code',
79
79
  kind: 'shell-hook',
80
80
  bootstrap: 'workspace plugin bundle -> VS Code chat.pluginLocations -> hooks/session-start -> using-spark',
81
- installHint: 'A Claude-compatible plugin bundle is staged locally and registered through .vscode/settings.json chat.pluginLocations.',
81
+ installHint: 'A standard plugin bundle is staged locally and registered through .vscode/settings.json chat.pluginLocations.',
82
82
  verifyHint: 'Open a fresh VS Code agent session and confirm using-spark loads before coding.',
83
83
  successMessage: 'SPARK is ready in VS Code.',
84
84
  automatedSteps: [
@@ -4,12 +4,12 @@ import path from 'node:path';
4
4
  const VSCODE_PLUGIN_DIR = path.join('.spark', 'vscode-plugin');
5
5
  const SETTINGS_PATH = path.join('.vscode', 'settings.json');
6
6
  const COPY_PATHS = [
7
- '.claude-plugin',
8
- 'assets',
9
- path.join('hooks', 'hooks.json'),
10
- path.join('hooks', 'run-hook.cmd'),
11
- path.join('hooks', 'session-start'),
12
- 'skills',
7
+ { src: '.claude-plugin', dest: '.vscode-plugin' },
8
+ { src: 'assets', dest: 'assets' },
9
+ { src: path.join('hooks', 'hooks.json'), dest: path.join('hooks', 'hooks.json') },
10
+ { src: path.join('hooks', 'run-hook.cmd'), dest: path.join('hooks', 'run-hook.cmd') },
11
+ { src: path.join('hooks', 'session-start'), dest: path.join('hooks', 'session-start') },
12
+ { src: 'skills', dest: 'skills' },
13
13
  ];
14
14
 
15
15
  export function installVsCodePlugin({ cwd = process.cwd(), packageRoot, dryRun = false }) {
@@ -19,9 +19,9 @@ export function installVsCodePlugin({ cwd = process.cwd(), packageRoot, dryRun =
19
19
  if (!dryRun) {
20
20
  fs.mkdirSync(targetRoot, { recursive: true });
21
21
 
22
- for (const relativePath of COPY_PATHS) {
23
- const sourcePath = path.join(packageRoot, relativePath);
24
- const targetPath = path.join(targetRoot, relativePath);
22
+ for (const mapping of COPY_PATHS) {
23
+ const sourcePath = path.join(packageRoot, mapping.src);
24
+ const targetPath = path.join(targetRoot, mapping.dest);
25
25
  const stat = fs.statSync(sourcePath);
26
26
 
27
27
  if (stat.isDirectory()) {
@@ -34,6 +34,13 @@ export function installVsCodePlugin({ cwd = process.cwd(), packageRoot, dryRun =
34
34
  fs.chmodSync(targetPath, stat.mode);
35
35
  }
36
36
 
37
+ const targetPluginJsonPath = path.join(targetRoot, '.vscode-plugin', 'plugin.json');
38
+ if (fs.existsSync(targetPluginJsonPath)) {
39
+ const pluginData = JSON.parse(fs.readFileSync(targetPluginJsonPath, 'utf8'));
40
+ pluginData.description = "Core skills library for VS Code: TDD, debugging, collaboration patterns, and proven techniques";
41
+ fs.writeFileSync(targetPluginJsonPath, JSON.stringify(pluginData, null, 2) + '\n', 'utf8');
42
+ }
43
+
37
44
  writeVsCodeSettings(settingsPath, targetRoot);
38
45
  }
39
46