-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
66 lines (52 loc) · 1.8 KB
/
justfile
File metadata and controls
66 lines (52 loc) · 1.8 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
set shell := ["bash", "-cu"]
default:
@just --list
install:
@b00t --path _b00t_ stack validate promptexecution-codex-profile
@b00t --path _b00t_ stack validate cloudflare-dev
@printf 'Project Codex MCP profile is minimal: b00t-mcp + codebase-memory. Cloudflare MCPs are tracked in _b00t_/cloudflare-dev.stack.toml for on-demand use. Restart Codex to load the active profile.\n'
dev:
@bun run build
@bun run db:init:local
@bunx wrangler pages dev dist --ip 127.0.0.1 --port 8788 \
-b TEST_SECRET=local-secret \
-b AUTO_GENERATE_ON_READ=1 \
-b ALLOW_LOCAL_BOOTSTRAP=1
dev-ai:
@bun run build
@bun run db:init:local
@bunx wrangler pages dev dist --ip 127.0.0.1 --port 8788 --ai AI \
-b TEST_SECRET=local-secret \
-b AUTO_GENERATE_ON_READ=1
dev-cron:
@bun run db:init:local
@bun run dev:cron
dev-ui:
@bun run dev
build:
@bun run build
test-workflow-dry:
@curl -X POST \
-H "Authorization: Bearer local-secret" \
-H "Content-Type: application/json" \
-d '{"dry_run":"1"}' \
http://127.0.0.1:8788/api/test-generate
test-workflow:
@curl -X POST \
-H "Authorization: Bearer local-secret" \
-H "Content-Type: application/json" \
-d '{"force":"1"}' \
http://127.0.0.1:8788/api/test-generate
# Image Generation Pipeline
image-generate day="2026-05-10":
@curl -X POST \
-H "Authorization: Bearer local-secret" \
http://127.0.0.1:8788/api/image-generate?day={{day}}
image-generate-latest:
@just image-generate "$(date +%Y-%m-%d)"
test-cron:
@curl http://127.0.0.1:8790/cdn-cgi/handler/scheduled
architect-init TASK:
@python3 skills/principal-cognitive-systems-architect/scripts/init_subagent_run.py --task "{{TASK}}"
architect-summary RUN:
@python3 skills/principal-cognitive-systems-architect/scripts/summarize_subagent_run.py "{{RUN}}" --write