fdeops 3.5.0 → 3.5.1
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 +64 -41
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
|
-
# fdeops
|
|
1
|
+
# fdeops
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/fdeops)
|
|
4
|
+
[](https://github.com/suboss87/fdeops/actions)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
[](https://nodejs.org)
|
|
4
7
|
|
|
5
|
-
You
|
|
8
|
+
You embed at a client site. You bridge strategy and code. You ship on their systems, not yours.
|
|
9
|
+
|
|
10
|
+
Every morning you open your AI coding agent, and it has no idea what happened yesterday. You re-paste the same context. You explain the stakeholders again. You remind it about the scope change from Tuesday. Meanwhile, the real problem - the one the brief didn't mention - sits undiscovered because nobody asked the right questions on day one.
|
|
11
|
+
|
|
12
|
+
**fdeops fixes this.** It gives your AI agent a complete engagement methodology and a private memory that writes itself. You type `@fde`, describe your situation, and the right method runs - from first stakeholder meeting to final handoff. Tomorrow's session starts exactly where today ended.
|
|
6
13
|
|
|
7
14
|
```mermaid
|
|
8
15
|
flowchart LR
|
|
@@ -32,15 +39,16 @@ Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini
|
|
|
32
39
|
|
|
33
40
|
---
|
|
34
41
|
|
|
35
|
-
## Who
|
|
36
|
-
|
|
37
|
-
| Role | Who | What they do |
|
|
38
|
-
|------|-----|----------------|
|
|
39
|
-
| **You (the FDE)** | **Human** on the engagement | Stakeholder meetings, calls, judgment, sign-off, typing `@fde`, owning what ships |
|
|
40
|
-
| **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 |
|
|
41
|
-
| **`@fde`** | **One skill** inside the AI agent | Hears your situation, routes to the right phase, does that phase's work |
|
|
42
|
+
## Who this is for
|
|
42
43
|
|
|
43
|
-
|
|
44
|
+
| You are... | fdeops helps when... |
|
|
45
|
+
|----------|-------------------|
|
|
46
|
+
| **Consultant or contractor at a client site** | Every session, you re-explain context. fdeops remembers for you. |
|
|
47
|
+
| **Solutions architect bridging strategy and code** | You navigate politics AND architecture. fdeops has methods for both. |
|
|
48
|
+
| **Agency engineer running 3-5 clients** | Client details blur together. One `.fde/` per customer, never cross-contaminated. |
|
|
49
|
+
| **Forward Deployed Engineer** (Palantir, Anthropic, Databricks) | The role this was built for. 34 skills across the full engagement lifecycle. |
|
|
50
|
+
| **Technical founder doing client work solo** | You ARE the team. The agent becomes your second brain. |
|
|
51
|
+
| **Enterprise programme lead running AI transformations** | AI overlay: model selection, RAG, agents, governance, drift, cost at scale. |
|
|
44
52
|
|
|
45
53
|
---
|
|
46
54
|
|
|
@@ -57,6 +65,8 @@ Works with **Claude Code** · **Cursor** · **Copilot** · **Devin** · **Gemini
|
|
|
57
65
|
|
|
58
66
|
## Quickstart
|
|
59
67
|
|
|
68
|
+
**Requires:** [Node.js](https://nodejs.org) >= 18
|
|
69
|
+
|
|
60
70
|
```bash
|
|
61
71
|
# Option A: Skills CLI (any agent)
|
|
62
72
|
npx skills add suboss87/fdeops
|
|
@@ -82,11 +92,26 @@ Then talk to your agent:
|
|
|
82
92
|
@fde I'm on site. First stakeholder meeting tomorrow. Brief says fix the payments API.
|
|
83
93
|
```
|
|
84
94
|
|
|
95
|
+
The system routes to `land` and starts working:
|
|
96
|
+
```
|
|
97
|
+
Routing to: land (first engagement, day 1)
|
|
98
|
+
|
|
99
|
+
Before tomorrow's meeting, I need to understand a few things:
|
|
100
|
+
|
|
101
|
+
1. Who owns the budget for this work? (the brief doesn't say)
|
|
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?)
|
|
105
|
+
|
|
106
|
+
Writing: brief.md, success.md, stakeholders.md, trust-profile.md
|
|
107
|
+
Next: bring answers from the meeting, then we discover the real problem.
|
|
108
|
+
```
|
|
109
|
+
|
|
85
110
|
That's it. The system takes over from there.
|
|
86
111
|
|
|
87
112
|
### Use it in any tool
|
|
88
113
|
|
|
89
|
-
One brain (`skills/fde/SKILL.md`), a thin pointer per tool
|
|
114
|
+
One brain (`skills/fde/SKILL.md`), a thin pointer per tool:
|
|
90
115
|
|
|
91
116
|
```bash
|
|
92
117
|
node bin/install.js adapters ~/fde-engagements/my-client
|
|
@@ -105,14 +130,26 @@ Each file just points at `@fde` - so the method, overlays, and memory stay in on
|
|
|
105
130
|
|
|
106
131
|
---
|
|
107
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.**
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
108
145
|
## How it works
|
|
109
146
|
|
|
110
147
|
```text
|
|
111
|
-
YOU (human
|
|
112
|
-
meetings, judgment
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
148
|
+
YOU (human) AI CODING AGENT (software)
|
|
149
|
+
meetings, judgment @fde routes -> right skill -> does the work
|
|
150
|
+
| -----> .fde/ memory (self-writing)
|
|
151
|
+
| |
|
|
152
|
+
+---------------> client workspace (code, VPN, tickets)
|
|
116
153
|
```
|
|
117
154
|
|
|
118
155
|
| Layer | What | Where |
|
|
@@ -155,7 +192,7 @@ You only ever type **`@fde`**. The AI coding agent reads `context.md` from your
|
|
|
155
192
|
|-------|-------------|
|
|
156
193
|
| **discover** | Scan repo + hunt the workaround + **workshop facilitation** + **data estate assessment** |
|
|
157
194
|
| **assumption-audit** | Extract untested assumptions, classify by blast radius, kill the riskiest first |
|
|
158
|
-
| **use-case-scoring** | Score on value
|
|
195
|
+
| **use-case-scoring** | Score on value x urgency x alignment x data readiness / complexity |
|
|
159
196
|
| **sketch** | Prototype the killer assumption in one day; kill fast, log the learning |
|
|
160
197
|
|
|
161
198
|
### 3. Plan & Align
|
|
@@ -164,7 +201,7 @@ You only ever type **`@fde`**. The AI coding agent reads `context.md` from your
|
|
|
164
201
|
| Skill | What it does |
|
|
165
202
|
|-------|-------------|
|
|
166
203
|
| **plan** | Work backwards from success + **estimation** (3-point sizing) + **migration strategy** |
|
|
167
|
-
| **business-case** | Cost of doing nothing
|
|
204
|
+
| **business-case** | Cost of doing nothing -> investment -> return -> sensitivity check |
|
|
168
205
|
| **options-analysis** | Three genuine options (conservative / pragmatic / ambitious) |
|
|
169
206
|
| **initiative-triage** | 20 things are "urgent"; pick 3 for Now, make trade-offs visible |
|
|
170
207
|
|
|
@@ -174,10 +211,10 @@ You only ever type **`@fde`**. The AI coding agent reads `context.md` from your
|
|
|
174
211
|
| Skill | What it does |
|
|
175
212
|
|-------|-------------|
|
|
176
213
|
| **build** | Blast radius + legacy safety + **integration design** + **team amplification** |
|
|
177
|
-
| **incremental-build** | Vertical slices, 100
|
|
214
|
+
| **incremental-build** | Vertical slices, 100-300 lines each, visible progress every 2-3 days |
|
|
178
215
|
| **test-on-legacy** | Characterise first, Strangler Fig, spot lying tests |
|
|
179
|
-
| **blast-radius** | Trace dependencies, classify impact (CONTAINED
|
|
180
|
-
| **debug** | Systematic: reproduce
|
|
216
|
+
| **blast-radius** | Trace dependencies, classify impact (CONTAINED -> IRREVERSIBLE) |
|
|
217
|
+
| **debug** | Systematic: reproduce -> isolate -> one hypothesis -> verify |
|
|
181
218
|
| **rescue** | Production fire, trust fire, wrong-brief-mid-build, **or full pivot** |
|
|
182
219
|
| **security-audit** | Threat model in 5 minutes, STRIDE pass, secrets scan |
|
|
183
220
|
| **observability** | Define "working" before instrumenting; the four metrics |
|
|
@@ -199,7 +236,7 @@ You only ever type **`@fde`**. The AI coding agent reads `context.md` from your
|
|
|
199
236
|
|-------|-------------|
|
|
200
237
|
| **status** | Sponsor update from the week's actual record |
|
|
201
238
|
| **demo-prep** | The one number, live-vs-canned, five hard questions |
|
|
202
|
-
| **debrief** | Walk out of any meeting
|
|
239
|
+
| **debrief** | Walk out of any meeting -> decisions, signals, actions in memory |
|
|
203
240
|
| **exec-narrative** | Pyramid: governing thought, three supports, SCQA frame |
|
|
204
241
|
| **dashboard** | Portfolio view across all customers, trust-ordered |
|
|
205
242
|
| **multi-customer-ops** | Daily triage, context-switch, cross-contamination prevention |
|
|
@@ -227,7 +264,7 @@ You only ever type **`@fde`**. The AI coding agent reads `context.md` from your
|
|
|
227
264
|
| No engagement politics - pure engineering | Skills for stakeholder radar, trust, scope defense, exec narratives |
|
|
228
265
|
| No multi-customer support | One folder per client, portfolio dashboard, hard isolation |
|
|
229
266
|
| Flat list of skills - find it yourself | Type `@fde`, describe the situation, it routes |
|
|
230
|
-
| Generic engineering or startup advice |
|
|
267
|
+
| Generic engineering or startup advice | Built for embed work: brownfield safety, earned access, sponsor alignment, workshop facilitation |
|
|
231
268
|
| No document generation | **Artifacts overlay:** governance frameworks, exec decks, compliance packs, ADRs from memory |
|
|
232
269
|
| No AI project guidance | **AI overlay:** model selection, RAG, agents, governance, drift, cost at scale |
|
|
233
270
|
|
|
@@ -257,7 +294,7 @@ Every claim carries evidence: `(ops lead, Day 5)` · `(churn: 47/90d)` · `(stat
|
|
|
257
294
|
## The CLI (works without AI)
|
|
258
295
|
|
|
259
296
|
```bash
|
|
260
|
-
fde scan # day-1 recon: hotspots
|
|
297
|
+
fde scan # day-1 recon: hotspots x tests, "temporary" code, AI calls, secrets
|
|
261
298
|
fde resume # initialize or resume an engagement
|
|
262
299
|
fde log # write decisions, risks, delivery, contacts
|
|
263
300
|
fde receipts # search memory with dates
|
|
@@ -268,20 +305,6 @@ fde dashboard # render every engagement into one offline fieldbook.html (0 toke
|
|
|
268
305
|
|
|
269
306
|
---
|
|
270
307
|
|
|
271
|
-
## Who this is for
|
|
272
|
-
|
|
273
|
-
| You are... | fdeops helps when... |
|
|
274
|
-
|----------|-------------------|
|
|
275
|
-
| **New to embed work** | You get a method per phase, not just encouragement |
|
|
276
|
-
| **Senior operator, solo on site** | The agent is your second brain: memory + grunt work |
|
|
277
|
-
| **Multi-client consultant** | One `.fde/` per customer, never cross-contaminated |
|
|
278
|
-
| **Running AI transformations** | AI overlay: model selection → RAG → agents → scale → governance |
|
|
279
|
-
| **Enterprise programme lead** | Estimation, migration strategy, scale-readiness, governance artifacts |
|
|
280
|
-
|
|
281
|
-
**Works with:** Claude Code, Cursor, Copilot, Windsurf, Cline, Devin, Gemini CLI - any agent that reads SKILL.md.
|
|
282
|
-
|
|
283
|
-
---
|
|
284
|
-
|
|
285
308
|
## What's inside
|
|
286
309
|
|
|
287
310
|
```
|
|
@@ -323,6 +346,6 @@ cd fdeops && git pull && node bin/install.js
|
|
|
323
346
|
|
|
324
347
|
## Contributing
|
|
325
348
|
|
|
326
|
-
Maintained by **Subash Natarajan**. Feedback via [Issues](https://github.com/suboss87/fdeops/issues) - see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
349
|
+
Maintained by **[Subash Natarajan](https://www.linkedin.com/in/subashn/)**. Feedback via [Issues](https://github.com/suboss87/fdeops/issues) - see [CONTRIBUTING.md](CONTRIBUTING.md).
|
|
327
350
|
|
|
328
|
-
[ATTRIBUTION.md](ATTRIBUTION.md) · [SECURITY.md](SECURITY.md) · [Repo layout](docs/REPO_LAYOUT.md) · MIT
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fdeops",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
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",
|