the-frame-ai 0.4.0 → 0.7.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "the-frame-ai",
3
- "version": "0.4.0",
3
+ "version": "0.7.2",
4
4
  "description": "FRAME — Framework for AI-Assisted Solo Development",
5
5
  "type": "module",
6
6
  "bin": {
@@ -12,12 +12,21 @@
12
12
  "templates/"
13
13
  ],
14
14
  "keywords": [
15
+ "claude-code",
15
16
  "claude",
16
- "ai",
17
- "development",
17
+ "ai-coding",
18
+ "vibe-coding",
19
+ "solo-developer",
20
+ "ai-assisted-development",
21
+ "developer-workflow",
18
22
  "framework",
19
- "solo",
20
- "tdd"
23
+ "slash-commands",
24
+ "ai-agents",
25
+ "tdd",
26
+ "productivity",
27
+ "indie-hacker",
28
+ "solopreneur",
29
+ "llm-workflow"
21
30
  ],
22
31
  "license": "MIT",
23
32
  "repository": {
@@ -14,6 +14,9 @@ Research the following topic: **$ARGUMENTS**
14
14
  - `$ARGUMENTS` is not empty — if empty, STOP and ask: "What topic should I research? Usage: /frame:research <topic>"
15
15
  - `.planning/MAP.md` exists — if missing, STOP: "Run /frame:init first — MAP.md not found."
16
16
 
17
+ If validation passes, **immediately say to the user**:
18
+ > "Starting research on **{topic}**. This may take a few minutes — I'll explore the codebase, search the web, and write research.md. Hang tight..."
19
+
17
20
  Then immediately write to `.planning/STATE.md`:
18
21
  ```markdown
19
22
  ## Current Position
@@ -126,6 +129,9 @@ Create `docs/specs/{topic}/research.md`:
126
129
 
127
130
  ## Result
128
131
 
132
+ After completing all steps, **say to the user**:
133
+ > "Research complete. File saved to `docs/specs/{topic}/research.md`. Next step: `/frame:plan {topic}`"
134
+
129
135
  - `docs/specs/{topic}/research.md` — research findings with Memory Impact
130
136
  - `.planning/STATE.md` updated (COMPLETE)
131
137
  - Next phase: `/frame:plan` (takes research.md as input, creates spec.md and plan.md)
@@ -1,64 +0,0 @@
1
- # CLAUDE.md — {{PROJECT_NAME}}
2
-
3
- ## Tech Stack
4
-
5
- (to be filled after /frame:init scan)
6
-
7
- ## Architecture
8
-
9
- (to be filled after /frame:init scan)
10
-
11
- ## Key Patterns
12
-
13
- (to be filled after /frame:init scan)
14
-
15
- ## Code Conventions
16
-
17
- - **File naming**: (define your convention)
18
- - **Imports**: (define your import order)
19
- - **TypeScript**: Strict mode
20
- - **Git**: `{type}({scope}): {description}` — types: feat, fix, refactor, test, docs, chore
21
- - **Tests**: co-located or `__tests__/` directory
22
-
23
- ## Rules (MUST follow)
24
-
25
- 1. Always run quality checks before commit
26
- 2. Use error reporting (not console.log)
27
- 3. No `any` type — use `unknown` + type guard
28
- 4. New features require tests
29
-
30
- ## FRAME Framework
31
-
32
- This project uses FRAME (Framework for AI-Assisted Solo Development).
33
-
34
- **Commands**:
35
- - `/frame:init` — initialize project
36
- - `/frame:status` — current state
37
- - `/frame:fast <task>` — quick task
38
- - `/frame:research <topic>` — domain research
39
- - `/frame:plan <feature>` — plan feature
40
- - `/frame:build` — implement with TDD
41
- - `/frame:review` — code review
42
- - `/frame:security` — security audit (secrets, OWASP, infra, AI)
43
- - `/frame:ship` — git + PR
44
- - `/frame:debug <issue>` — systematic debugging
45
- - `/frame:retrospective` — retrospective + memory update
46
- - `/frame:cleanup-memory` — trim and archive memory files
47
-
48
- **Key files**:
49
- - `.planning/STATE.md` — current position
50
- - `.planning/MAP.md` — project map
51
- - `.planning/ROADMAP.md` — roadmap
52
- - `.frame/config.json` — FRAME configuration
53
- - `.planning/memory/` — project memory
54
-
55
- **Quality Gates** (D→P→D):
56
- - `{quality.commands.typecheck}` — Type check
57
- - `{quality.commands.test}` — Test check
58
- - `{quality.commands.lint}` — Lint check
59
- - `{quality.commands.build}` — Build check (before Ship)
60
-
61
- ## Anti-Patterns (NEVER do)
62
-
63
- - ❌ Skip verification steps (D→P→D is mandatory)
64
- - ❌ `any` type (use `unknown` + type guard)