@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 +4 -4
- package/bin/ag.js +0 -0
- package/dist/{chunk-IYLBLNXA.js → chunk-EUPYDPML.js} +4 -2
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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 |
|
|
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 →
|
|
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: "
|
|
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
package/dist/index.js
CHANGED