-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathward.yaml
More file actions
72 lines (69 loc) · 2.67 KB
/
Copy pathward.yaml
File metadata and controls
72 lines (69 loc) · 2.67 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
# Per-repo command allowlist for galaxy-gen. Coily is the canonical entry
# point for dev verbs here; each command below delegates to a Make target
# that wraps cargo / wasm-pack / npx / playwright.
#
# Names follow coily's [a-z0-9-] rule. Argv validation rejects shell
# metacharacters at invocation time, so flags forward verbatim through
# coily's user-extras mechanism.
commands:
install:
run: make install
description: Install Rust, WASM, and JS deps (cargo build + wasm-pack + npm install + playwright install).
test-rust:
run: make test-rust
description: cargo check + cargo test.
build-rust:
run: make build-rust
description: Build Rust + WASM (debug).
build-wasm:
run: make build-wasm
description: Compile Rust to WASM via wasm-pack (pkg/).
build-js-prod:
run: make build-js-prod
description: Production webpack build.
dev:
run: make dev
description: Run the rust/wasm watcher and webpack-dev-server concurrently with auto-reload.
dev-js:
run: make dev-js
description: Run only the JS dev server with HMR.
dev-rust:
run: make dev-rust
description: Run only the Rust/WASM watcher.
test-e2e:
run: make test-e2e
description: Run Playwright end-to-end tests.
test-e2e-ui:
run: make test-e2e-ui
description: Run Playwright tests in UI mode.
build-docker:
run: make build-docker
description: Build the docker image locally with BuildKit cache.
publish:
run: make publish
description: Tag and push the docker image to the in-cluster registry.
deploy:
run: make deploy
description: Build, push, and apply to the cluster
# Provider skills this leaf pulls into its git-excluded .agents/skills/ for
# confined harnesses (OpenClaw on Qwen). Resolved by scripts/pull-capabilities.py
# and enforced by scripts/validate-harness-skills.py. Spec: the capability_pull
# block of agentic-os-kai .agents/skills/categories.yaml. Keep this list minimal:
# every entry widens what a 25k-budget Qwen session can see. galaxy-gen is
# Rust -> WASM core + React/D3/TS browser surface, so exactly those two languages.
# Infra (k8s / terraform) is deliberately omitted - Qwen escalates infra, it does
# not run it (see kai-qwen-scope).
capabilities:
- agentic-os/coding-rust
- agentic-os/coding-javascript-react
# Catalog metadata for the cross-repo knowledge graph.
# Schema: coilysiren/agentic-os-kai#420 (tracker).
catalog:
kind: Component
type: website
system: shared
owner: kai
lifecycle: production
description: "Procedural galaxy simulation. Rust compiled to WASM, rendered in the browser. Live at https://galaxy-gen.coilysiren.me"
dependsOn:
- forgejo.coilysiren.me/coilysiren/infrastructure