frappe-builder 1.1.0-dev.27 → 1.1.0-dev.28
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/.fb/state.db
CHANGED
|
Binary file
|
|
@@ -2,13 +2,13 @@ feature_id: po-approval
|
|
|
2
2
|
feature_name: "PO Approval"
|
|
3
3
|
mode: full
|
|
4
4
|
phase: testing
|
|
5
|
-
updated_at: 2026-03-28T16:
|
|
5
|
+
updated_at: 2026-03-28T16:59:13.498Z
|
|
6
6
|
|
|
7
7
|
components:
|
|
8
8
|
- id: final-comp
|
|
9
9
|
sort_order: 0
|
|
10
10
|
status: complete
|
|
11
|
-
completed_at: 2026-03-28T16:
|
|
11
|
+
completed_at: 2026-03-28T16:59:13.498Z
|
|
12
12
|
|
|
13
13
|
progress:
|
|
14
14
|
done: 1
|
package/README.md
CHANGED
|
@@ -18,17 +18,14 @@ npm install -g frappe-builder
|
|
|
18
18
|
|
|
19
19
|
## Initial Setup
|
|
20
20
|
|
|
21
|
-
Run once per
|
|
21
|
+
Run once per machine after installation:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
cd /path/to/your-frappe-project
|
|
25
25
|
frappe-builder init
|
|
26
26
|
```
|
|
27
27
|
|
|
28
|
-
This
|
|
29
|
-
- Prompt for your LLM API key → saves to `~/.frappe-builder/config.json`
|
|
30
|
-
- Prompt for your Frappe site URL and API credentials → saves to `.frappe-builder-config.json`
|
|
31
|
-
- Automatically add `.frappe-builder-config.json` to `.gitignore`
|
|
28
|
+
This installs and configures the agent toolchain (context-mode, mcp2cli, context7) and patches `.gitignore` with `.fb/`. No credential prompts — site credentials are provided at runtime via `set_active_project`.
|
|
32
29
|
|
|
33
30
|
After setup, start a session with:
|
|
34
31
|
|
|
@@ -36,6 +33,18 @@ After setup, start a session with:
|
|
|
36
33
|
frappe-builder
|
|
37
34
|
```
|
|
38
35
|
|
|
36
|
+
See [docs/user/getting-started.md](docs/user/getting-started.md) for the full walkthrough.
|
|
37
|
+
|
|
38
|
+
## Documentation
|
|
39
|
+
|
|
40
|
+
- **[docs/index.md](docs/index.md)** — full documentation index (user guides + contributor guides)
|
|
41
|
+
- **[docs/user/getting-started.md](docs/user/getting-started.md)** — install, init, first feature
|
|
42
|
+
- **[docs/contributor/architecture.md](docs/contributor/architecture.md)** — how frappe-builder works internally
|
|
43
|
+
|
|
44
|
+
## Contributing
|
|
45
|
+
|
|
46
|
+
See [docs/contributor/architecture.md](docs/contributor/architecture.md) for the design overview, then [docs/contributor/adding-a-gate.md](docs/contributor/adding-a-gate.md) or [docs/contributor/adding-a-tool.md](docs/contributor/adding-a-tool.md) to contribute a gate or tool.
|
|
47
|
+
|
|
39
48
|
## Development
|
|
40
49
|
|
|
41
50
|
See [docs/dev-mode.md](docs/dev-mode.md) for the hot-reload dev workflow.
|
|
@@ -46,22 +55,6 @@ npm test # run all tests
|
|
|
46
55
|
npm run typecheck # TypeScript compile check
|
|
47
56
|
```
|
|
48
57
|
|
|
49
|
-
## Configuration
|
|
50
|
-
|
|
51
|
-
frappe-builder requires two config files before starting:
|
|
52
|
-
|
|
53
|
-
| File | Location | Contents |
|
|
54
|
-
|---|---|---|
|
|
55
|
-
| Global config | `~/.frappe-builder/config.json` | LLM API key, provider |
|
|
56
|
-
| Site credentials | `{project}/.frappe-builder-config.json` | Frappe site URL, API key/secret |
|
|
57
|
-
|
|
58
|
-
The site credentials file **must** be listed in your project's `.gitignore` before the session will start:
|
|
59
|
-
|
|
60
|
-
```
|
|
61
|
-
# .gitignore
|
|
62
|
-
.frappe-builder-config.json
|
|
63
|
-
```
|
|
64
|
-
|
|
65
58
|
## Upgrading
|
|
66
59
|
|
|
67
60
|
To update to the latest stable release:
|