fdeops 3.5.1 → 3.5.3
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 +74 -184
- package/bin/check.js +0 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ flowchart LR
|
|
|
20
20
|
B --> F["Build & Guard"]
|
|
21
21
|
B --> G["Ship & Verify"]
|
|
22
22
|
B --> H["Operate & Close"]
|
|
23
|
-
C --> I[".fde/ memory\n(
|
|
23
|
+
C --> I[".fde/ memory\n(written as you work)"]
|
|
24
24
|
D --> I
|
|
25
25
|
E --> I
|
|
26
26
|
F --> I
|
|
@@ -31,10 +31,10 @@ flowchart LR
|
|
|
31
31
|
|
|
32
32
|
Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini CLI** · any agent that reads SKILL.md
|
|
33
33
|
|
|
34
|
-
<p align="center"><strong>The CLI
|
|
34
|
+
<p align="center"><strong>The CLI</strong></p>
|
|
35
35
|
<p align="center"><img src="media/terminal-demo.svg" alt="fde CLI - status, scan, dashboard" width="720"/></p>
|
|
36
36
|
|
|
37
|
-
<p align="center"><strong>The Fieldbook Dashboard
|
|
37
|
+
<p align="center"><strong>The Fieldbook Dashboard</strong></p>
|
|
38
38
|
<p align="center"><img src="media/fieldbook-dashboard.png" alt="FDE Fieldbook - portfolio view" width="720"/></p>
|
|
39
39
|
|
|
40
40
|
---
|
|
@@ -46,9 +46,9 @@ Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini
|
|
|
46
46
|
| **Consultant or contractor at a client site** | Every session, you re-explain context. fdeops remembers for you. |
|
|
47
47
|
| **Solutions architect bridging strategy and code** | You navigate politics AND architecture. fdeops has methods for both. |
|
|
48
48
|
| **Agency engineer running 3-5 clients** | Client details blur together. One `.fde/` per customer, never cross-contaminated. |
|
|
49
|
-
| **Forward Deployed Engineer**
|
|
49
|
+
| **Forward Deployed Engineer** | The role this was built for. 34 skills across the full engagement lifecycle. |
|
|
50
50
|
| **Technical founder doing client work solo** | You ARE the team. The agent becomes your second brain. |
|
|
51
|
-
| **Enterprise programme lead
|
|
51
|
+
| **Enterprise programme lead** | Leading AI transformations? Built-in methods for model selection, agent safety, governance, and cost management. |
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
@@ -56,10 +56,10 @@ Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini
|
|
|
56
56
|
|
|
57
57
|
| | **Without fdeops** | **With fdeops** |
|
|
58
58
|
|---|-------------------|----------------|
|
|
59
|
-
| **
|
|
60
|
-
| **
|
|
61
|
-
| **Multiple customers** |
|
|
62
|
-
| **The
|
|
59
|
+
| **Monday morning** | Re-paste last week's context, explain the stakeholders again | Agent opens with "last session you were on the ingest retry — CTO demo is Friday" |
|
|
60
|
+
| **Scope creep** | Five "small" additions absorbed silently, timeline slips | Receipts timestamped — you walk into the sponsor meeting with evidence |
|
|
61
|
+
| **Multiple customers** | Wrong client name in a status update, details blur | One folder per customer, context-switch protocol, cross-contamination checklist |
|
|
62
|
+
| **The sponsor meeting** | "We completed the API endpoint" | "Manual reconciliation dropped from 3 FTEs to 0.5 — here's the rollback if it turns" |
|
|
63
63
|
|
|
64
64
|
---
|
|
65
65
|
|
|
@@ -67,78 +67,80 @@ Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini
|
|
|
67
67
|
|
|
68
68
|
**Requires:** [Node.js](https://nodejs.org) >= 18
|
|
69
69
|
|
|
70
|
-
|
|
71
|
-
# Option A: Skills CLI (any agent)
|
|
72
|
-
npx skills add suboss87/fdeops
|
|
73
|
-
|
|
74
|
-
# Option B: Clone + install
|
|
75
|
-
git clone https://github.com/suboss87/fdeops.git
|
|
76
|
-
cd fdeops && node bin/install.js
|
|
77
|
-
```
|
|
70
|
+
### 1. Install and create your first engagement
|
|
78
71
|
|
|
79
|
-
Start your first engagement:
|
|
80
72
|
```bash
|
|
81
|
-
|
|
82
|
-
# or: npx fdeops init my-client (engagement memory at ~/fde-engagements/my-client/.fde/)
|
|
73
|
+
npx fdeops init my-client # creates engagement memory at ~/fde-engagements/my-client/.fde/
|
|
83
74
|
```
|
|
84
75
|
|
|
85
|
-
Point
|
|
76
|
+
### 2. Point your AI agent at it
|
|
77
|
+
|
|
86
78
|
```bash
|
|
87
79
|
export FDEOPS_ENGAGEMENT=~/fde-engagements/my-client/.fde
|
|
88
80
|
```
|
|
89
81
|
|
|
90
|
-
|
|
82
|
+
### 3. Start working
|
|
83
|
+
|
|
91
84
|
```
|
|
92
85
|
@fde I'm on site. First stakeholder meeting tomorrow. Brief says fix the payments API.
|
|
93
86
|
```
|
|
94
87
|
|
|
95
|
-
The
|
|
88
|
+
The agent routes to `land` and starts thinking with you:
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
Brief says payments API — but nobody named who owns the budget for this
|
|
92
|
+
work. That's your first question tomorrow. And the brief has no
|
|
93
|
+
out-of-scope section, which means scope creep is pre-authorised.
|
|
94
|
+
|
|
95
|
+
Watch for the internal dev who got passed over for this contract — if
|
|
96
|
+
there is one, you want them on your side before the first standup.
|
|
97
|
+
Also: what does failure look like to the sponsor personally, not the
|
|
98
|
+
project charter? That answer shapes everything.
|
|
99
|
+
|
|
100
|
+
I'll draft brief.md, success.md, stakeholders.md, trust-profile.md
|
|
101
|
+
after you come back with notes.
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
Day 15, the memory has compounded:
|
|
105
|
+
|
|
106
|
+
```
|
|
107
|
+
@fde What's the priority today?
|
|
96
108
|
```
|
|
97
|
-
Routing to: land (first engagement, day 1)
|
|
98
109
|
|
|
99
|
-
|
|
110
|
+
```
|
|
111
|
+
Last session you were finishing the ingest retry on staging. CTO demo
|
|
112
|
+
is Friday and status hasn't gone out since Tuesday. The finance
|
|
113
|
+
controller still hasn't seen a working demo — that's a risk.
|
|
100
114
|
|
|
101
|
-
|
|
102
|
-
2. What's NOT in scope? (undefined scope = unlimited scope)
|
|
103
|
-
3. Is there an internal dev who was passed over for this work?
|
|
104
|
-
4. What's their AI policy? (do they know I'm an AI agent?)
|
|
115
|
+
Globex has been quiet for 3 days — trust signal amber.
|
|
105
116
|
|
|
106
|
-
|
|
107
|
-
|
|
117
|
+
I'd send the CTO status first, then finish the retry, then check in
|
|
118
|
+
on Globex before end of day. What do you want to tackle?
|
|
108
119
|
```
|
|
109
120
|
|
|
110
|
-
That's it.
|
|
121
|
+
That's the difference. Day 1: it coaches your preparation. Day 15: it picks up where yesterday ended and triages across customers.
|
|
111
122
|
|
|
112
|
-
|
|
123
|
+
> **Other install methods:** `npx skills add suboss87/fdeops` (Skills CLI) or `git clone https://github.com/suboss87/fdeops.git && cd fdeops && node bin/install.js` (manual).
|
|
113
124
|
|
|
114
|
-
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## Works with any AI coding tool
|
|
128
|
+
|
|
129
|
+
One skill file powers every tool. Install adapters for your setup:
|
|
115
130
|
|
|
116
131
|
```bash
|
|
117
|
-
|
|
118
|
-
# or: npx fdeops@latest adapters ~/fde-engagements/my-client
|
|
132
|
+
npx fdeops adapters ~/fde-engagements/my-client
|
|
119
133
|
```
|
|
120
134
|
|
|
121
|
-
| Tool |
|
|
122
|
-
|
|
123
|
-
| Claude Code |
|
|
135
|
+
| Tool | What it reads |
|
|
136
|
+
|------|--------------|
|
|
137
|
+
| Claude Code | Plugin + `~/.claude/FDEOPS-CLAUDE.md` |
|
|
124
138
|
| Codex / OpenAI / generic | `AGENTS.md` |
|
|
125
139
|
| Gemini CLI | `GEMINI.md` |
|
|
126
140
|
| Cursor | `.cursor/rules/fde.mdc` |
|
|
127
141
|
| GitHub Copilot | `.github/copilot-instructions.md` |
|
|
128
142
|
|
|
129
|
-
Each
|
|
130
|
-
|
|
131
|
-
---
|
|
132
|
-
|
|
133
|
-
## Who does what
|
|
134
|
-
|
|
135
|
-
| Role | Who | What they do |
|
|
136
|
-
|------|-----|----------------|
|
|
137
|
-
| **You** | **Human** on the engagement | Stakeholder meetings, calls, judgment, sign-off, typing `@fde`, owning what ships |
|
|
138
|
-
| **AI coding agent** | **Software** on your laptop (e.g. Claude Code) - **not** a human colleague | Loads the `@fde` skill, runs the phase methods, writes code and `.fde/` artifacts |
|
|
139
|
-
| **`@fde`** | **One skill** inside the AI agent | Hears your situation, routes to the right phase, does that phase's work |
|
|
140
|
-
|
|
141
|
-
**In this repo, "agent" always means the AI coding agent, never a person.**
|
|
143
|
+
Each adapter points at the same `@fde` skill, so the methodology and memory stay consistent across tools. Details: [`adapters/`](adapters/README.md).
|
|
142
144
|
|
|
143
145
|
---
|
|
144
146
|
|
|
@@ -146,127 +148,32 @@ Each file just points at `@fde` - so the method, overlays, and memory stay in on
|
|
|
146
148
|
|
|
147
149
|
```text
|
|
148
150
|
YOU (human) AI CODING AGENT (software)
|
|
149
|
-
meetings, judgment @fde routes -> right skill ->
|
|
150
|
-
| -----> .fde/ memory (
|
|
151
|
+
meetings, judgment @fde routes -> right skill -> drafts the artifact
|
|
152
|
+
| -----> .fde/ memory (written as you work)
|
|
151
153
|
| |
|
|
152
154
|
+---------------> client workspace (code, VPN, tickets)
|
|
153
155
|
```
|
|
154
156
|
|
|
155
|
-
| Layer | What | Where |
|
|
156
|
-
|-------|------|-------|
|
|
157
|
-
| **Surface** | One command: `@fde` | You type it |
|
|
158
|
-
| **Router** | Hears your situation, picks the skill | `SKILL.md` |
|
|
159
|
-
| **Skills** | 34 methods across 6 domains | `references/` |
|
|
160
|
-
| **Overlays** | Activate on signal (AI, fintech, healthcare, gov, artifacts) | Layer on top |
|
|
161
|
-
| **Memory** | `.fde/` - engagement record, per customer | Your machine |
|
|
162
|
-
|
|
163
|
-
---
|
|
164
|
-
|
|
165
|
-
## The basic workflow
|
|
166
|
-
|
|
167
|
-
You only ever type **`@fde`**. The AI coding agent reads `context.md` from your engagement folder, routes to the matching skill, and follows that skill's method:
|
|
168
|
-
|
|
169
157
|
1. **Describe** - tell the agent what's happening ("new client", "production is down", "need a board update")
|
|
170
158
|
2. **Route** - the system picks the right skill from 34 options across 6 domains
|
|
171
159
|
3. **Execute** - the skill's method runs, artifacts are written to `.fde/`, you review at checkpoints
|
|
172
160
|
|
|
173
161
|
---
|
|
174
162
|
|
|
175
|
-
## The 6 domains
|
|
176
|
-
|
|
177
|
-
### 1. Embed & Trust
|
|
178
|
-
*First days. Getting access, building credibility, understanding scope.*
|
|
179
|
-
|
|
180
|
-
| Skill | What it does |
|
|
181
|
-
|-------|-------------|
|
|
182
|
-
| **land** | First 48 hours: interrogate the brief, map stakeholders, define success before code |
|
|
183
|
-
| **audit** | Taking over mid-project: verify claims, find the load-bearing wall |
|
|
184
|
-
| **stakeholder-radar** | Map who decides, who blocks, who's about to escalate |
|
|
185
|
-
| **trust-engineering** | The trust ladder from observer to trusted; navigate AI policy |
|
|
186
|
-
| **scope-defense** | "Let me place it": scope receipts, the accumulation conversation |
|
|
187
|
-
|
|
188
|
-
### 2. Discover & Diagnose
|
|
189
|
-
*Finding the real problem. Testing what the brief claims.*
|
|
190
|
-
|
|
191
|
-
| Skill | What it does |
|
|
192
|
-
|-------|-------------|
|
|
193
|
-
| **discover** | Scan repo + hunt the workaround + **workshop facilitation** + **data estate assessment** |
|
|
194
|
-
| **assumption-audit** | Extract untested assumptions, classify by blast radius, kill the riskiest first |
|
|
195
|
-
| **use-case-scoring** | Score on value x urgency x alignment x data readiness / complexity |
|
|
196
|
-
| **sketch** | Prototype the killer assumption in one day; kill fast, log the learning |
|
|
197
|
-
|
|
198
|
-
### 3. Plan & Align
|
|
199
|
-
*Sequencing work and getting sponsor alignment.*
|
|
200
|
-
|
|
201
|
-
| Skill | What it does |
|
|
202
|
-
|-------|-------------|
|
|
203
|
-
| **plan** | Work backwards from success + **estimation** (3-point sizing) + **migration strategy** |
|
|
204
|
-
| **business-case** | Cost of doing nothing -> investment -> return -> sensitivity check |
|
|
205
|
-
| **options-analysis** | Three genuine options (conservative / pragmatic / ambitious) |
|
|
206
|
-
| **initiative-triage** | 20 things are "urgent"; pick 3 for Now, make trade-offs visible |
|
|
207
|
-
|
|
208
|
-
### 4. Build & Guard
|
|
209
|
-
*Safe implementation on someone else's codebase.*
|
|
210
|
-
|
|
211
|
-
| Skill | What it does |
|
|
212
|
-
|-------|-------------|
|
|
213
|
-
| **build** | Blast radius + legacy safety + **integration design** + **team amplification** |
|
|
214
|
-
| **incremental-build** | Vertical slices, 100-300 lines each, visible progress every 2-3 days |
|
|
215
|
-
| **test-on-legacy** | Characterise first, Strangler Fig, spot lying tests |
|
|
216
|
-
| **blast-radius** | Trace dependencies, classify impact (CONTAINED -> IRREVERSIBLE) |
|
|
217
|
-
| **debug** | Systematic: reproduce -> isolate -> one hypothesis -> verify |
|
|
218
|
-
| **rescue** | Production fire, trust fire, wrong-brief-mid-build, **or full pivot** |
|
|
219
|
-
| **security-audit** | Threat model in 5 minutes, STRIDE pass, secrets scan |
|
|
220
|
-
| **observability** | Define "working" before instrumenting; the four metrics |
|
|
221
|
-
|
|
222
|
-
### 5. Ship & Verify
|
|
223
|
-
*Getting to production without surprises.*
|
|
224
|
-
|
|
225
|
-
| Skill | What it does |
|
|
226
|
-
|-------|-------------|
|
|
227
|
-
| **ship** | Pre-flight + canary + rollback + **scale-readiness gate** + **progressive adoption** |
|
|
228
|
-
| **review** | Scope first (did we build what was agreed), then safety |
|
|
229
|
-
| **rollback-drill** | Test the escape route on staging before you need it at 2am |
|
|
230
|
-
| **qa-live** | Test from the user's chair, real browser, five perspectives |
|
|
231
|
-
|
|
232
|
-
### 6. Operate & Close
|
|
233
|
-
*Running the engagement and ending it well.*
|
|
234
|
-
|
|
235
|
-
| Skill | What it does |
|
|
236
|
-
|-------|-------------|
|
|
237
|
-
| **status** | Sponsor update from the week's actual record |
|
|
238
|
-
| **demo-prep** | The one number, live-vs-canned, five hard questions |
|
|
239
|
-
| **debrief** | Walk out of any meeting -> decisions, signals, actions in memory |
|
|
240
|
-
| **exec-narrative** | Pyramid: governing thought, three supports, SCQA frame |
|
|
241
|
-
| **dashboard** | Portfolio view across all customers, trust-ordered |
|
|
242
|
-
| **multi-customer-ops** | Daily triage, context-switch, cross-contamination prevention |
|
|
243
|
-
| **close** | Retrospective, the 2am handoff document, what we learned |
|
|
244
|
-
| **handoff-engineering** | Operations runbook, knowledge transfer, confidence scoring |
|
|
245
|
-
| **pattern-extract** | If you did it twice, encode it; patterns are compound interest |
|
|
246
|
-
|
|
247
|
-
### Overlays (activate on signal)
|
|
248
|
-
|
|
249
|
-
| Overlay | Triggers on | What it adds |
|
|
250
|
-
|---------|------------|-------------|
|
|
251
|
-
| **ai** | AI, ML, LLM, model, embeddings, RAG, agents | Model selection, RAG architecture, agent safety, governance, drift monitoring, cost management |
|
|
252
|
-
| **artifacts** | deck, slides, report, governance, compliance | Executive decks, governance frameworks, ADRs, compliance packs, value reports |
|
|
253
|
-
| **fintech** | payments, PCI, banking, cardholder data | Idempotency, transaction integrity, fraud signals, silent-failure prevention |
|
|
254
|
-
| **healthcare** | PHI, HIPAA, patient data | De-identification, minimum-necessary, audit trails |
|
|
255
|
-
| **gov** | FedRAMP, ATO, CUI, classified | Authority boundaries, CUI marking, continuous monitoring |
|
|
163
|
+
## The 6 domains — 34 skills + 5 overlays
|
|
256
164
|
|
|
257
|
-
|
|
165
|
+
| Domain | Skills | What it covers |
|
|
166
|
+
|--------|--------|---------------|
|
|
167
|
+
| **Embed & Trust** | land, audit, stakeholder-radar, trust-engineering, scope-defense | First days: access, credibility, scope |
|
|
168
|
+
| **Discover & Diagnose** | discover, assumption-audit, use-case-scoring, sketch | Finding the real problem behind the brief |
|
|
169
|
+
| **Plan & Align** | plan, business-case, options-analysis, initiative-triage | Sequencing work, getting sponsor alignment |
|
|
170
|
+
| **Build & Guard** | build, incremental-build, test-on-legacy, blast-radius, debug, rescue, security-audit, observability | Helping you build safely on their codebase |
|
|
171
|
+
| **Ship & Verify** | ship, review, rollback-drill, qa-live | Getting to production without surprises |
|
|
172
|
+
| **Operate & Close** | status, demo-prep, debrief, exec-narrative, dashboard, multi-customer-ops, close, handoff-engineering, pattern-extract | Running and ending the engagement well |
|
|
258
173
|
|
|
259
|
-
|
|
174
|
+
**Overlays** activate automatically when your engagement involves AI projects, executive reporting, fintech, healthcare, or government compliance.
|
|
260
175
|
|
|
261
|
-
|
|
262
|
-
|---|---|
|
|
263
|
-
| No client memory - re-paste every session | `.fde/` writes itself; next session loads automatically |
|
|
264
|
-
| No engagement politics - pure engineering | Skills for stakeholder radar, trust, scope defense, exec narratives |
|
|
265
|
-
| No multi-customer support | One folder per client, portfolio dashboard, hard isolation |
|
|
266
|
-
| Flat list of skills - find it yourself | Type `@fde`, describe the situation, it routes |
|
|
267
|
-
| Generic engineering or startup advice | Built for embed work: brownfield safety, earned access, sponsor alignment, workshop facilitation |
|
|
268
|
-
| No document generation | **Artifacts overlay:** governance frameworks, exec decks, compliance packs, ADRs from memory |
|
|
269
|
-
| No AI project guidance | **AI overlay:** model selection, RAG, agents, governance, drift, cost at scale |
|
|
176
|
+
Full skill details: [docs/skills-reference.md](docs/skills-reference.md)
|
|
270
177
|
|
|
271
178
|
---
|
|
272
179
|
|
|
@@ -287,37 +194,22 @@ Your **fieldbook** - one per client, private to you, plain markdown:
|
|
|
287
194
|
| `risks.md` | Live risk register | all phases |
|
|
288
195
|
| `delivery.md` | What shipped, business value, rollback, pulse, adoption metrics | build / ship |
|
|
289
196
|
|
|
290
|
-
Every claim
|
|
197
|
+
Every claim is tagged with its source and date so you can defend it in front of skeptical stakeholders.
|
|
291
198
|
|
|
292
199
|
---
|
|
293
200
|
|
|
294
|
-
## The CLI
|
|
201
|
+
## The CLI
|
|
202
|
+
|
|
203
|
+
These commands run locally on your machine. No AI needed, no API costs, works offline.
|
|
295
204
|
|
|
296
205
|
```bash
|
|
297
|
-
fde scan # day-1 recon: hotspots
|
|
206
|
+
fde scan # day-1 recon: hotspots, test gaps, "temporary" code, AI components, secrets
|
|
298
207
|
fde resume # initialize or resume an engagement
|
|
299
208
|
fde log # write decisions, risks, delivery, contacts
|
|
300
209
|
fde receipts # search memory with dates
|
|
301
210
|
fde capture # session-end snapshot
|
|
302
211
|
fde status # portfolio triage across all customers
|
|
303
|
-
fde dashboard # render every engagement into one offline
|
|
304
|
-
```
|
|
305
|
-
|
|
306
|
-
---
|
|
307
|
-
|
|
308
|
-
## What's inside
|
|
309
|
-
|
|
310
|
-
```
|
|
311
|
-
bin/fde.js the CLI - deterministic core, works without AI:
|
|
312
|
-
fde scan · resume · log · receipts · capture · status · dashboard
|
|
313
|
-
skills/fde/
|
|
314
|
-
SKILL.md the router: voice, memory contract, 6-domain routing
|
|
315
|
-
references/
|
|
316
|
-
34 skill files one method per file
|
|
317
|
-
5 overlays ai.md, artifacts.md, fintech.md, healthcare.md, gov.md
|
|
318
|
-
hooks/ session-start, session-stop, pre-compact
|
|
319
|
-
templates/.fde/ the 10 core memory files an init creates
|
|
320
|
-
docs/ install guides, schema, methodology
|
|
212
|
+
fde dashboard # render every engagement into one offline dashboard
|
|
321
213
|
```
|
|
322
214
|
|
|
323
215
|
---
|
|
@@ -331,8 +223,6 @@ docs/ install guides, schema, methodology
|
|
|
331
223
|
- **Map before moving** - unknown terrain gets characterisation tests
|
|
332
224
|
- **Thin slices** - ship learning, not theatre
|
|
333
225
|
- **One customer, one folder** - context never bleeds
|
|
334
|
-
- **AI degrades silently** - monitor outputs, not just uptime
|
|
335
|
-
- **Scale readiness is organizational** - not just technical
|
|
336
226
|
|
|
337
227
|
---
|
|
338
228
|
|
|
@@ -348,4 +238,4 @@ cd fdeops && git pull && node bin/install.js
|
|
|
348
238
|
|
|
349
239
|
Maintained by **[Subash Natarajan](https://www.linkedin.com/in/subashn/)**. Feedback via [Issues](https://github.com/suboss87/fdeops/issues) - see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
350
240
|
|
|
351
|
-
[FDE Methodology](FDE-METHODOLOGY.md) · [ATTRIBUTION.md](ATTRIBUTION.md) · [SECURITY.md](SECURITY.md) · [PRIVACY.md](PRIVACY.md) · [Repo layout](docs/REPO_LAYOUT.md) · MIT
|
|
241
|
+
[FDE Methodology](FDE-METHODOLOGY.md) · [ATTRIBUTION.md](ATTRIBUTION.md) · [SECURITY.md](SECURITY.md) · [PRIVACY.md](PRIVACY.md) · [Repo layout](docs/REPO_LAYOUT.md) · [Skills reference](docs/skills-reference.md) · MIT
|
package/bin/check.js
CHANGED
|
@@ -108,11 +108,8 @@ else ok('README no demo gif')
|
|
|
108
108
|
for (const section of [
|
|
109
109
|
'How it works',
|
|
110
110
|
'Quickstart',
|
|
111
|
-
'The basic workflow',
|
|
112
|
-
"What's inside",
|
|
113
111
|
'Engagement memory',
|
|
114
112
|
'Who this is for',
|
|
115
|
-
'Who does what',
|
|
116
113
|
'Without fdeops vs with fdeops',
|
|
117
114
|
'Principles',
|
|
118
115
|
]) {
|
|
@@ -121,9 +118,6 @@ for (const section of [
|
|
|
121
118
|
if (!readme.includes('AI coding agent')) {
|
|
122
119
|
fail('README must say AI coding agent (not ambiguous "agent")')
|
|
123
120
|
}
|
|
124
|
-
if (!/agent.*always means the AI|“agent” always means/i.test(readme)) {
|
|
125
|
-
fail('README must define that agent means AI, not human')
|
|
126
|
-
}
|
|
127
121
|
ok('README clarity sections')
|
|
128
122
|
|
|
129
123
|
if (readme.includes('your-client-repo')) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fdeops",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.3",
|
|
4
4
|
"description": "Field kit for engineers embedded in client work - a real CLI (recon, memory, portfolio), one @fde skill with field judgment on top, and hooks that make it automatic. Claude Code plugin and any agent that loads skills.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"fdeops": "bin/install.js",
|