awesome-agents 0.1.3 → 0.1.6
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/AGENTS.md +7 -4
- package/CHANGELOG.md +35 -0
- package/README.md +45 -17
- package/docs/cli.md +29 -8
- package/docs/product/README.md +1 -1
- package/docs/product/command-model.md +14 -9
- package/docs/product/harness-targets.md +26 -3
- package/docs/product/product-scope.md +7 -2
- package/docs/product/profile-source-format.md +28 -12
- package/package.json +3 -2
- package/src/cli.js +140 -10
- package/src/constants.js +14 -3
- package/src/help.js +14 -12
- package/src/installer.js +148 -14
- package/src/renderers.js +117 -4
- package/src/skills.js +397 -0
- package/src/source.js +162 -20
package/AGENTS.md
CHANGED
|
@@ -9,10 +9,11 @@ OpenCode.
|
|
|
9
9
|
|
|
10
10
|
The canonical source format is repo-neutral:
|
|
11
11
|
|
|
12
|
-
- `agents
|
|
13
|
-
- `agents
|
|
14
|
-
- `agents
|
|
15
|
-
- `agents
|
|
12
|
+
- `agents/<slug>/agent.yaml`: preferred YAML profile definition.
|
|
13
|
+
- `agents/<slug>/agent.agf.yaml`: Agent Format-style YAML profile definition.
|
|
14
|
+
- `agents/<slug>/agent.md`: Markdown profile definition with YAML frontmatter.
|
|
15
|
+
- `agents/<slug>/scripts/`: agent-owned scripts installed into the agent home.
|
|
16
|
+
- `agents/<slug>/references/`: agent-owned references installed into the agent home.
|
|
16
17
|
|
|
17
18
|
Never hard-code a particular source repository into runtime behavior, tests, or
|
|
18
19
|
examples. Use neutral fixture/source names unless a test is explicitly about
|
|
@@ -53,6 +54,8 @@ source resolution.
|
|
|
53
54
|
## Safety
|
|
54
55
|
|
|
55
56
|
- Never overwrite or delete unmanaged harness files by default.
|
|
57
|
+
- Install agent-owned support files into `~/.agents/homes/<slug>/`, not into
|
|
58
|
+
harness configuration directories.
|
|
56
59
|
- Keep install behavior deterministic and noninteractive. `--yes` exists for
|
|
57
60
|
parity with `npx skills`, but the CLI should not require prompts to complete.
|
|
58
61
|
- Do not mutate harness configuration beyond writing the selected generated
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
This file is maintained by `npm run changelog` and `npm run release`. Release entries are generated from git commit history.
|
|
4
4
|
|
|
5
|
+
## 0.1.6 - 2026-07-06
|
|
6
|
+
|
|
7
|
+
Changes since `v0.1.5`.
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Align harness detection docs (70a1f8e)
|
|
12
|
+
- Improve agent install workflow (61470fc)
|
|
13
|
+
|
|
14
|
+
## 0.1.5 - 2026-07-06
|
|
15
|
+
|
|
16
|
+
Changes since `v0.1.4`.
|
|
17
|
+
|
|
18
|
+
- No commits found for this release.
|
|
19
|
+
|
|
20
|
+
## 0.1.4 - 2026-07-06
|
|
21
|
+
|
|
22
|
+
Changes since `v0.1.3`.
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
|
|
26
|
+
- Add justfile for lint/test/release/publish workflows (7fe04ba)
|
|
27
|
+
- Add agent detail page and visual treatment explorations (7d29557)
|
|
28
|
+
- Add Claude Code plugin for browsing and installing agent profiles (5a11e6f)
|
|
29
|
+
- Add awesome-agents.com marketing/directory site (9ce50cd)
|
|
30
|
+
|
|
31
|
+
### Changed
|
|
32
|
+
|
|
33
|
+
- Link leaderboard rows to per-agent pages (6f2c471)
|
|
34
|
+
- Default install to every detected harness on PATH (b5af687)
|
|
35
|
+
- Render Codex profile metadata as comments (59395cc)
|
|
36
|
+
- Install agent-owned support files (3ede3ce)
|
|
37
|
+
|
|
5
38
|
## 0.1.3 - 2026-07-05
|
|
6
39
|
|
|
7
40
|
Initial tracked release.
|
|
@@ -31,6 +64,8 @@ Initial tracked release.
|
|
|
31
64
|
- Replace source-specific help and documentation examples with neutral `owner/repo` examples.
|
|
32
65
|
- Parse repo-neutral YAML profile files in addition to Markdown frontmatter files.
|
|
33
66
|
- Replace source-specific test fixtures with neutral profile-source fixtures.
|
|
67
|
+
- Prefer `agents/<slug>/agent.yaml` source directories and install colocated
|
|
68
|
+
`scripts/` and `references/` into the agent home.
|
|
34
69
|
|
|
35
70
|
## 0.1.1 - 2026-07-05
|
|
36
71
|
|
package/README.md
CHANGED
|
@@ -6,8 +6,8 @@ agent profile instead of a skill.
|
|
|
6
6
|
|
|
7
7
|
Supported sources are GitHub repos, Git URLs, or local checkouts that use the
|
|
8
8
|
agent-profile source layout. Profiles are read from YAML or Markdown files under
|
|
9
|
-
`agents
|
|
10
|
-
right place for Codex, Claude Code, or
|
|
9
|
+
`agents/<slug>/`, adapted for the selected harness, and installed into the
|
|
10
|
+
right place for Codex, Claude Code, OpenCode, or tenex-edge.
|
|
11
11
|
|
|
12
12
|
## Install And Run
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ Use the CLI with `npx`:
|
|
|
15
15
|
|
|
16
16
|
```bash
|
|
17
17
|
npx awesome-agents add owner/repo --agent triage-agent
|
|
18
|
-
npx awesome-agents add owner/repo --agent triage-agent --harness
|
|
18
|
+
npx awesome-agents add owner/repo --agent triage-agent --harness tenex-edge
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
From this repo during development:
|
|
@@ -43,17 +43,25 @@ Useful install options:
|
|
|
43
43
|
- `--agent <slug>` to select an agent profile, for example `--agent triage-agent`
|
|
44
44
|
- `--profile <slug>` or `--skill <slug>` as explicit profile aliases; `--skill`
|
|
45
45
|
is command-shape compatibility and does not mean the artifact is a skill
|
|
46
|
-
-
|
|
46
|
+
- omit a profile selector in an interactive terminal to choose source profiles
|
|
47
|
+
from a checkbox list; every profile is selected by default
|
|
48
|
+
- `--yes` to accept detected profile and harness selections without opening selectors
|
|
49
|
+
- `--harness codex|claude-code|opencode|tenex-edge|*` to select target harnesses;
|
|
50
|
+
without it, the CLI detects harness CLIs on `PATH`; interactive multi-detect
|
|
51
|
+
opens a checkbox selector with every detected harness selected, and
|
|
52
|
+
noninteractive installs use every detected harness. If none are detected, pass
|
|
53
|
+
`--harness`.
|
|
47
54
|
- `--all` to install all profiles to all supported harnesses
|
|
48
55
|
- `--dry-run` to preview writes
|
|
49
|
-
- `--project` for project-level install where supported; Codex
|
|
56
|
+
- `--project` for project-level install where supported; Codex and tenex-edge install globally
|
|
50
57
|
- `--global` for user-level install
|
|
51
58
|
- `--list` to inspect available source profiles without installing
|
|
52
59
|
|
|
53
60
|
Human-readable output uses subtle ANSI color. Set `NO_COLOR=1` to disable color,
|
|
54
|
-
or pass `--json` for machine-readable output. After an install, the CLI
|
|
55
|
-
|
|
56
|
-
`codex --profile <profile
|
|
61
|
+
or pass `--json` for machine-readable output. After an install, the CLI groups
|
|
62
|
+
run commands by profile for target harness CLIs it finds on `PATH`, such as
|
|
63
|
+
`codex --profile <profile>`, `claude --agent <profile>`, or
|
|
64
|
+
`tenex-edge launch <profile>`.
|
|
57
65
|
|
|
58
66
|
## Harness Targets
|
|
59
67
|
|
|
@@ -62,12 +70,14 @@ Project installs write to:
|
|
|
62
70
|
- Codex: not supported; Codex profiles load from user config
|
|
63
71
|
- Claude Code: `.claude/agents/<profile>.md`
|
|
64
72
|
- OpenCode: `.opencode/agents/<profile>.md`
|
|
73
|
+
- tenex-edge: not supported; tenex-edge agents are machine-local
|
|
65
74
|
|
|
66
75
|
Global installs write to:
|
|
67
76
|
|
|
68
77
|
- Codex: `$CODEX_HOME/<profile>.config.toml`, or `~/.codex/<profile>.config.toml`
|
|
69
78
|
- Claude Code: `$CLAUDE_HOME/agents/<profile>.md`, or `~/.claude/agents/<profile>.md`
|
|
70
79
|
- OpenCode: `$OPENCODE_CONFIG_DIR/agents/<profile>.md`, or `~/.config/opencode/agents/<profile>.md`
|
|
80
|
+
- tenex-edge: `$TENEX_EDGE_HOME/agents/<profile>.json`, or `~/.tenex-edge/agents/<profile>.json`
|
|
71
81
|
|
|
72
82
|
The CLI keeps its own registry at `.awesome-agents/installed.json` for project
|
|
73
83
|
installs or `~/.awesome-agents/installed.json` for global installs. `list`,
|
|
@@ -89,19 +99,36 @@ An agent-profile source should look like:
|
|
|
89
99
|
|
|
90
100
|
```text
|
|
91
101
|
agents/
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
102
|
+
triage-agent/
|
|
103
|
+
agent.yaml
|
|
104
|
+
ops-agent/
|
|
105
|
+
agent.agf.yaml
|
|
106
|
+
skills/
|
|
107
|
+
gh-pages-publisher/
|
|
108
|
+
SKILL.md
|
|
109
|
+
scripts/
|
|
110
|
+
heartbeat.sh
|
|
111
|
+
references/
|
|
112
|
+
runbook.md
|
|
99
113
|
```
|
|
100
114
|
|
|
101
115
|
YAML profile files are preferred. The loader also accepts Markdown files with
|
|
102
116
|
YAML frontmatter for compatibility with tools that use `.agent.md`-style
|
|
103
|
-
profiles.
|
|
104
|
-
|
|
117
|
+
profiles. Agent-owned `scripts/` and `references/` are installed into
|
|
118
|
+
`~/.agents/homes/<slug>/scripts` and `~/.agents/homes/<slug>/references`.
|
|
119
|
+
Profiles may also declare immediately relevant skills:
|
|
120
|
+
|
|
121
|
+
```yaml
|
|
122
|
+
skills:
|
|
123
|
+
- gh-pages-publisher
|
|
124
|
+
- pablof7z/tenex-edge basic-skill
|
|
125
|
+
```
|
|
126
|
+
|
|
127
|
+
Bare skill names are resolved from the profile directory, then the source
|
|
128
|
+
checkout, then `~/.agents/skills`. Source-qualified entries use the same source
|
|
129
|
+
plus skill selector shape as `npx skills add <source> --skill <skill>`.
|
|
130
|
+
Declared skills are copied into `~/.agents/homes/<slug>/skills/<skill>` and
|
|
131
|
+
listed with complete paths in the installed agent prompt.
|
|
105
132
|
|
|
106
133
|
## Examples
|
|
107
134
|
|
|
@@ -109,6 +136,7 @@ profile should stand on its own without requiring an adapter.
|
|
|
109
136
|
npx awesome-agents add owner/repo --list
|
|
110
137
|
npx awesome-agents add owner/repo --agent triage-agent
|
|
111
138
|
npx awesome-agents add owner/repo --agent triage-agent --harness codex --global
|
|
139
|
+
npx awesome-agents add owner/repo --agent triage-agent --harness tenex-edge
|
|
112
140
|
npx awesome-agents add owner/repo --all --dry-run
|
|
113
141
|
npx awesome-agents use owner/repo --agent triage-agent --harness claude-code
|
|
114
142
|
npx awesome-agents list --json
|
package/docs/cli.md
CHANGED
|
@@ -10,11 +10,16 @@
|
|
|
10
10
|
- `update` / `upgrade` reinstalls from the recorded source.
|
|
11
11
|
- `init` creates a profile source skeleton.
|
|
12
12
|
|
|
13
|
-
The CLI
|
|
14
|
-
|
|
15
|
-
default
|
|
16
|
-
|
|
17
|
-
|
|
13
|
+
The CLI stays scriptable by default. In an interactive terminal, `add` opens a
|
|
14
|
+
checkbox selector when no profile selector is provided; every source profile is
|
|
15
|
+
selected by default. When no target harness is provided, `add` detects supported
|
|
16
|
+
harness CLIs on `PATH`; multiple detected harnesses open a checkbox selector
|
|
17
|
+
with every harness selected by default. Non-TTY runs, `--json`, and `--yes` use
|
|
18
|
+
all detected selections without prompting. Installs default to project scope
|
|
19
|
+
where the selected harness supports project-local profiles. Codex and tenex-edge
|
|
20
|
+
are exceptions: Codex `--profile` loads named config layers from `CODEX_HOME`,
|
|
21
|
+
while tenex-edge agents live in its machine keystore under
|
|
22
|
+
`$TENEX_EDGE_HOME/agents/` or `~/.tenex-edge/agents/`.
|
|
18
23
|
|
|
19
24
|
## Source Resolution
|
|
20
25
|
|
|
@@ -25,7 +30,7 @@ Supported source values:
|
|
|
25
30
|
- GitHub URL: `https://github.com/owner/repo`
|
|
26
31
|
|
|
27
32
|
For GitHub sources, the CLI clones a shallow temporary copy and reads
|
|
28
|
-
`agents
|
|
33
|
+
`agents/<slug>/agent.yaml` style definitions.
|
|
29
34
|
|
|
30
35
|
There is no default source. `add`, `install`, and `use` require the caller to
|
|
31
36
|
provide a source explicitly.
|
|
@@ -51,18 +56,34 @@ generated profile is installed:
|
|
|
51
56
|
npx awesome-agents add owner/repo --agent triage-agent --harness opencode
|
|
52
57
|
```
|
|
53
58
|
|
|
54
|
-
For backward compatibility, `--agent codex`, `--agent claude-code`,
|
|
55
|
-
`--agent opencode` are still accepted as harness
|
|
59
|
+
For backward compatibility, `--agent codex`, `--agent claude-code`,
|
|
60
|
+
`--agent opencode`, and `--agent tenex-edge` are still accepted as harness
|
|
61
|
+
selectors.
|
|
62
|
+
|
|
63
|
+
When no harness selector is provided, `add` detects `codex`, `claude`,
|
|
64
|
+
`opencode`, and `tenex-edge` on `PATH`. If none are found, the command fails and
|
|
65
|
+
asks for `--harness`.
|
|
66
|
+
|
|
67
|
+
When no profile selector is provided in an interactive terminal, `add` prompts
|
|
68
|
+
with a checkbox list of source profiles and their summaries. Pressing Enter
|
|
69
|
+
accepts the default of installing every listed profile. Scripts can use `--yes`,
|
|
70
|
+
`--json`, or a non-TTY stdin/stdout path to keep the same noninteractive default.
|
|
56
71
|
|
|
57
72
|
The `--skill` flag is accepted only as a command-shape alias for `--profile`.
|
|
58
73
|
Installed artifacts remain operational agent profiles.
|
|
59
74
|
|
|
75
|
+
Profiles may still declare immediately relevant skills in their source
|
|
76
|
+
definition. Those dependencies are copied into
|
|
77
|
+
`~/.agents/homes/<profile>/skills/<skill>` and appended to the installed prompt
|
|
78
|
+
with complete paths; this does not make the profile itself a skill.
|
|
79
|
+
|
|
60
80
|
After install, human-readable output should show the CLI command to run each
|
|
61
81
|
installed profile through any matching harness CLI found on `PATH`. Examples:
|
|
62
82
|
|
|
63
83
|
```bash
|
|
64
84
|
codex --profile triage-agent
|
|
65
85
|
claude --agent triage-agent
|
|
86
|
+
tenex-edge launch triage-agent
|
|
66
87
|
```
|
|
67
88
|
|
|
68
89
|
## Install Safety
|
package/docs/product/README.md
CHANGED
|
@@ -11,7 +11,7 @@ unless the user confirms them.
|
|
|
11
11
|
- `product-scope.md`: What `awesome-agents` is for and how it differs from skills.
|
|
12
12
|
- `command-model.md`: Command shape, `npx skills` parity, defaults, and scriptability.
|
|
13
13
|
- `profile-source-format.md`: Source repositories, canonical profiles, adapters, and install sources.
|
|
14
|
-
- `harness-targets.md`: Codex, Claude Code, and
|
|
14
|
+
- `harness-targets.md`: Codex, Claude Code, OpenCode, and tenex-edge rendering/target behavior.
|
|
15
15
|
- `safety-and-publishing.md`: Install safety, registry behavior, verification, and npm/GitHub publish state.
|
|
16
16
|
- `open-questions.md`: Unresolved product questions.
|
|
17
17
|
|
|
@@ -24,9 +24,9 @@ The CLI supports:
|
|
|
24
24
|
language such as `npx awesome-agents add owner/repo --agent triage-agent`.
|
|
25
25
|
- `--profile <slug>` to select profiles explicitly.
|
|
26
26
|
- `--skill <slug>` as a compatibility alias, even though the artifact is a profile.
|
|
27
|
-
- `--harness <codex|claude-code|opencode|*>` to select target harnesses.
|
|
28
|
-
- `--agent <codex|claude-code|opencode|*>` remains accepted as a
|
|
29
|
-
selector when the value is a known harness or harness alias.
|
|
27
|
+
- `--harness <codex|claude-code|opencode|tenex-edge|*>` to select target harnesses.
|
|
28
|
+
- `--agent <codex|claude-code|opencode|tenex-edge|*>` remains accepted as a
|
|
29
|
+
legacy harness selector when the value is a known harness or harness alias.
|
|
30
30
|
- `--all` to install every profile.
|
|
31
31
|
- `--list` to inspect source profiles before installing.
|
|
32
32
|
|
|
@@ -36,12 +36,17 @@ Accepted implementation decision:
|
|
|
36
36
|
|
|
37
37
|
- Install scope defaults to project where the target harness supports project-local profiles.
|
|
38
38
|
- Codex is an exception because `codex --profile <name>` loads
|
|
39
|
-
`$CODEX_HOME/<name>.config.toml`.
|
|
40
|
-
|
|
41
|
-
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
39
|
+
`$CODEX_HOME/<name>.config.toml`. tenex-edge is also global because invitable
|
|
40
|
+
local agents live under `$TENEX_EDGE_HOME/agents/` or `~/.tenex-edge/agents/`.
|
|
41
|
+
- When no `--harness` or legacy harness-valued `--agent` is provided, the CLI
|
|
42
|
+
detects supported harness CLIs on `PATH` (`codex`, `claude`, `opencode`, and
|
|
43
|
+
`tenex-edge`).
|
|
44
|
+
- If one harness is detected, install to it. If multiple harnesses are detected,
|
|
45
|
+
interactive installs open a checkbox selector with every detected harness
|
|
46
|
+
selected by default; noninteractive, `--json`, and `--yes` installs use every
|
|
47
|
+
detected harness.
|
|
48
|
+
- If no harness is detected, fail with a clear message asking for `--harness`.
|
|
49
|
+
- `--harness <harness>` (or a harness-valued `--agent`) overrides detection.
|
|
45
50
|
|
|
46
51
|
## Scriptability
|
|
47
52
|
|
|
@@ -9,6 +9,7 @@ Initial harness targets:
|
|
|
9
9
|
- Codex
|
|
10
10
|
- Claude Code
|
|
11
11
|
- OpenCode
|
|
12
|
+
- tenex-edge
|
|
12
13
|
|
|
13
14
|
## Codex
|
|
14
15
|
|
|
@@ -29,11 +30,12 @@ file from `CODEX_HOME`.
|
|
|
29
30
|
|
|
30
31
|
The generated TOML includes:
|
|
31
32
|
|
|
32
|
-
- `name`
|
|
33
|
-
- `description`
|
|
34
33
|
- optional model settings
|
|
35
34
|
- `developer_instructions`
|
|
36
35
|
|
|
36
|
+
Profile name and summary are emitted as comments, not TOML keys, because Codex
|
|
37
|
+
rejects unknown configuration fields under strict config parsing.
|
|
38
|
+
|
|
37
39
|
## Claude Code
|
|
38
40
|
|
|
39
41
|
Generated Claude Code subagents install to:
|
|
@@ -52,8 +54,29 @@ Generated OpenCode agents install to:
|
|
|
52
54
|
|
|
53
55
|
OpenCode output is Markdown with frontmatter and a generated marker.
|
|
54
56
|
|
|
57
|
+
## tenex-edge
|
|
58
|
+
|
|
59
|
+
Generated tenex-edge agents install to:
|
|
60
|
+
|
|
61
|
+
- Project: not supported; tenex-edge agents are machine-local
|
|
62
|
+
- Global: `$TENEX_EDGE_HOME/agents/<profile>.json`, or `~/.tenex-edge/agents/<profile>.json`
|
|
63
|
+
|
|
64
|
+
Run with:
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
tenex-edge launch <profile>
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
The generated JSON is a tenex-edge local agent keystore entry with:
|
|
71
|
+
|
|
72
|
+
- a generated Nostr keypair, preserved across reinstalls
|
|
73
|
+
- `command: ["claude"]`
|
|
74
|
+
- an inline Claude `agent` definition passed by tenex-edge as `--agents`
|
|
75
|
+
- a byline derived from the profile summary
|
|
76
|
+
|
|
55
77
|
## Adapter Gaps
|
|
56
78
|
|
|
57
79
|
Some source repositories may provide Codex adapters first. Claude Code and
|
|
58
80
|
OpenCode use generated defaults unless a source repository adds native adapters
|
|
59
|
-
for those harnesses.
|
|
81
|
+
for those harnesses. tenex-edge uses a native adapter when present, otherwise it
|
|
82
|
+
reuses the Claude Code adapter before falling back to the base profile.
|
|
@@ -8,8 +8,8 @@ These notes capture what `awesome-agents` is and why it exists.
|
|
|
8
8
|
- It should be installable with `npx`.
|
|
9
9
|
- Its command structure should mirror `npx skills`, but for agent profiles.
|
|
10
10
|
- It should install profiles from any explicit source repository that follows
|
|
11
|
-
the `agents
|
|
12
|
-
-
|
|
11
|
+
the `agents/<slug>/agent.yaml` source layout.
|
|
12
|
+
- Harness targets are Codex, Claude Code, OpenCode, and tenex-edge.
|
|
13
13
|
- The package should be published after the scaffold works.
|
|
14
14
|
|
|
15
15
|
## Product Boundary
|
|
@@ -40,3 +40,8 @@ Product correction:
|
|
|
40
40
|
the artifact shape and target harnesses.
|
|
41
41
|
- Examples and tests should use neutral source names unless they are testing
|
|
42
42
|
source resolution itself.
|
|
43
|
+
- Source repositories should use one agent definition format per agent directory:
|
|
44
|
+
`agents/<slug>/agent.yaml` plus colocated support material.
|
|
45
|
+
- `awesome-agents` installs local support material and declared immediately
|
|
46
|
+
relevant skills into `~/.agents/homes/<slug>/` and transcribes the agent
|
|
47
|
+
definition to the target harness.
|
|
@@ -8,27 +8,40 @@ The source format is intentionally repo-neutral:
|
|
|
8
8
|
|
|
9
9
|
```text
|
|
10
10
|
agents/
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<harness>/
|
|
17
|
-
<profile>.md
|
|
11
|
+
<profile>/
|
|
12
|
+
agent.yaml
|
|
13
|
+
skills/
|
|
14
|
+
scripts/
|
|
15
|
+
references/
|
|
18
16
|
```
|
|
19
17
|
|
|
20
18
|
Canonical profiles live at:
|
|
21
19
|
|
|
22
20
|
```text
|
|
23
|
-
agents
|
|
21
|
+
agents/<profile>/{agent.yaml,agent.yml,agent.agf.yaml,agent.agf.yml,agent.md}
|
|
24
22
|
```
|
|
25
23
|
|
|
26
|
-
Optional
|
|
24
|
+
Optional agent-owned support material lives at:
|
|
27
25
|
|
|
28
26
|
```text
|
|
29
|
-
agents
|
|
27
|
+
agents/<profile>/scripts/*
|
|
28
|
+
agents/<profile>/references/*
|
|
30
29
|
```
|
|
31
30
|
|
|
31
|
+
Immediately relevant skills can be declared in the profile definition:
|
|
32
|
+
|
|
33
|
+
```yaml
|
|
34
|
+
skills:
|
|
35
|
+
- gh-pages-publisher
|
|
36
|
+
- pablof7z/tenex-edge basic-skill
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Bare skill names resolve from the profile directory, then the source checkout,
|
|
40
|
+
then from `~/.agents/skills`. Source-qualified entries use the same source plus
|
|
41
|
+
skill selector shape as `npx skills add <source> --skill <skill>`. Installed
|
|
42
|
+
skills are copied into `~/.agents/homes/<profile>/skills/<skill>` and appended
|
|
43
|
+
to the rendered agent prompt with complete paths.
|
|
44
|
+
|
|
32
45
|
## Profile Files
|
|
33
46
|
|
|
34
47
|
YAML profile files are preferred. The loader should support a pragmatic subset
|
|
@@ -42,8 +55,11 @@ of emerging YAML agent-definition shapes:
|
|
|
42
55
|
|
|
43
56
|
The CLI should preserve canonical profile content and generate harness-specific install files. A profile is reusable product content, not local machine setup.
|
|
44
57
|
|
|
45
|
-
|
|
46
|
-
|
|
58
|
+
Agent-owned scripts and references should be installed into
|
|
59
|
+
`~/.agents/homes/<profile>/scripts` and
|
|
60
|
+
`~/.agents/homes/<profile>/references`.
|
|
61
|
+
Declared skills should be installed into
|
|
62
|
+
`~/.agents/homes/<profile>/skills/<skill>`.
|
|
47
63
|
|
|
48
64
|
Profile source files are intentionally under `agents/`, not `skills/`, because
|
|
49
65
|
the source format models agent profiles separately from loadable skills.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "awesome-agents",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Install reusable agent profiles into Codex, Claude Code, and
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "Install reusable agent profiles into Codex, Claude Code, OpenCode, and tenex-edge.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"awesome-agents": "bin/awesome-agents.js"
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"node": ">=22.12.0"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
+
"@inquirer/checkbox": "^4.3.2",
|
|
46
47
|
"commander": "^15.0.0",
|
|
47
48
|
"yaml": "^2.9.0"
|
|
48
49
|
}
|