@adityaaria/spark 6.0.26 → 6.0.27

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.
@@ -3,7 +3,7 @@
3
3
  "description": "Development marketplace for SPARK core skills library",
4
4
  "owner": {
5
5
  "name": "Aditya Aria",
6
- "email": "jesse@fsck.com"
6
+ "email": "adityaaria20@gmail.com"
7
7
  },
8
8
  "plugins": [
9
9
  {
@@ -13,8 +13,8 @@
13
13
  "source": "./",
14
14
  "author": {
15
15
  "name": "Aditya Aria",
16
- "email": "jesse@fsck.com"
16
+ "email": "adityaaria20@gmail.com"
17
17
  }
18
18
  }
19
19
  ]
20
- }
20
+ }
@@ -4,7 +4,7 @@
4
4
  "version": "6.0.3",
5
5
  "author": {
6
6
  "name": "Aditya Aria",
7
- "email": "jesse@fsck.com"
7
+ "email": "adityaaria20@gmail.com"
8
8
  },
9
9
  "homepage": "https://github.com/adityaaria/SPARK",
10
10
  "repository": "https://github.com/adityaaria/SPARK",
@@ -17,4 +17,4 @@
17
17
  "best-practices",
18
18
  "workflows"
19
19
  ]
20
- }
20
+ }
@@ -4,7 +4,7 @@
4
4
  "description": "An agentic skills framework & software development methodology that works: planning, TDD, debugging, and collaboration workflows.",
5
5
  "author": {
6
6
  "name": "Aditya Aria",
7
- "email": "jesse@fsck.com",
7
+ "email": "adityaaria20@gmail.com",
8
8
  "url": "https://github.com/adityaaria"
9
9
  },
10
10
  "homepage": "https://github.com/adityaaria/SPARK",
@@ -45,4 +45,4 @@
45
45
  "logo": "./assets/app-icon.png",
46
46
  "screenshots": []
47
47
  }
48
- }
48
+ }
@@ -5,7 +5,7 @@
5
5
  "version": "6.0.3",
6
6
  "author": {
7
7
  "name": "Aditya Aria",
8
- "email": "jesse@fsck.com"
8
+ "email": "adityaaria20@gmail.com"
9
9
  },
10
10
  "homepage": "https://github.com/adityaaria/SPARK",
11
11
  "repository": "https://github.com/adityaaria/SPARK",
@@ -20,4 +20,4 @@
20
20
  ],
21
21
  "skills": "./skills/",
22
22
  "hooks": "./hooks/hooks-cursor.json"
23
- }
23
+ }
@@ -4,7 +4,7 @@
4
4
  "description": "An agentic skills framework and software development methodology.",
5
5
  "author": {
6
6
  "name": "Aditya Aria",
7
- "email": "jesse@fsck.com"
7
+ "email": "adityaaria20@gmail.com"
8
8
  },
9
9
  "homepage": "https://github.com/adityaaria/SPARK",
10
10
  "license": "MIT",
@@ -35,4 +35,4 @@
35
35
  ],
36
36
  "websiteURL": "https://github.com/adityaaria/SPARK"
37
37
  }
38
- }
38
+ }
@@ -421,8 +421,15 @@ get_target_dir() {
421
421
  esac
422
422
  else
423
423
  # Project scope: relative to current working directory
424
- # Modern AI agents (Codex, Gemini, Antigravity, etc.) use .agents as the universal workspace customization root.
425
- echo "$(pwd)/.agents"
424
+ case "$agent_id" in
425
+ claude) echo "$(pwd)/.claude" ;;
426
+ codex) echo "$(pwd)/.codex" ;;
427
+ cursor) echo "$(pwd)/.cursor" ;;
428
+ kimi) echo "$(pwd)/.kimi" ;;
429
+ opencode) echo "$(pwd)/.opencode" ;;
430
+ pi) echo "$(pwd)/.pi" ;;
431
+ *) echo "$(pwd)/.$agent_id" ;;
432
+ esac
426
433
  fi
427
434
  }
428
435
 
@@ -620,6 +627,10 @@ install_for_agent() {
620
627
  *)
621
628
  # Shell-hook agents: copy manifest to agent-plugin dir
622
629
  local plugin_dir="$target_dir/.${agent_id}-plugin"
630
+ # For project scope, put manifest in the target dir itself
631
+ if [ "$SCOPE" = "project" ]; then
632
+ plugin_dir="$(pwd)/.${agent_id}-plugin"
633
+ fi
623
634
  if [ -f "$source_path" ]; then
624
635
  mkdir -p "$plugin_dir"
625
636
  copy_file "$source_path" "$plugin_dir/$manifest_basename"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adityaaria/spark",
3
- "version": "6.0.26",
3
+ "version": "6.0.27",
4
4
  "description": "SPARK skills and runtime bootstrap for coding agents",
5
5
  "type": "module",
6
6
  "publishConfig": {