@nick848/fet 1.0.1 → 1.0.2
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 +7 -4
- package/dist/cli/index.js +672 -49
- package/dist/cli/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -133,14 +133,14 @@ MIT
|
|
|
133
133
|
|
|
134
134
|
## English
|
|
135
135
|
|
|
136
|
-
FET is a frontend development workflow orchestration CLI built around OpenSpec. It does not generate business code directly. Instead, it proxies OpenSpec commands, maintains local workflow state, generates auditable project context, and helps AI coding tools such as Cursor load the right files.
|
|
136
|
+
FET is a frontend development workflow orchestration CLI built around OpenSpec. It does not generate business code directly. Instead, it proxies OpenSpec commands, maintains local workflow state, generates auditable project context, and helps AI coding tools such as Cursor and Codex load the right files.
|
|
137
137
|
|
|
138
138
|
### What It Does
|
|
139
139
|
|
|
140
140
|
- Provides one entry point through `fet <command>` for OpenSpec workflows.
|
|
141
141
|
- Generates `AGENTS.md` and the `fet:` namespace in `openspec/config.yaml`.
|
|
142
142
|
- Tracks local workflow state such as active changes, synced tasks, manual verification declarations, and tool adapter state.
|
|
143
|
-
- Integrates with AI tools by generating Cursor project rules
|
|
143
|
+
- Integrates with AI tools by generating Cursor project rules, Cursor Skill instructions, and Codex-readable FET workflow guides.
|
|
144
144
|
- Guards important stages by checking FET verification state before `sync` and `archive`.
|
|
145
145
|
|
|
146
146
|
### How It Works
|
|
@@ -208,9 +208,9 @@ fet archive --change my-change
|
|
|
208
208
|
|
|
209
209
|
| Command | Usage | Description |
|
|
210
210
|
|---------|-------|-------------|
|
|
211
|
-
| `fet init` | `fet init [--yes]` | Initialize FET and OpenSpec; generate context, state, Cursor rules
|
|
211
|
+
| `fet init` | `fet init [--yes]` | Initialize FET and OpenSpec; generate context, state, Cursor rules and Skills, plus Codex workflow guides. |
|
|
212
212
|
| `fet update-context` | `fet update-context [--yes]` | Rescan the project and update FET-managed regions in `AGENTS.md` and `openspec/config.yaml`. |
|
|
213
|
-
| `fet doctor` | `fet doctor [--fix-lock]` | Diagnose OpenSpec, FET state, context files, Cursor integration, and lock files. |
|
|
213
|
+
| `fet doctor` | `fet doctor [--fix-lock]` | Diagnose OpenSpec, FET state, context files, Cursor and Codex integration, and lock files. |
|
|
214
214
|
| `fet explore` | `fet explore --change <id>` | Print OpenSpec exploration/proposal instructions for discussing requirements. |
|
|
215
215
|
| `fet propose` | `fet propose <change-id>` | Create a new OpenSpec change through FET's proposal entry point. |
|
|
216
216
|
| `fet new` | `fet new <change-id>` | Create a new OpenSpec change. |
|
|
@@ -237,6 +237,9 @@ FET may create or update:
|
|
|
237
237
|
- `openspec/changes/<change-id>/.fet/verify-instructions.md`
|
|
238
238
|
- `.cursor/skills/fet-*/SKILL.md`
|
|
239
239
|
- `.cursor/rules/fet-context.mdc`
|
|
240
|
+
- `.codex/fet/context.md`
|
|
241
|
+
- `.codex/fet/commands/*.md`
|
|
242
|
+
- `$CODEX_HOME/prompts/fet-*.md` for Codex native slash commands. If `CODEX_HOME` is not set, FET uses `~/.codex`.
|
|
240
243
|
|
|
241
244
|
FET only owns explicitly marked managed regions. User content outside those regions should be preserved. During `fet init`, FET also adds a managed `.gitignore` block for local workflow state.
|
|
242
245
|
|