You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Install project-local skills for all supported agents
39
39
uv run eforge install-skills
40
40
41
-
# Or install Codex skills
42
-
uv run eforge install-skills --agent codex
41
+
# Or select one agent or install user-wide
42
+
uv run eforge install-skills --agent chatgpt
43
+
uv run eforge install-skills --global
43
44
44
45
# Create a scenario interactively
45
46
# /eforge scenario
@@ -66,7 +67,12 @@ EvidenceForge includes agent skills for interactive, guided workflows. These are
66
67
|`/eforge evaluate`| Runs the data quality evaluation, interprets scores, reviews records for realism, and suggests improvements. |
67
68
|`/eforge config`| Add, modify, or remove personas, domains, applications, and other configuration data. Handles cross-file dependencies automatically. See [Customizing Configuration](docs/reference/CUSTOMIZING_CONFIG.md). |
68
69
69
-
Install Claude Code skills with `uv run eforge install-skills` (project scope) or `uv run eforge install-skills --global`. Install Codex skills with `uv run eforge install-skills --agent codex`.
70
+
`uv run eforge install-skills` installs project-local skills for both Claude Code
71
+
and ChatGPT. Claude commands go under `.claude/commands/`; ChatGPT skills go
72
+
under `.agents/skills/`. Add `--global` to install both user-wide under
73
+
`~/.claude/commands/` and `~/.agents/skills/`, or select one with `--agent
74
+
claude` or `--agent chatgpt`. The legacy name `--agent codex` remains an alias
75
+
for `--agent chatgpt` and uses the same destinations.
70
76
71
77
## CLI Reference
72
78
@@ -79,7 +85,7 @@ For scripted or non-interactive use:
|`eforge info [field]`| Show installation info, config paths, and data inventories. Pass a dot-path field for a specific value (e.g., `eforge info personas`). Use `--fields` to list available fields, `--json` for machine output. |
81
87
|`eforge validate-config`| Validate config files for cross-reference integrity. Use `--json` for machine output. |
0 commit comments