faf-cli 5.0.5 → 5.0.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/README.md +16 -12
- package/package.json +1 -1
- package/project.faf +21 -3
package/README.md
CHANGED
|
@@ -55,7 +55,8 @@ faf auto
|
|
|
55
55
|
It reads your `package.json`, `Cargo.toml`, or `pyproject.toml` — fills in the blanks — and scores the result. No questions, no prompts, no manual entry.
|
|
56
56
|
|
|
57
57
|
```bash
|
|
58
|
-
|
|
58
|
+
bunx faf-cli auto # Bun (recommended — same toolchain as Claude Code)
|
|
59
|
+
npx faf-cli auto # npm (no install required)
|
|
59
60
|
faf auto # Or globally installed
|
|
60
61
|
```
|
|
61
62
|
|
|
@@ -152,7 +153,7 @@ Every README should answer these questions. Here's ours:
|
|
|
152
153
|
| **🎯 WHY** do you need it? | 100% context (AI-scored), persists forever, syncs automatically - saves $1000s/developer |
|
|
153
154
|
| **🌍 WHERE** does it work? | Everywhere AI needs context (Claude Code, Gemini CLI, Cursor, etc.) |
|
|
154
155
|
| **⏰ WHEN** should you use it? | New projects (day one), existing projects (now), exploring repos (instantly) |
|
|
155
|
-
| **🚀 HOW** does it work? | `npx faf-cli git <url>` - No install, no clone, 2 seconds |
|
|
156
|
+
| **🚀 HOW** does it work? | `bunx faf-cli git <url>` or `npx faf-cli git <url>` - No install, no clone, 2 seconds |
|
|
156
157
|
|
|
157
158
|
**For AI:** Read the detailed sections below for full context.
|
|
158
159
|
**For humans:** Use this pattern in YOUR README. Answer these 6 questions clearly.
|
|
@@ -302,7 +303,7 @@ faf auto # Auto-enhance to Gold Code
|
|
|
302
303
|
### Exploring Repos
|
|
303
304
|
**Instantly.** Generate context for ANY GitHub repo WITHOUT cloning:
|
|
304
305
|
```bash
|
|
305
|
-
|
|
306
|
+
bunx faf-cli git https://github.com/facebook/react
|
|
306
307
|
# 2 seconds → 95% 🥈 Silver score
|
|
307
308
|
# No install. No clone. Just instant context.
|
|
308
309
|
```
|
|
@@ -332,18 +333,20 @@ Add to package.json to see FAF status every dev session:
|
|
|
332
333
|
|
|
333
334
|
```bash
|
|
334
335
|
# Generate AI context for ANY GitHub repo
|
|
335
|
-
|
|
336
|
+
bunx faf-cli git https://github.com/facebook/react
|
|
336
337
|
# ⏱️ 2 seconds → 95% 🥈 Silver score
|
|
337
338
|
|
|
338
|
-
|
|
339
|
+
bunx faf-cli git https://github.com/sveltejs/svelte
|
|
339
340
|
# ⏱️ 2 seconds → 95% 🥈 Silver score
|
|
340
341
|
|
|
341
|
-
|
|
342
|
+
bunx faf-cli git https://github.com/your-org/your-repo
|
|
342
343
|
# ⏱️ 2 seconds → 90%+ context, ready for AI
|
|
343
344
|
```
|
|
344
345
|
|
|
346
|
+
> **Also works with npx:** Replace `bunx` with `npx` if you prefer npm.
|
|
347
|
+
|
|
345
348
|
**What just happened?**
|
|
346
|
-
- ✅ No install required (`npx` runs latest version)
|
|
349
|
+
- ✅ No install required (`bunx`/`npx` runs latest version)
|
|
347
350
|
- ✅ No cloning required (uses GitHub API)
|
|
348
351
|
- ✅ 2 seconds → 95% AI-ready context
|
|
349
352
|
- ✅ Works on ANY public GitHub repo
|
|
@@ -354,10 +357,10 @@ npx faf-cli git https://github.com/your-org/your-repo
|
|
|
354
357
|
|
|
355
358
|
```bash
|
|
356
359
|
# Start with your codebase
|
|
357
|
-
npx faf-cli init
|
|
360
|
+
bunx faf-cli init # or: npx faf-cli init
|
|
358
361
|
|
|
359
362
|
# Or go interactive (completes the 6 Ws)
|
|
360
|
-
npx faf-cli go
|
|
363
|
+
bunx faf-cli go # or: npx faf-cli go
|
|
361
364
|
```
|
|
362
365
|
|
|
363
366
|
### For Pros: Install Globally (Daily Use)
|
|
@@ -366,6 +369,7 @@ Once you're hooked, install globally for full power:
|
|
|
366
369
|
|
|
367
370
|
```bash
|
|
368
371
|
# Install once
|
|
372
|
+
bun install -g faf-cli # Bun (recommended)
|
|
369
373
|
npm install -g faf-cli # or: brew install faf-cli
|
|
370
374
|
|
|
371
375
|
# Then use short commands forever
|
|
@@ -379,8 +383,8 @@ faf bi-sync # Keep synced
|
|
|
379
383
|
### The Killer Combo
|
|
380
384
|
|
|
381
385
|
```bash
|
|
382
|
-
|
|
383
|
-
|
|
386
|
+
bunx faf-cli git <repo-url> # 90%+ context, no install, no clone
|
|
387
|
+
bunx faf-cli go # Interactive polish to 100%
|
|
384
388
|
```
|
|
385
389
|
|
|
386
390
|
### Comparison: Traditional vs 1-Click Context
|
|
@@ -396,7 +400,7 @@ faf init # 5 seconds
|
|
|
396
400
|
|
|
397
401
|
**1-Click Context:**
|
|
398
402
|
```bash
|
|
399
|
-
|
|
403
|
+
bunx faf-cli git https://github.com/facebook/react
|
|
400
404
|
# Total: 2 seconds + ZERO local files
|
|
401
405
|
```
|
|
402
406
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "faf-cli",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.6",
|
|
4
4
|
"description": "The Persistent AI Context Standard • Foundation Layer for AI • IANA-Registered • Anthropic-Approved • project.faf = AI's foundation",
|
|
5
5
|
"icon": "https://faf.one/orange-smiley.svg",
|
|
6
6
|
"logo": "https://faf.one/orange-smiley.svg",
|
package/project.faf
CHANGED
|
@@ -54,6 +54,11 @@ stack:
|
|
|
54
54
|
api_type: CLI
|
|
55
55
|
hosting: npm registry
|
|
56
56
|
cicd: GitHub Actions
|
|
57
|
+
targetUser: developers
|
|
58
|
+
coreProblem: understanding project
|
|
59
|
+
missionPurpose: project documentation
|
|
60
|
+
packageManager: npm/yarn/pnpm
|
|
61
|
+
mainLanguage: JavaScript/TypeScript
|
|
57
62
|
preferences:
|
|
58
63
|
quality_bar: zero_errors
|
|
59
64
|
commit_style: conventional_emoji
|
|
@@ -64,15 +69,16 @@ preferences:
|
|
|
64
69
|
documentation: as_needed
|
|
65
70
|
state:
|
|
66
71
|
phase: development
|
|
67
|
-
version: 5.0.
|
|
72
|
+
version: 5.0.6
|
|
68
73
|
focus: production_deployment
|
|
69
74
|
status: green_flag
|
|
70
75
|
next_milestone: npm_publication
|
|
71
76
|
blockers: null
|
|
72
77
|
scores:
|
|
73
|
-
faf_score:
|
|
78
|
+
faf_score: 100
|
|
74
79
|
slot_based_percentage: 86
|
|
75
80
|
total_slots: 21
|
|
81
|
+
ai_confidence: high
|
|
76
82
|
tags:
|
|
77
83
|
auto_generated:
|
|
78
84
|
- faf-cli
|
|
@@ -125,5 +131,17 @@ faf_dna:
|
|
|
125
131
|
birth_date: 2026-02-18T19:56:53.125Z
|
|
126
132
|
current_score: 86
|
|
127
133
|
metadata:
|
|
128
|
-
last_claude_sync: 2026-03-
|
|
134
|
+
last_claude_sync: 2026-03-13T13:59:05.699Z
|
|
129
135
|
bi_sync: active
|
|
136
|
+
stack_signature: typescript-nodejs-javascript
|
|
137
|
+
detected_frameworks:
|
|
138
|
+
- Claude Code
|
|
139
|
+
- Jest
|
|
140
|
+
- Node.js
|
|
141
|
+
- JavaScript
|
|
142
|
+
- TypeScript
|
|
143
|
+
turbo_cat_intelligence: 275
|
|
144
|
+
stats:
|
|
145
|
+
best_auto_time: 0.2
|
|
146
|
+
last_auto_time: 0.2
|
|
147
|
+
times_run: 3
|