forgetrail 0.3.0

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.
Files changed (98) hide show
  1. package/CONTINUATION_PROMPT.md +42 -0
  2. package/INITIAL_PROMPT.md +214 -0
  3. package/LICENSE +201 -0
  4. package/README.md +198 -0
  5. package/TRACKING_SCHEMA.md +162 -0
  6. package/TRY_FORGETRAIL.md +78 -0
  7. package/WORKFLOW.md +921 -0
  8. package/content/AGENT_INTEGRATION_claude.md +38 -0
  9. package/content/AGENT_INTEGRATION_cursor.md +53 -0
  10. package/content/AGENT_INTEGRATION_generic.md +50 -0
  11. package/content/AGENT_INTEGRATION_grok.md +82 -0
  12. package/content/DEV_AUTOMATION_SCRIPTS.md +103 -0
  13. package/content/FORGETRAIL_LITE.md +1202 -0
  14. package/content/FORGETRAIL_LITE_UPDATES.md +13 -0
  15. package/content/FORGETRAIL_PROGRESS.md +26 -0
  16. package/content/GENESIS_SPEC_PROMPT.md +70 -0
  17. package/content/GENESIS_STUB.md +18 -0
  18. package/content/GREENFIELD_INTAKE.md +76 -0
  19. package/content/KICKOFF_WITHOUT_MCP.md +16 -0
  20. package/content/LITE_WORKFLOW_TRACKING.json +42 -0
  21. package/content/NEW_PROJECT_BOOTSTRAP.md +180 -0
  22. package/content/ONE_CLICK_DEV_SETUP.md +142 -0
  23. package/content/PLAN_MODE_PATTERNS.md +43 -0
  24. package/content/POCKETBASE_SCHEMA_SCRIPT.md +52 -0
  25. package/content/POST_BOOTSTRAP_USER_MESSAGE.md +51 -0
  26. package/content/SCAFFOLD_INSTALL.json +110 -0
  27. package/content/SESSION_RESUME_MCP.md +35 -0
  28. package/content/SYSTEM_HEALTH_CHECKS.md +131 -0
  29. package/content/USER_REPLY_FORMAT.md +41 -0
  30. package/content/cursor-rules/forgetrail-lessons-gate.mdc +30 -0
  31. package/content/cursor-rules/forgetrail-lessons-mcp.mdc +24 -0
  32. package/content/cursor-rules/forgetrail-no-trailer.mdc +49 -0
  33. package/content/cursor-rules/forgetrail-phase-status.mdc +61 -0
  34. package/content/cursor-rules/forgetrail-updates-log.mdc +30 -0
  35. package/content/cursor-rules/spec-completion.mdc +33 -0
  36. package/content/cursor-rules/specs-and-todo.mdc +26 -0
  37. package/content/cursor-rules/url-host-matching.mdc +31 -0
  38. package/content/cursor-rules/us-english.mdc +9 -0
  39. package/content/cursor-rules/user-facing-content.mdc +31 -0
  40. package/content/examples/GENESIS_SAMPLE_mars-habitat-roster.md +154 -0
  41. package/content/forgetrail-workspace-README.md +43 -0
  42. package/content/scripts/forgetrail-dev-launcher.mjs +208 -0
  43. package/content/scripts/forgetrail-env.mjs +51 -0
  44. package/content/scripts/setup-ollama.mjs +207 -0
  45. package/content/scripts/setup-pocketbase.mjs +133 -0
  46. package/content/scripts/test-ollama.mjs +71 -0
  47. package/content/scripts/test-pocketbase.mjs +110 -0
  48. package/content/skills/forgetrail/SKILL.md +92 -0
  49. package/docs/AUTOMATED_TESTING.md +269 -0
  50. package/docs/BLACK_HAT_REPORT.md +143 -0
  51. package/docs/BRAND_AND_PRODUCT.md +381 -0
  52. package/docs/BUGS.md +62 -0
  53. package/docs/BUSINESS_PLAN.md +256 -0
  54. package/docs/CODE_QUALITY.md +170 -0
  55. package/docs/CONTEXT_PROMPT.md +357 -0
  56. package/docs/DEPLOYMENT.md +181 -0
  57. package/docs/DESIGN_SYSTEM.md +414 -0
  58. package/docs/DEV_ESTIMATE.md +127 -0
  59. package/docs/FORGETRAIL_RENAME.md +193 -0
  60. package/docs/IDEAS.md +19 -0
  61. package/docs/MARKETING_GROWTH.md +301 -0
  62. package/docs/NAMING_EXPLORATION.md +406 -0
  63. package/docs/NPM.md +98 -0
  64. package/docs/PHASE_1_BRIEF.md +161 -0
  65. package/docs/README.md +75 -0
  66. package/docs/SPEC_FEATURE_TEMPLATE.md +155 -0
  67. package/docs/SPEC_UI_CHROME_NAV_TEMPLATE.md +48 -0
  68. package/docs/TECHNICAL_REFERENCE.md +836 -0
  69. package/docs/TEST_PLAN.md +467 -0
  70. package/docs/TODO.md +125 -0
  71. package/package.json +68 -0
  72. package/prompts/black-hat-audit.md +235 -0
  73. package/prompts/brand-copy-edit-pass.md +55 -0
  74. package/prompts/cialdini-marketing-audit.md +141 -0
  75. package/prompts/competitor-deep-dive.md +201 -0
  76. package/prompts/docs-alignment-audit.md +108 -0
  77. package/prompts/engineering-skill-library.md +75 -0
  78. package/prompts/landing-page-rewrite.md +63 -0
  79. package/prompts/microcopy-centralization.md +128 -0
  80. package/prompts/panel-usability-audit.md +197 -0
  81. package/prompts/personal-beta-outreach.md +195 -0
  82. package/prompts/pre-launch-audit.md +148 -0
  83. package/prompts/product-feedback-to-spec.md +76 -0
  84. package/prompts/propagate-to-forgetrail.md +315 -0
  85. package/prompts/user-facing-content-sync-audit.md +200 -0
  86. package/prompts/ux-cohesion-audit.md +165 -0
  87. package/scripts/ensure-lease.mjs +23 -0
  88. package/scripts/forgetrail-cli.mjs +85 -0
  89. package/scripts/install-forgetrail-lite.mjs +11 -0
  90. package/scripts/install-forgetrail.mjs +11 -0
  91. package/scripts/install-lib.mjs +115 -0
  92. package/scripts/install.mjs +163 -0
  93. package/scripts/link-global.mjs +100 -0
  94. package/scripts/mcp-lib.mjs +177 -0
  95. package/scripts/mcp-status.mjs +155 -0
  96. package/scripts/publish-gate.mjs +110 -0
  97. package/scripts/rename-to-forgetrail.mjs +273 -0
  98. package/workflow_tracking.json +124 -0
