simplemkt-skillctl 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/bin.mjs +1 -1
  2. package/package.json +1 -1
package/bin.mjs CHANGED
@@ -23,7 +23,7 @@ function option(name, fallback) {
23
23
  function agentDirectory(agent, scope, target) {
24
24
  if (target) return path.resolve(target);
25
25
  const root = scope === 'user' ? os.homedir() : process.cwd();
26
- if (agent === 'codex' && scope === 'user') return path.join(root, '.codex', 'skills');
26
+ if (agent === 'codex') return path.join(root, '.codex', 'skills');
27
27
  if (agent === 'claude-code') return path.join(root, '.claude', 'skills');
28
28
  return path.join(root, '.agents', 'skills');
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "simplemkt-skillctl",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Install licensed SimpleMkt Skills into supported agent hosts.",
5
5
  "type": "module",
6
6
  "bin": {