@borasta/agentlink 1.0.0 → 1.0.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.
package/README.md CHANGED
@@ -65,7 +65,7 @@ Each adapter only links the categories that the IDE actually supports, based on
65
65
  | Target | IDE | Root doc | Skills | Agents | Commands |
66
66
  |--------|-----|----------|--------|--------|----------|
67
67
  | `claude` | Claude Code | `CLAUDE.md` | `.claude/skills/` | `.claude/agents/` | `.claude/commands/` |
68
- | `cursor` | Cursor | `.cursor/rules/AGENTS.md` | `.cursor/skills/` | -- | -- |
68
+ | `cursor` | Cursor | `AGENTS.md` | `.cursor/skills/` | `.cursor/agents/` | `.cursor/commands/` |
69
69
  | `codex` | Codex CLI | `AGENTS.md` | -- | -- | -- |
70
70
  | `opencode` | OpenCode | `AGENTS.md` | `.opencode/skills/` | `.opencode/agents/` | `.opencode/commands/` |
71
71
  | `windsurf` | Windsurf | `.windsurf/rules/AGENTS.md` | -- | -- | -- |
@@ -132,12 +132,12 @@ When you run `ag claude`, `agentlink`:
132
132
  ### Example: Cursor mapping
133
133
 
134
134
  ```
135
- .ai/AGENTS.md → .cursor/rules/AGENTS.md
135
+ .ai/AGENTS.md → AGENTS.md
136
136
  .ai/skills/coding-standards/SKILL.md → .cursor/skills/coding-standards/SKILL.md
137
+ .ai/agents/reviewer.md → .cursor/agents/reviewer.md
138
+ .ai/commands/deploy.md → .cursor/commands/deploy.md
137
139
  ```
138
140
 
139
- (Cursor does not support agents or commands, so those are skipped.)
140
-
141
141
  ### Example: Codex mapping
142
142
 
143
143
  ```
package/bin/ag.js CHANGED
File without changes
@@ -40,8 +40,10 @@ var cursorAdapter = {
40
40
  id: "cursor",
41
41
  name: "Cursor",
42
42
  description: "Cursor AI IDE",
43
- rootDocs: [{ source: "AGENTS.md", target: ".cursor/rules/AGENTS.md" }],
44
- skills: { dir: ".cursor/skills" }
43
+ rootDocs: [{ source: "AGENTS.md", target: "AGENTS.md" }],
44
+ skills: { dir: ".cursor/skills" },
45
+ agents: { dir: ".cursor/agents" },
46
+ commands: { dir: ".cursor/commands" }
45
47
  };
46
48
 
47
49
  // src/adapters/builtins/codex.ts
package/dist/cli.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  nodeFs,
6
6
  syncCommand,
7
7
  unlinkCommand
8
- } from "./chunk-IYLBLNXA.js";
8
+ } from "./chunk-EUPYDPML.js";
9
9
 
10
10
  // src/cli.ts
11
11
  import { Command } from "commander";
package/dist/index.js CHANGED
@@ -16,7 +16,7 @@ import {
16
16
  scanSourceDir,
17
17
  syncCommand,
18
18
  unlinkCommand
19
- } from "./chunk-IYLBLNXA.js";
19
+ } from "./chunk-EUPYDPML.js";
20
20
  export {
21
21
  AdapterRegistry,
22
22
  builtinAdapters,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@borasta/agentlink",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Manage symlinks from a canonical .ai folder to multiple agentic IDE configurations",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",