@@ -0,0 +1,127 @@
1
+ # Development Estimate
2
+
3
+ Rough estimate of the cost in man-hours to develop [APP NAME] from scratch, based on a full codebase inventory.
4
+
5
+ **Last updated:** [DATE]
6
+
7
+ > πŸ’‘ **Lesson learned:** This document serves three purposes:
8
+ > 1. **Credibility** β€” When potential investors, partners, or acquirers ask "how much would this cost to rebuild?", you have a defensible answer.
9
+ > 2. **Scope awareness** β€” Forces you to inventory every feature area, revealing complexity you've normalized.
10
+ > 3. **Hiring context** β€” If you ever need to bring on help, this doc scopes the project accurately.
11
+ >
12
+ > Keep this updated as major features ship. The exercise of estimating is as valuable as the numbers.
13
+
14
+ ## How to measure the inventory (recommended)
15
+
16
+ Use **reproducible commands** so the estimate does not drift silently when someone eyeballs the repo.
17
+
18
+ > πŸ”§ **Guidance:** Prefer **tracked source only** (`git ls-files`) so generated artifacts and `node_modules` do not inflate totals.
19
+
20
+ 1. **Application LOC (TypeScript + Svelte/Vue/React as applicable)** β€” Sum line counts for tracked files under your primary source tree (e.g. `src/**/*.ts` + `src/**/*.svelte`). Loop over paths or use a LOC tool; document the exact glob in the **Last updated** note or a footnote.
21
+ 2. **API surface** β€” Count **route handler modules** your framework uses (e.g. SvelteKit `+server.ts` files under `src/routes`). That number tends to track authorization and test burden better than β€œREST resources.”
22
+ 3. **Server/library modules** β€” Count `.ts` files under `src/lib/server/` (or equivalent) as a proxy for backend complexity.
23
+ 4. **UI inventory** β€” Count `.svelte` / `.tsx` files; split **panels**, **modals**, **tab subtrees**, and **charts** when possible so effort tables stay explainable.
24
+ 5. **Monolithic hotspots** β€” Note any **very large** single files (LLM orchestration, marketing shell). They inflate LOC without representing even distribution of work; call them out under **Key complexity drivers**.
25
+
26
+ > πŸ’‘ **Lesson learned:** A naive LOC figure without methodology invites skepticism. One sentence on *how* it was counted beats a false-precision single integer.
27
+
28
+ ## Codebase Inventory
29
+
30
+ | Metric | Value |
31
+ | ------------------------------ | ----- |
32
+ | **Estimated Total LOC** | |
33
+ | **UI sources** | |
34
+ | **Panels / major shells** | |
35
+ | **Modals / dialogs** | |
36
+ | **Tab / nested-tab components**| |
37
+ | **Charts / dashboards** | |
38
+ | **API route modules** | |
39
+ | **Server library modules** | |
40
+ | **Third-party integrations** | |
41
+ | **Major feature areas** | |
42
+
43
+ > πŸ’‘ **Lesson learned:** Be specific with component counts.
44
+ > "54 components" means less than "20 panels, 5 modals, 22 tab-area pieces, 4 charts." The breakdown reveals where complexity lives.
45
+
46
+ ## Estimated Development Effort
47
+
48
+ | Area | Hours | Notes |
49
+ | ------------------------------------------------------------ | ----- | --------------------------------------------------------------------- |
50
+ | AI/LLM integration | | Prompt chains, parsing, guards, regression risk per surface |
51
+ | UI layer | | Shell pages, panels, responsive behavior, design-system consistency |
52
+ | [Strategic user workflows β€” e.g. goals / directions] | | Optional: multi-step guided flows that anchor tailoring or discovery |
53
+ | [Prospecting / discovery automation] | | Optional: search orchestration, quotas, empty-state UX |
54
+ | [In-app assistant / copilot] | | Optional: runs, steps, streaming, record binding |
55
+ | [Demo / staging / anonymization tooling] | | Optional: admin-only pipelines, PII rules, synthetic content |
56
+ | Document processing (DOCX / PDF / templates / audits) | | Structured formats multiply integration hours |
57
+ | Auth + OAuth | | Providers, sessions, edge cases |
58
+ | Database + data layer | | Schema, typed client, migrations, file fields |
59
+ | Web scraping or external HTML ingestion | | Per-source variance, bot defenses |
60
+ | Payment/billing | | Checkout, portal, webhooks, entitlements |
61
+ | Template or variant systems | | Optional: alternate document/product variants |
62
+ | Domain-specific intelligence (dossiers, research, scoring) | | Optional |
63
+ | Networking / CRM-lite | | Optional |
64
+ | Analytics & reporting | | |
65
+ | Delegation / impersonation | | Optional |
66
+ | Promo codes / coupons | | Optional |
67
+ | Landing + marketing | | |
68
+ | Security audit + hardening | | Scale notes with **API route module** count |
69
+ | Architecture & config | | Framework wiring, env, observability |
70
+ | Deployment infra | | |
71
+ | Admin / internal tooling | | Optional |
72
+ | Design decisions & UX iteration | | Scales with **major feature area** count |
73
+ | Testing, debugging, polish | | Integration paths, failure states |
74
+ | **Total** | | |
75
+
76
+ > πŸ’‘ **Lesson learned:** The features that take the most hours aren't always
77
+ > the most complex conceptually. They're the ones where integration between systems
78
+ > is unpredictable (e.g., LLM output β†’ structured document formats). When estimating,
79
+ > add 3–5Γ— for anything that bridges AI output with structured formats.
80
+
81
+ ## Iteration density (traditional vs assisted)
82
+
83
+ > πŸ’‘ **Lesson learned:** Headline **hours** are not the same as **iteration count**. Classic teams burn calendar time on compile/fix loops, branch/review cycles, QA bounce-backs, and cross-functional clarification β€” especially wherever formats, vendors, or auth boundaries meet. Assistants collapse many micro-edit-verify cycles; stakeholders comparing β€œrebuild cost” should separate **billable engineer-hours** from **calendar-to-ship under a given process**.
84
+
85
+ > πŸ”§ **Guidance:** If this doc is used with investors or acquirers, add one sentence on whether totals assume **dense assisted iteration** (fewer human-paced loops) vs **traditional gate-heavy delivery** (often **many more** loops at the same nominal scope).
86
+
87
+ ## Key Complexity Drivers
88
+
89
+ > πŸ”§ **Guidance:** List the 3–6 factors that make this project harder than it looks. Examples:
90
+ > 1. **Breadth** β€” N major feature areas all wired together
91
+ > 2. **AI depth** β€” N distinct LLM-powered features, each needing prompt engineering
92
+ > 3. **Format manipulation** β€” Parsing/generating structured documents (DOCX, PDF, etc.)
93
+ > 4. **Multi-source integration** β€” Each external source has different APIs, rate limits, failure modes
94
+ > 5. **Security surface** β€” Auth, authorization, IDOR exposure across N **route modules**
95
+ > 6. **Monolithic hotspots** β€” Few giant files concentrate review and regression risk
96
+
97
+ 1. **[Driver 1]** β€”
98
+ 2. **[Driver 2]** β€”
99
+ 3. **[Driver 3]** β€”
100
+
101
+ ## Cost Ranges (US market)
102
+
103
+ > πŸ”§ **Guidance:** Costs are **[estimated hours] Γ— [loaded rate]** per scenario. Refresh rates yearly; **2026 US senior contract** full-stack often lands **~$150–$225/hr** for established freelancers; **boutique agencies** often quote **~$175–$275/hr** blended; **offshore** blended **~$60–$100/hr** depending on seniority mix.
104
+ >
105
+ > **Fully loaded FTE** includes salary, payroll taxes (~8%), benefits (~20%), equipment β€” roughly **1.3–1.4Γ—** base salary. Calendar duration β‰  billable rebuild hours.
106
+
107
+ Rates below use **[TOTAL HOURS RANGE]** from your effort table β€” replace with your totals.
108
+
109
+ | Scenario | Rate basis | Estimated cost |
110
+ | --------------------------------------------------- | ------------------------------------------- | -------------- |
111
+ | Senior freelance full-stack dev (contract) | $150–200/hr Γ— **[TOTAL HOURS RANGE]** | |
112
+ | Boutique agency (senior team, US-based) | $175–250/hr blended Γ— **[TOTAL HOURS RANGE]** | |
113
+ | Offshore agency (Eastern Europe / LatAm) | $60–90/hr blended Γ— **[TOTAL HOURS RANGE]** | |
114
+ | 2-person in-house team (senior FTE + mid FTE) | Combined annual comp Γ— calendar fraction | |
115
+ | Solo in-house senior engineer (FTE, fully loaded) | Fully loaded annual Γ— calendar fraction | |
116
+
117
+ **Not included:** Model/vendor API spend during development, hosting, payment processor fees, third-party SaaS seats.
118
+
119
+ ## Practical Timelines
120
+
121
+ Calendars stretch with coordination overhead; compress with parallel roles (frontend + backend + design).
122
+
123
+ | Scenario | Timeline |
124
+ | -------------------------------------------- | -------- |
125
+ | Solo senior full-stack dev (knows the stack) | |
126
+ | 2-person team (frontend + backend) | |
127
+ | 3-person team with a designer | |
@@ -0,0 +1,193 @@
1
+ # ForgeTrail rename and copy guide
2
+
3
+ **Status:** Name selected. Domain: [forgetrail.dev](https://forgetrail.dev) (live)
4
+ **Former name:** ForgeKit
5
+ **Canonical spelling:** `ForgeTrail` (one word, camel case). Folder and CLI form: `forgetrail`.
6
+ **Related:** [BRAND_AND_PRODUCT.md](BRAND_AND_PRODUCT.md), [README.md](../README.md)
7
+
8
+ This document is the source of truth for the rename. Use it when changing identifiers, rewriting copy, or updating a project that still says ForgeKit.
9
+
10
+ ---
11
+
12
+ ## 1. What the name means
13
+
14
+ ForgeTrail is not a tracking or logging product. It is a **persistent development system for building software with AI agents**.
15
+
16
+ **Trail** is the right word because it names several things the system does at once:
17
+
18
+ - the **path** through the development lifecycle
19
+ - the **record** of where the project has been
20
+ - **decisions and gotchas** left behind
21
+ - **breadcrumbs** for resuming work
22
+ - **lessons** that future projects can follow
23
+ - the act of **blazing a better trail** through AI-native development
24
+
25
+ The distinctive feature is not merely workflow. The work leaves behind **structured knowledge** that improves what comes next. A loop describes a mechanism. A trail describes the **artifact of accumulated experience**.
26
+
27
+ ### Double reading (keep this)
28
+
29
+ `Forge` works two ways, and both are useful:
30
+
31
+ | Reading | Sense | Use in copy |
32
+ |---------|--------|-------------|
33
+ | **Noun** | Forge Trail: the path, record, or methodology left by the work | "Keep the trail." "The development trail." |
34
+ | **Verb** | forge a trail: create a new path forward | "Forge the path." Agents and developers forge a trail through a project while preserving the trail behind them. |
35
+
36
+ Word order matters. **ForgeTrail**, not TrailForge. ForgeTrail reads as the trail associated with the forge, and as the verb phrase *forge a trail*. TrailForge sounds like a tool that manufactures trails.
37
+
38
+ Someone seeing the name with zero context will not immediately know it is developer infrastructure. That is acceptable. The **descriptor** does that job. Once the concept is explained, the name gets richer. That is a good sign.
39
+
40
+ ---
41
+
42
+ ## 2. Category first, metaphor second
43
+
44
+ **Caution:** "trail" can sound like project tracking, audit logs, or observability. The first subtitle or sentence must establish the category.
45
+
46
+ **Do this:** name + category line, then let "trail" deepen.
47
+
48
+ ```
49
+ ForgeTrail
50
+ A persistent development system for building software with AI agents.
51
+ ```
52
+
53
+ **Then** the name earns its meaning: the path forward, the decisions made, the lessons learned, and the durable record left behind.
54
+
55
+ **Do not** lead with trail-as-log, trail-as-ticket-tracker, or trail-as-observability. Those readings are the failure mode.
56
+
57
+ ---
58
+
59
+ ## 3. Signature lines
60
+
61
+ Use these. Prefer the first when you need one line that teaches the name.
62
+
63
+ | Line | When to use |
64
+ |------|-------------|
65
+ | **Forge the path. Keep the trail.** | Default tagline. Gives the name meaning almost instantly. |
66
+ | **A persistent development system for building software with AI agents.** | Category subtitle. Use under the name on first contact (landing, README hero, About). |
67
+ | **A persistent development trail for AI-native software.** | When the reader already knows it is a dev system and you want the metaphor. |
68
+ | **Build. Learn. Leave a better trail.** | Learning-loop emphasis. The work improves what comes next. |
69
+ | **Build with AI. Preserve what you learn.** | Product-oriented, less metaphorical. Good for skeptical or enterprise readers. |
70
+ | **The development trail for AI-native software.** | Short category + metaphor in one line. |
71
+
72
+ Do not invent a new tagline for a one-off surface if one of these fits.
73
+
74
+ ---
75
+
76
+ ## 4. Copy principles
77
+
78
+ ### What to emphasize
79
+
80
+ - **Persistence:** phase state, decisions, and gotchas live in the repo, not in a chat.
81
+ - **Resume:** breadcrumbs so the next session continues the same trail.
82
+ - **Compounding:** lessons leave the project and improve the next one.
83
+ - **Path + record:** forward motion and the history behind it, together.
84
+ - **Structured knowledge:** not a diary, not a log dump. Decisions, gotchas, and playbooks others can follow.
85
+
86
+ ### What to de-emphasize or avoid
87
+
88
+ | Avoid | Why | Prefer |
89
+ |-------|-----|--------|
90
+ | "kit", "toolbox", "starter pack" as the product identity | Old name energy. Undersells the durable record. | system, playbook, trail, methodology |
91
+ | "loop" as the hero metaphor | Loop is the mechanism. Trail is the artifact. | trail, record, path, lessons left behind |
92
+ | "tracking", "logging", "observability", "audit trail" as the first frame | Sounds like a monitoring product. | development system, lifecycle, persistent record |
93
+ | Hedging *can* on shipped capabilities | Weakens a direct product voice. | Direct verbs: keeps, leaves, preserves, strengthens |
94
+ | Explaining the name before the product | Adds friction. | Category line first; the name then clicks |
95
+
96
+ ### Voice for the rename
97
+
98
+ - Direct. Outcome-oriented. US English.
99
+ - State what the product **does**, not what it can do.
100
+ - No em dashes in user-facing copy.
101
+ - "ForgeTrail" in prose. Backticks for identifiers: `` `.forgetrail/` ``, `` `forgetrail` ``.
102
+
103
+ ### Phrase swaps (old β†’ new)
104
+
105
+ | Old habit | New habit |
106
+ |-----------|-----------|
107
+ | ForgeTrail keeps phase state | ForgeTrail keeps the trail: phase state, decisions, and gotchas |
108
+ | feed lessons back into the kit | leave lessons on the trail / feed lessons back so the next project starts smarter |
109
+ | remember decisions across sessions | keep the trail of decisions across sessions |
110
+ | compounding loop | compounding trail / leave a better trail |
111
+ | the kit | ForgeTrail, the trail, or the system (pick one; do not say "the kit") |
112
+ | Try ForgeKit | Try ForgeTrail |
113
+ | ForgeKit Lite | ForgeTrail Lite |
114
+ | `_forgekit/` vendored tree | `_forgetrail/` vendored tree |
115
+ | `.forgekit/` workspace | `.forgetrail/` workspace |
116
+
117
+ ---
118
+
119
+ ## 5. Identifier map
120
+
121
+ Use this table for mechanical renames. Do not leave mixed old/new identifiers in a consumer project.
122
+
123
+ | Kind | Old | New |
124
+ |------|-----|-----|
125
+ | Product name | ForgeKit | ForgeTrail |
126
+ | Domain | (none owned) | forgetrail.dev |
127
+ | CLI / npm bin | `forgekit` | `forgetrail` |
128
+ | Package | `forgekit`, `forgekit-mcp` | `forgetrail`, `forgetrail-mcp` |
129
+ | MCP server key | `forgekit` | `forgetrail` |
130
+ | Env | `FORGEKIT_ROOT`, `FORGEKIT_TARGET`, `FORGEKIT_TEMPLATE_DEFAULT_MODE` | `FORGETRAIL_ROOT`, `FORGETRAIL_TARGET`, `FORGETRAIL_TEMPLATE_DEFAULT_MODE` |
131
+ | App workspace | `.forgekit/` | `.forgetrail/` |
132
+ | Vendored tree | `_forgekit/` | `_forgetrail/` |
133
+ | Lite file | `FORGEKIT_LITE.md` | `FORGETRAIL_LITE.md` |
134
+ | Progress doc | `FORGEKIT_PROGRESS.md` | `FORGETRAIL_PROGRESS.md` |
135
+ | Skill | `content/skills/forgekit/` | `content/skills/forgetrail/` |
136
+ | Cursor rules | `forgekit-*.mdc` | `forgetrail-*.mdc` |
137
+ | MCP tools | `getForgeKitLite`, `getForgeKitSkill`, … | `getForgeTrailLite`, `getForgeTrailSkill`, … |
138
+ | pnpm scripts | `forgekit:status`, `install:forgekit` | `forgetrail:status`, `install:forgetrail` |
139
+ | GitHub slug | `Catalyst-Forge-LLC/forge-kit` | `Catalyst-Forge-LLC/forgetrail` (old URL redirects) |
140
+
141
+ **Leave unchanged:**
142
+
143
+ - Historical dates and quotations that are explicitly about the former name (say "formerly ForgeKit" once, then use ForgeTrail)
144
+ - The archive remote `Catalyst-Forge-LLC/forge-kit-original` if you still keep a private snapshot
145
+
146
+ When you mention the old name, do it once as provenance, not as a parallel brand.
147
+
148
+ ---
149
+
150
+ ## 6. Surfaces to update (checklist)
151
+
152
+ Run this list for the methodology repo and for every consumer project.
153
+
154
+ - [ ] README / landing hero: name, tagline, category line
155
+ - [ ] Try path, Lite file, kickoff and resume prompts
156
+ - [ ] MCP server name, tool names, env vars, `mcp.json`
157
+ - [ ] CLI bin, install scripts, package.json
158
+ - [ ] `.forgetrail/` (rename the directory, not only the strings)
159
+ - [ ] Cursor rules and skill filenames
160
+ - [ ] Spec titles and `specs/README.md` links
161
+ - [ ] Issue templates and GitHub links that embed the old file name
162
+ - [ ] Sibling / dependent repos that copy Lite, rules, or scripts
163
+ - [ ] In-app or site listings that describe this product
164
+
165
+ After a copy pass, grep for `ForgeKit`, `forgekit`, `FORGEKIT`, `.forgekit`, `_forgekit`, and `forge-kit` (except explicit former-name provenance and the archive remote).
166
+
167
+ ---
168
+
169
+ ## 7. Worked examples
170
+
171
+ **README open:**
172
+
173
+ > **ForgeTrail**
174
+ > Forge the path. Keep the trail.
175
+ >
176
+ > A persistent development system for building software with AI agents.
177
+ > ForgeTrail gives solo developers and small teams a 7-phase playbook so agents plan before they build, keep the trail of decisions across sessions, and leave structured knowledge that improves the next project.
178
+
179
+ **Why it works:**
180
+
181
+ > Most AI chats forget. ForgeTrail keeps **phase state**, **decisions**, and **gotchas** in the repo, and leaves a trail of lessons that the next build can follow.
182
+
183
+ **Site listing:**
184
+
185
+ > ForgeTrail
186
+ > A persistent development system for building software with AI agents.
187
+ > Most AI coding sessions forget everything the moment you close the tab. ForgeTrail keeps the phase you are in, the decisions you made, and the gotchas you hit inside the repo, so the next session picks up the trail.
188
+
189
+ **Do not write:**
190
+
191
+ > ForgeTrail is a project-tracking trail for your logs.
192
+ > ForgeTrail can help agents remember things.
193
+ > TrailForge keeps an audit trail of development.
package/docs/IDEAS.md ADDED
@@ -0,0 +1,19 @@
1
+ # [App Name] - Raw Ideas
2
+
3
+ _These are raw ideas that need to be processed into a proper TODO entry. Check it off here once accounted for in the TODO._
4
+
5
+ _For bug reports (things that are broken NOW), use [BUGS.md](BUGS.md) instead. IDEAS.md is for future possibilities; BUGS.md is for current problems._
6
+
7
+ _Instructions: Dump ideas here as they come up during development. Don't filter or organize, just capture. Periodically (during Phase 6: Strategic Review, or whenever the list gets long), process each idea: evaluate it, create a TODO entry if it's worth building, and check it off here with a note about where it landed._
8
+
9
+ > οΏ½ **Guidance:** Format:
10
+ > - [ ] Raw idea as it occurred to you
11
+ > - [x] Processed idea β†’ Added to TODO > [Section] > [Item name]
12
+ > - [x] Evaluated and rejected β†’ [brief reason]
13
+ >
14
+ > πŸ’‘ **Lesson learned:** The checkbox + mapping pattern creates accountability and prevents "idea debt" (a growing list of unprocessed ideas that creates anxiety without producing action). When processing, be willing to reject ideas. Not every idea deserves a TODO entry.
15
+ >
16
+ > πŸ’‘ **Lesson learned:** Keep ideas and bugs in separate files. IDEAS.md is low-urgency (evaluated in batches during strategic review). BUGS.md is higher-urgency (triaged as discovered). Mixing them causes bugs to get buried under ideas, or ideas to feel like emergencies. If something is broken, it goes in BUGS.md. If something could be better, it goes here.
17
+
18
+ - [ ] [idea]
19
+ - [ ] [idea]
@@ -0,0 +1,301 @@
1
+ # [APP NAME] β€” Growth Plan
2
+
3
+ _Post-launch growth strategy. This plan activates after initial traction confirms product-market fit._
4
+
5
+ > πŸ’‘ **Lesson learned:** Separate launch marketing from growth marketing.
6
+ > Launch is about getting the first 50-100 users through personal outreach and hustle.
7
+ > Growth is about scalable channels that work without you personally in the loop.
8
+ > Don't spend money on growth channels until organic traction confirms product-market fit.
9
+
10
+ ---
11
+
12
+ ## Prerequisites
13
+
14
+ This plan activates after launch has established:
15
+
16
+ - [N]+ paying users with [N]+ testimonials from target persona
17
+ - At least [N] active referral partners/affiliates (if applicable)
18
+ - A proven organic channel generating measurable signups
19
+ - Clear signal on which messaging resonates
20
+
21
+ Do not spend money on growth channels until organic traction confirms product-market fit.
22
+
23
+ ---
24
+
25
+ ## Competitive intelligence: paid social screenshots (optional)
26
+
27
+ > πŸ”§ **Guidance:** Use this when competitors in your category run heavy **paid social** (Meta, LinkedIn, TikTok, etc.) and you need grounded positioning β€” not guesswork.
28
+
29
+ **Pattern:**
30
+
31
+ 1. **Archive a dated corpus** β€” e.g. `screenshots/ads/` with mobile/desktop captures and rough date range in a README or spec header.
32
+ 2. **Pair with a project prompt** β€” instructions for an agent to read each image, extract brand, headline, CTA, **numeric claims**, and assign each ad to a **small taxonomy** (e.g. automation-at-scale vs. coaching vs. agency vs. lead-magnet quiz vs. contrarian teardown).
33
+ 3. **Write a landscape spec** β€” what narratives are saturating the feed, what your product already displaces, what is **honest whitespace** for the roadmap, and a **copy guardrail list** (patterns to avoid echoing in your own marketing β€” unsourced statistics, guaranteed outcomes, superiority tropes your ICP distrusts).
34
+ 4. **Feed outputs into** `BRAND_AND_PRODUCT.md`, FAQ, and in-app tips β€” without treating competitor hype as fact.
35
+ 5. **Optional: stakeholder-facing mirror in `docs/`** β€” If the full analysis lives under `specs/` (long tables, screenshot inventory), add a **`docs/COMPETITIVE_LANDSCAPE.md`** (or similar) that stays **synced** from the spec via a tiny script + `pnpm` script. Rewrite relative links when the output file sits in a different folder. Instruct your competitive-review prompt (and humans) to **update the spec and re-run sync** so founders and marketing read `docs/` without forking content by hand.
36
+
37
+ **Why:** Scroll-feed creative shows what buyers are being trained to expect. You differentiate more clearly when you name those narratives and consciously **don't** recycle their weakest tactics.
38
+
39
+ > πŸ’‘ **Lesson learned:** Re-run the review when you add a batch of new screenshots; append to the spec or version the summary so positioning stays current as ad land shifts.
40
+
41
+ ---
42
+
43
+ ## In-product education (contextual tips)
44
+
45
+ > πŸ”§ **Guidance:** Competitive and positioning research often yields **high-signal, low-hype** lessons (e.g. precision over volume, when to use automation vs judgment). Those belong in **`BRAND_AND_PRODUCT.md`** and landing copy β€” and can also ship **inside the product** so active users benefit.
46
+
47
+ **Pattern:**
48
+
49
+ - **Contextual tips:** Short messages when a surface is empty, first-time, or after a key action; **dismiss** with optional per-tip expiry stored server-side or in `localStorage` so power users aren’t nagged.
50
+ - **Cadence surface:** A weekly digest or in-app summary can rotate tips plus **next suggested actions** without turning the product into a course.
51
+ - **Tone:** Factual and calm; never import competitor **fear or unverifiable stats** from ad creative. Cross-check new tip copy against your **β€œfluff to avoid”** list from the competitive spec.
52
+
53
+ **Why:** Educated users get more value from the same features; in-app education is how positioning survives after signup.
54
+
55
+ ---
56
+
57
+ ## Personal Beta Outreach (Pre-Launch / Launch)
58
+
59
+ > πŸ’‘ **Lesson learned:** Personal network outreach is the highest-converting launch channel, but a single generic message wastes goodwill. The fix is **relationship-warmth buckets** (not job titles) that control tone, length, and offer. Six primary buckets cover most networks: Inner circle (A), Strong professional (B), Warm acquaintance (C), Light/casual (D), **Alumni / former org (E)** when shared employer, program, or cohort **anchors** the message, and Connector (F). Classify on **how the message would land today**, not historical closeness or the person's prestige.
60
+
61
+ **Key patterns:**
62
+
63
+ - **Shared skeleton, varied execution:** Every message follows the same 5-part spine (opener, product sentence, beta ask, optional promo, easy out), but the weight of each part shifts by bucket. A is shortest; C is often longest; **E** flexes with how warm the tie is.
64
+ - **Product one-liner variants:** Write 4 phrasings of your product in one sentence (full value stack, short/text-friendly, latent-user angle, positioning angle). Use different ones across messages so recipients who compare notes don't see the same rehearsed pitch.
65
+ - **AI-tell checklist:** Before sending, scan for sincerity adverbs ("genuinely"), filler openings ("I wanted to reach out"), repeated flattery formulas, identical value-stack lists across messages, three-part feedback requests, brand-doc copy leaking into personal messages, and structural parallelism across buckets. These are consistent tells that recipients recognize as template-generated.
66
+ - **Promo code per bucket:** One distinct code per bucket (or per bucket x month) for attribution. Most generous trial extension for A, most conservative for D. Tighten caps/expiry for buckets where codes might spread.
67
+ - **Connector bucket (F):** De-emphasize personal trial ("more about your network than about you personally"). Offer a brief walkthrough. Make forwarding frictionless.
68
+ - **Forwardable blurb:** Provide a stripped-down, no-personal-framing version suitable for anyone to forward to a stranger. Include product pitch, audience line, trial link, and code.
69
+
70
+ **Prompt:** See `prompts/personal-beta-outreach.md` for a full playbook generator.
71
+
72
+ ---
73
+
74
+ ## Growth Audiences
75
+
76
+ ### Primary: [Your Core Buyer β€” Scaling Acquisition]
77
+
78
+ Same audience as launch, now reached through scalable channels instead of personal outreach.
79
+
80
+ ### Secondary: [Channel Partners / Affiliates β€” Scaling the Pipeline]
81
+
82
+ > πŸ’‘ **Lesson learned:** For B2C products targeting professionals,
83
+ > career coaches, outplacement firms, and industry consultants can be powerful
84
+ > distribution partners. The key is giving them a dashboard so they can see ROI.
85
+ > Identify the professional who already serves your buyer and make them a partner.
86
+
87
+ - Expand from initial partners to [N]+ active affiliates
88
+ - Build a partner dashboard (partners need to see ROI)
89
+ - Target industry conferences, professional associations, certification programs
90
+
91
+ ### Tertiary: [Adjacent Audience]
92
+
93
+ - **Who:** [Describe the audience that's one step away from your core buyer]
94
+ - **Acquisition channels:** [Where they hang out]
95
+ - **Note:** [Why they matter β€” often they grow into the primary segment]
96
+
97
+ ### Opportunity: [B2B / Enterprise Angle] (if applicable)
98
+
99
+ > πŸ’‘ **Lesson learned:** B2B opportunities often emerge from B2C products.
100
+ > A company buying 50 seats at $89/seat/month is $53K ARR from a single sales conversation.
101
+ > But wait until Month 6+ when you have individual user testimonials and case studies.
102
+
103
+ - **Who:** [Business buyers who would purchase for their team/employees]
104
+ - **Pain:** [What they currently pay for and why your product is better]
105
+ - **Conversion trigger:** [Free pilot, case study, ROI calculator]
106
+ - **Timing:** Month 6+, once individual user proof exists
107
+
108
+ ---
109
+
110
+ ## Growth Channels
111
+
112
+ ### 1. Content Marketing & SEO (Month 3+)
113
+
114
+ **Goal:** Rank for queries your target buyer actually types.
115
+
116
+ **Target keywords:**
117
+
118
+ > πŸ’‘ **Lesson learned:** Research keywords at each stage of the buyer journey:
119
+ > - Problem-aware: "how to [solve problem]" (highest volume, broadest)
120
+ > - Solution-aware: "[specific solution] for [audience]" (medium volume, higher intent)
121
+ > - Comparison: "[your category] vs [alternative]" (lower volume, highest intent)
122
+ > - Emotional: "[frustration/pain point]" (surprisingly high volume, low competition)
123
+
124
+ - "[Problem-aware keyword]" (~volume/mo)
125
+ - "[Solution-aware keyword]" (~volume/mo)
126
+ - "[Comparison keyword]" (~volume/mo)
127
+ - "[Emotional/pain keyword]" (~volume/mo)
128
+
129
+ **Content cadence:** Start biweekly, scale to weekly by Month 4.
130
+
131
+ #### Content Topic Expansion (brainstorm then bucket)
132
+
133
+ _Run this before building your editorial calendar. The goal is to surface content topics you would not have generated from your pillars alone._
134
+
135
+ **Step 1: Generate a domain keyword vocabulary.** Produce 100-150 keywords, phrases, and questions related to your product's domain. Include all stages of the buyer journey:
136
+
137
+ - Problem-aware queries ("how to manage a senior job search")
138
+ - Solution-aware queries ("executive resume tailoring tool")
139
+ - Comparison queries ("[your product] vs [alternative]")
140
+ - Emotional queries ("job search burnout at senior level")
141
+ - Tactical queries ("how to follow up after executive interview")
142
+ - Aspirational queries ("career transition at 50")
143
+
144
+ > πŸ“ **Example prompt:** "Generate 150 keywords, phrases, and questions that [your target audience] might type into Google, ask on LinkedIn, or discuss in professional communities about [your domain]. Cover the full range: practical how-to, emotional/frustration, comparison/evaluation, aspirational, tactical, and strategic."
145
+
146
+ **Step 2: Bucket against content pillars.** Define 4-6 content pillars that map to your value propositions (e.g. Preparation Strategy, Tailoring & Documents, Networking Execution, Interview Mastery, Search Management, Emotional Resilience). Score each keyword/phrase against the pillars. A keyword may land in multiple pillars.
147
+
148
+ **Step 3: Review for editorial signals.**
149
+
150
+ - **Cross-pillar keywords** (3+ pillars) β€” strong candidates for pillar pages or cornerstone content that links to multiple articles
151
+ - **Pillar-starved topics** β€” pillars with few keywords need either a narrower scope or a follow-up keyword generation pass
152
+ - **Emotional keywords** β€” often overlooked in B2B content but high-value for SEO (low competition, high resonance)
153
+ - **Keywords that don't fit any pillar** β€” potential new content category or a signal that a pillar is missing
154
+
155
+ **Step 4: Feed into editorial calendar.** Map topics to buyer journey stages and assign to the publication cadence. Prioritize cross-pillar keywords (they earn backlinks from multiple internal pages) and emotional keywords (they earn social shares and low-competition rankings).
156
+
157
+ ### 2. Product Hunt & Hacker News (Month 3–4)
158
+
159
+ > πŸ’‘ **Lesson learned:** These are one-shot channels. Preparation matters more than timing.
160
+ > Product Hunt: Need 20+ users willing to upvote/comment on launch day, 3 demo GIFs, active founder in comments.
161
+ > Hacker News: Lead with the personal story + technical angle. HN respects both.
162
+
163
+ **Product Hunt:**
164
+
165
+ - Timing: Tuesday–Thursday, early AM Pacific
166
+ - [N]+ users willing to comment and upvote on launch day
167
+ - 3 demo GIFs showing the core value proposition
168
+ - Active founder presence in comments throughout launch day
169
+
170
+ **Hacker News "Show HN":**
171
+
172
+ - Angle: [Personal story + technical story combined]
173
+ - Lead with the core value proposition in one sentence
174
+
175
+ ### 3. Podcast Guest Appearances (Month 3+)
176
+
177
+ **Target podcasts:**
178
+
179
+ - [Industry-specific podcasts for your target buyer]
180
+ - [Adjacent-topic podcasts with overlapping audiences]
181
+ - [Indie hacker / bootstrapper podcasts for the founder story]
182
+
183
+ **Cadence:** 2–3 per month once the pipeline is warm.
184
+
185
+ ### 4. Community Participation (Ongoing)
186
+
187
+ > πŸ’‘ **Lesson learned:** Reddit and niche communities are credibility channels,
188
+ > not acquisition channels. Worth maintaining a presence, not worth significant time.
189
+ > Never post promotionally. Share expertise, and users will find the product through
190
+ > your profile history if the content is good enough.
191
+
192
+ **Target communities:**
193
+
194
+ - [Subreddits, forums, Slack/Discord communities]
195
+
196
+ **Tactics:**
197
+
198
+ - Answer questions with real depth β€” share your framework without plugging the tool
199
+ - No promotional posts. Let the product speak through your expertise.
200
+
201
+ ### 5. Paid Advertising (Month 4+ β€” First Experiment)
202
+
203
+ > πŸ’‘ **Lesson learned:** Only run paid after:
204
+ > 1. Organic content has proven which messages get highest engagement
205
+ > 2. Landing page conversion rate is measurable
206
+ > 3. At least 5 testimonials are on the landing page
207
+ > Start with $500 test budget and measure CPA before scaling.
208
+
209
+ **Budget:** $500 initial test, measure CPA before scaling.
210
+
211
+ **Platform:** [Best platform for your audience's targeting options]
212
+
213
+ **Creative:** Lead with the core value proposition.
214
+
215
+ **Only run paid after:**
216
+
217
+ - Organic content has proven which messages resonate
218
+ - Landing page conversion rate is measurable
219
+ - At least 5 testimonials are on the landing page
220
+
221
+ ### 6. Conferences & Events (Month 6+ β€” if applicable)
222
+
223
+ - Attend [relevant industry conferences]
224
+ - Free pilot offers for enterprise prospects
225
+ - Case study content from early adopters
226
+
227
+ ### 7. Product-Led Growth Loops (When Built)
228
+
229
+ > πŸ’‘ **Lesson learned:** Identify the natural "share moment" in your product.
230
+ > For Exec Foundry, it was a shareable stats card showing anonymized search progress.
231
+ > For other products, it might be an invite flow, a public profile, or an embed widget.
232
+ > The best virality loops make sharing a natural part of the user's workflow, not a separate ask.
233
+
234
+ - [Browser extension / integration that surfaces the product in context]
235
+ - [Shareable artifact that creates organic social proof]
236
+ - [Referral program with clear incentive structure]
237
+
238
+ ---
239
+
240
+ ## Key Differentiators vs. Competition
241
+
242
+ > πŸ’‘ **Lesson learned:** A feature comparison matrix makes your positioning
243
+ > concrete. List the 8-12 features that matter most to your buyer and show where
244
+ > competitors fall short. This informs both marketing copy and product roadmap.
245
+
246
+ | Feature | [Your App] | [Competitor 1] | [Competitor 2] | [Competitor 3] |
247
+ | --------------- | ---------- | -------------- | -------------- | -------------- |
248
+ | [Key feature 1] | | | | |
249
+ | [Key feature 2] | | | | |
250
+ | [Key feature 3] | | | | |
251
+
252
+ ---
253
+
254
+ ## Launch Sequence
255
+
256
+ ### Phase 2 β€” Growth Push (Months 3–6)
257
+
258
+ - [ ] Product Hunt launch
259
+ - [ ] Hacker News "Show HN" post
260
+ - [ ] Scale content to weekly cadence
261
+ - [ ] First podcast guest appearances
262
+ - [ ] First paid experiment ($500 test budget)
263
+ - [ ] Collect and publish case studies
264
+ - [ ] Expand partner network
265
+
266
+ ### Phase 3 β€” Scale (Months 6–12)
267
+
268
+ - [ ] Launch B2B outreach (if applicable)
269
+ - [ ] Product-led growth features live
270
+ - [ ] Expand partner network to [N]+
271
+ - [ ] Evaluate paid search for high-intent keywords
272
+ - [ ] Explore podcast sponsorships
273
+
274
+ ---
275
+
276
+ ## Metrics & Goals
277
+
278
+ | Metric | Month 3 | Month 6 | Month 12 |
279
+ | --------------- | ------- | ------- | -------- |
280
+ | Signups | | | |
281
+ | Paying users | | | |
282
+ | MRR | | | |
283
+ | Blended ARPU | | | |
284
+ | Partners active | | | |
285
+ | Organic traffic | | | |
286
+ | NPS | | | |
287
+
288
+ ---
289
+
290
+ ## Budget Allocation (Monthly)
291
+
292
+ | Channel | Months 3–6 | Months 6–12 |
293
+ | ----------------- | ---------- | ----------- |
294
+ | Content writing | | |
295
+ | Email platform | | |
296
+ | Paid ads | | |
297
+ | Conference travel | | |
298
+ | Tools / misc | | |
299
+ | **Total** | | |
300
+
301
+ No paid ads without a proven CAC benchmark from organic.