any-skills 0.1.3 → 0.1.4

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/README.md CHANGED
@@ -5,7 +5,7 @@ Gemini, and others can reuse the same skills.
5
5
 
6
6
  ## What it does
7
7
 
8
- - Creates a shared `.skills` directory in the working directory (or uses the
8
+ - Creates a shared `skills` directory in the working directory (or uses the
9
9
  configured target).
10
10
  - Creates tool links such as `.claude/skills` or `.codex/skills`.
11
11
  - Auto-detects `claude`, `codex`, and `gemini` commands on your PATH by default.
@@ -51,7 +51,7 @@ Create `.skillsrc` (JSON) in the working directory.
51
51
 
52
52
  Supported fields:
53
53
 
54
- - `target`: optional string. Overrides where skills are stored (default: `.skills`).
54
+ - `target`: optional string. Overrides where skills are stored (default: `skills`).
55
55
  - `links`: array of link definitions. Strings map to `target` by default.
56
56
  - `tools`: optional object mapping command names to link paths.
57
57
 
@@ -59,7 +59,7 @@ Example:
59
59
 
60
60
  ```json
61
61
  {
62
- "target": ".skills",
62
+ "target": "skills",
63
63
  "links": [".codex/skills", ".claude/skills"]
64
64
  }
65
65
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "any-skills",
3
- "version": "0.1.3",
4
- "description": "Share skills between Claude, Codex, and similar tools via a shared .skills directory.",
3
+ "version": "0.1.4",
4
+ "description": "Share skills between Claude, Codex, and similar tools via a shared skills directory.",
5
5
  "type": "commonjs",
6
6
  "bin": {
7
7
  "any-skills": "scripts/cli.js"
@@ -3,7 +3,7 @@
3
3
  const fs = require('fs');
4
4
  const path = require('path');
5
5
 
6
- const targetName = '.skills';
6
+ const targetName = 'skills';
7
7
  const configFileName = '.skillsrc';
8
8
  const defaultToolTargets = {
9
9
  claude: '.claude/skills',