-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathconfig.default.yaml
More file actions
79 lines (69 loc) · 2.18 KB
/
Copy pathconfig.default.yaml
File metadata and controls
79 lines (69 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# Factory Plugin Configuration
# Default settings for the Factory plugin.
# Pipeline Registry
# Maps pipeline names to their locations and canonical entrypoints.
# Each pipeline MUST have a run.mjs that follows the gold standard pattern.
pipelines:
website:
root: ../../website-pipeline
entrypoint: scripts/run.mjs
output_dir: website-builds
description: Website pipeline (Next.js) - portfolios, blogs, landing pages
miniapp:
root: ../../miniapp-pipeline
entrypoint: scripts/run.mjs
output_dir: builds/miniapps
description: Base Mini App pipeline (MiniKit + Next.js)
dapp:
root: ../../dapp-factory
entrypoint: scripts/run.mjs
output_dir: dapp-builds
description: Onchain dApp pipeline (Next.js + Web3)
agent:
root: ../../agent-factory
entrypoint: scripts/run.mjs
output_dir: outputs
description: AI agent scaffold pipeline (Node.js)
app:
root: ../../app-factory
entrypoint: scripts/run.mjs
output_dir: builds
description: Mobile app pipeline (Expo + React Native)
plugin:
root: ../../plugin-factory
entrypoint: scripts/run.mjs
output_dir: builds
description: Claude plugin pipeline (MCP servers, skills)
claw:
root: ../../claw-pipeline
entrypoint: scripts/run.mjs
output_dir: builds/claws
description: Custom Clawbot AI assistant pipeline with dual-chain token launch
# Execution Settings
execution:
# Approval is mandatory for all executions. Cannot be disabled.
require_approval: true
# Directory where all generated artifacts are written.
# Factory will not write files outside this directory.
output_base: ./builds
# Time (seconds) before approval prompt expires and cancels.
approval_timeout: 300
# Code Review Settings
ralph:
# Default number of review loops
default_loops: 3
# Maximum allowed loops
max_loops: 5
# Output filename for verdicts
verdict_file: ralph_verdict.md
# Audit Settings
audit:
# Show factory commands in audit log
enabled: true
# Default number of entries to display
default_entries: 20
# Network Settings
offline:
# Factory is network-enabled by default.
# Network calls still require explicit user authorization.
enabled: false