@iannuttall/dotagents 0.1.0

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +84 -0
  3. package/dist/cli.js +5271 -0
  4. package/package.json +41 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ian Nuttall
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,84 @@
1
+ <div align="center">
2
+ <strong>dotagents</strong>
3
+ <br />
4
+ <em>One canonical .agents folder that powers all your AI tools.</em>
5
+
6
+ <br /><br />
7
+ <em>
8
+ Simple setup • One source of truth • Safe to re-run anytime
9
+ </em>
10
+ </div>
11
+
12
+ ## Quick Start
13
+
14
+ Requirements: Bun 1.3+.
15
+
16
+ Run the guided TUI:
17
+ ```bash
18
+ npx @iannuttall/dotagents
19
+ ```
20
+
21
+ Or with Bun:
22
+ ```bash
23
+ bunx @iannuttall/dotagents
24
+ ```
25
+
26
+ Choose a workspace (Global home or Project folder) and follow the prompts. You can run it again anytime to add skills/plugins or repair links.
27
+
28
+ Global home affects all projects. Project folder only affects the current directory you run dotagents from.
29
+
30
+ ## What it does
31
+
32
+ - Keeps `.agents` as the source of truth.
33
+ - Creates symlinks for Claude, Codex, and Factory.
34
+ - Installs skills from a local path, git URL, or HTTPS URL.
35
+ - Installs plugins from marketplaces.
36
+
37
+ ## Where it links
38
+
39
+ `.agents/AGENTS.md` → `~/.claude/CLAUDE.md`
40
+
41
+ `.agents/commands` → `~/.claude/commands`
42
+
43
+ `.agents/commands` → `~/.factory/commands`
44
+
45
+ `.agents/commands` → `~/.codex/prompts`
46
+
47
+ `.agents/hooks` → `~/.claude/hooks`
48
+
49
+ `.agents/hooks` → `~/.factory/hooks`
50
+
51
+ `.agents/skills` → `~/.claude/skills`
52
+
53
+ `.agents/skills` → `~/.factory/skills`
54
+
55
+ ## Development
56
+
57
+ Run the TUI in dev mode:
58
+ ```bash
59
+ bun run dev
60
+ ```
61
+
62
+ Type-check:
63
+ ```bash
64
+ bun run type-check
65
+ ```
66
+
67
+ Run tests:
68
+ ```bash
69
+ bun test
70
+ ```
71
+
72
+ Build the CLI:
73
+ ```bash
74
+ bun run build
75
+ ```
76
+
77
+ ## Notes
78
+
79
+ - Codex prompts always symlink to `.agents/commands` (canonical source).
80
+ - Skills require a valid `SKILL.md` with `name` + `description` frontmatter.
81
+
82
+ ## License
83
+
84
+ MIT