chore(repo): clean root; move docs; keep areas for prompts #5

Open
reachableceo wants to merge 7 commits from bootstrap-org into integration
35 changed files with 424 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
module.exports = { export default {
extends: ['@commitlint/config-conventional'], extends: ['@commitlint/config-conventional'],
}; };

1
CCO/.gitkeep Normal file
View File

@@ -0,0 +1 @@

5
CODEOWNERS Normal file
View File

@@ -0,0 +1,5 @@
# Prompt packs
COMMON/prompt/** @reachableceo
CTO/** @reachableceo
COO/** @reachableceo

View File

@@ -0,0 +1,9 @@
name: COMMON base v1
modules:
- COMMON/prompt/modules/system-persona.md
- COMMON/prompt/modules/style.md
- COMMON/prompt/modules/safety.md
- COMMON/prompt/modules/tools-codex-cli.md
- COMMON/prompt/modules/planning.md
- COMMON/prompt/modules/execution.md
- COMMON/prompt/modules/repo-conventions.md

View File

@@ -0,0 +1,4 @@
name: COO pack v1
include:
- COMMON/prompt/manifests/base.yaml
modules: []

View File

@@ -0,0 +1,4 @@
name: CTO pack v1
include:
- COMMON/prompt/manifests/base.yaml
modules: []

View File

@@ -0,0 +1,9 @@
Execution Principles
- Solve the users request endtoend before yielding.
- Prefer rootcause fixes over surface patches.
- Keep changes minimal and aligned with existing style.
- Avoid fixing unrelated issues; mention them briefly if relevant.
- After changes, run focused validation; expand scope only as needed.
- Summarize results clearly with next actions or options.

View File

@@ -0,0 +1,12 @@
Planning and Checkpoints
- When work spans multiple steps or has ambiguity, write a brief plan.
- Steps are 1 sentence, actionoriented, and verifiable.
- Keep exactly one `in_progress` step; mark completed before moving on.
- Update the plan when reality changes; add rationale for plan changes.
- Dont pad trivial tasks with plans.
Progress updates
- For longer tasks, share concise updates (≤10 words) before heavy work.
- State whats done, whats next, and any blockers.

View File

@@ -0,0 +1,9 @@
Repo Conventions (This Base)
- Use `apply_patch` for edits; dont commit or branch unless asked.
- No license headers unless explicitly requested.
- No oneletter variable names; no inline code comments unless asked.
- Keep filenames and structure stable; avoid renames unless necessary.
- Dont reread files after an edit; the tool confirms success.
- Never output broken inline citations; prefer clickable filepaths.

View File

@@ -0,0 +1,9 @@
Safety and Guardrails
- Dont execute destructive actions without explicit instruction.
- When unsure, ask targeted questions before acting.
- Respect confidentiality; dont expose secrets or guess credentials.
- Validate assumptions with quick, cheap checks before heavy work.
- Prefer reversible changes; keep diffs minimal and focused.
- Surface limitations (permissions, sandbox, network) and offer alternatives.

View File

@@ -0,0 +1,16 @@
Style and Formatting Rules
- Use short, imperative sentences. Avoid hedging.
- Prefer bullets with one point per line.
- Wrap commands, paths, env vars, and code identifiers in backticks.
- Use section headers only when they improve scanability.
- Keep lists to 46 bullets; merge related points.
- Default to present tense; active voice.
- For multistep work, summarize outcomes and next actions.
- Never output ANSI codes. Avoid decorative formatting.
Outputs must be selfcontained
- Dont reference “above/below”.
- Include minimal context necessary to act.
- Call out assumptions explicitly.

View File

@@ -0,0 +1,18 @@
System Persona
You are an engineering partner: concise, direct, and pragmatic with a healthy skepticism. You optimize for:
- Actionable guidance over exposition. State assumptions and next steps.
- Minimal context usage. Prefer modular prompts and small, composable chunks.
- Safety and correctness. Dont guess; ask when uncertain.
Tone and behavior
- Friendly but no fluff. Use active voice and present tense.
- Default to brief bullets. Keep lists short and ordered by importance.
- Provide rationale only when it informs action.
- Call out risks, edge cases, and tradeoffs explicitly.
Boundaries
- Do not invent facts about the codebase or environment.
- If a step could mutate state, confirm intent or simulate when unclear.
- Escalate ambiguity with targeted questions; avoid openended queries.

View File

@@ -0,0 +1,19 @@
Environment and Tools (Codex CLI)
- Shell usage
- Prefer `rg` for search and `sed -n` with 250line chunks.
- Print concise preambles before tool calls; group related actions.
- Use `apply_patch` for file edits; avoid unrelated changes.
- Planning
- Use `update_plan` for multistep tasks; keep steps short (≤7 words).
- Exactly one step `in_progress` until done; mark completion as you go.
- Approvals and sandbox
- Assume workspacewrite, network enabled, approvals onrequest unless told otherwise.
- Request escalation only when necessary (network installs, destructive ops).
- Validation
- Run targeted checks for changed areas; escalate to broader tests as confidence grows.
- Dont add formatters or miscellaneous tooling unless requested.

View File

@@ -61,9 +61,8 @@
**Rollout Plan** **Rollout Plan**
1) Implement local tooling and hooks on `bootstrap-cicd`. 1) Implement local tooling and hooks on `bootstrap-cicd`.
2) Document quickstart in `docs/engineering/ci-cd.md`. 2) Document quickstart in [docs/engineering/ci-cd.md](docs/engineering/ci-cd.md).
3) Later: enable Gitea workflows when runners are ready; add protected checks. 3) Later: enable Gitea workflows when runners are ready; add protected checks.
4) Optionally expand with tests/security scanners and language stacks per repo. 4) Optionally expand with tests/security scanners and language stacks per repo.
If this matches your intent, I will scaffold the above on `bootstrap-cicd` and then capture the finalized process in `instructions/bootstrap-cicd.md`. If this matches your intent, I will scaffold the above on `bootstrap-cicd` and then capture the finalized process in [COMMON/bootstrap-cicd.md](COMMON/bootstrap-cicd.md).

1
COO/.gitkeep Normal file
View File

@@ -0,0 +1 @@

12
COO/AGENTS.md Normal file
View File

@@ -0,0 +1,12 @@
COO Agent Pack
Use the generated pack for agents: [dist/prompts/coo.md](dist/prompts/coo.md).
Includes (via COMMON base):
- System persona, style, safety
- Codex CLI environment and tools
- Planning and execution principles
- Repo conventions
Notes
- COO currently uses only COMMON; areaspecific content will be added later.

1
CTO/.gitkeep Normal file
View File

@@ -0,0 +1 @@

12
CTO/AGENTS.md Normal file
View File

@@ -0,0 +1,12 @@
CTO Agent Pack
Use the generated pack for agents: [dist/prompts/cto.md](dist/prompts/cto.md).
Includes (via COMMON base):
- System persona, style, safety
- Codex CLI environment and tools
- Planning and execution principles
- Repo conventions
Notes
- Keep CTOspecific additions minimal; prefer COMMON as source of truth.

View File

@@ -1,3 +1,23 @@
# LLMScaffolding # LLMScaffolding
TSYS Group LLM Scaffolding. We heavily utilize AI to produce software and other deliverables. Base scaffolding for AIassisted work. Clean root; docs in `docs/`; areas for prompts.
Layout
- docs/ — humanreadable docs (getting started, workflow, CI, style)
- COMMON/ CTO/ COO/ CCO/ — questions, proposals, and prompt modules only
- scripts/ — Makefile and helper scripts
- docker/ — CI compose and Dockerfile
- CTO/dist/prompts/ and COO/dist/prompts/ — generated prompt packs
- COMMON/proposals/, COMMON/questions/ — planning artifacts
Quickstart
- Install hooks: `make -f scripts/Makefile hooks-setup`
- Run checks: `make -f scripts/Makefile check`
- Build prompt packs: `make -f scripts/Makefile prompts`
Docs
- Git workflow: [docs/git-workflow.md](docs/git-workflow.md)
- Local CI parity: [docs/bootstrap-cicd.md](docs/bootstrap-cicd.md)
- Documentation style: [docs/docs-style.md](docs/docs-style.md)
- Operational notes: [docs/RESUME.md](docs/RESUME.md), [docs/TODO.md](docs/TODO.md)
- History: [docs/history/BOOTSTRAP.md](docs/history/BOOTSTRAP.md)

View File

@@ -38,3 +38,4 @@ RUN npm --location=global install \
WORKDIR /workspace WORKDIR /workspace
ENTRYPOINT ["bash","-lc"] ENTRYPOINT ["bash","-lc"]
CMD ["bash"] CMD ["bash"]

View File

@@ -2,7 +2,7 @@ services:
ci: ci:
build: build:
context: .. context: ..
dockerfile: ci.Dockerfile dockerfile: docker/ci.Dockerfile
working_dir: /workspace working_dir: /workspace
volumes: volumes:
- "../:/workspace:Z" - "../:/workspace:Z"
@@ -10,4 +10,3 @@ services:
- IN_CI_CONTAINER=1 - IN_CI_CONTAINER=1
entrypoint: ["bash","-lc"] entrypoint: ["bash","-lc"]
command: ["bash"] command: ["bash"]

42
docs/DISCUSS.md Normal file
View File

@@ -0,0 +1,42 @@
DISCUSSION Areas, Structure, Ownership
Context
- This repo hosts generic, foundational practices reusable across projects.
- Areas: COMMON (shared practices), CTO (shared technical standards), COO (business ops), CCO (deferred; placeholder only).
Decisions Confirmed
- Area directories are uppercase: COMMON, CTO, COO, CCO.
- Shared practices and base guidance live under COMMON.
- CCO is deferred for now; placeholder directory only.
Open Questions to Confirm
- Naming conventions within areas
- File naming: keep kebab-case (e.g., [COMMON/git-workflow.md](COMMON/git-workflow.md)) or use TitleCase?
- Per-area `README.md` vs. `INDEX.md` expectations.
- Scope boundaries
- COMMON: include Git workflow, CI/bootstrap parity, templates (PR/issue), documentation style guide, ADR pattern, security/privacy baselines?
- CTO: preferred tech stacks, language/runtime versions, container base image policy, local dev environment patterns (devcontainers/Make), testing strategy, quality bars?
- COO: operating rhythm (cadences, ceremonies), roles/RACI, OKR/KPI templates, onboarding, procurement/vendor-lite guidance, documentation templates?
- CCO: when in scope, include customer journey templates, support/SLA baselines, enablement playbooks, feedback loops? Any overlap rules with COO/CTO?
- Consumers and audience
- Internal only or some content public-facing? Any confidentiality/compliance constraints (esp. COO/CCO)?
- Reuse strategy
- Copy into new repos vs. reference centrally? Provide “adoption guides” per area? Offer minimal vs. advanced profiles?
- Ownership & change control
- CODEOWNERS per area? Who approves updates across COMMON/CTO/COO?
- Labels and PR templates per area; contribution guidelines?
- Document shape and standards
- Prescriptive checklists vs. narrative guidance; include “10-minute quickstart” per area?
- Standardize frontmatter, headers, and ADR structure?
- Crosscutting policies
- Where to maintain shared policies (security, privacy, accessibility) — under COMMON?
- CI for docs
- Keep current markdown/yaml linters repowide; add link checker/spellcheck?
- Migration of existing docs
- Which existing files beyond Git workflow and CI bootstrap should move under COMMON now vs. later (e.g., proposals, questions, [RESUME.md](RESUME.md), [TODO.md](TODO.md))?
Proposed Next Steps (pending answers)
- Seed perarea README with scope, audiences, adoption guidance.
- Create COMMON/templates/ for reusable checklists, PR/issue templates, ADRs.
- Map/move additional shared docs into COMMON and update references.
- Define CODEOWNERS and contribution norms per area.

15
docs/README.md Normal file
View File

@@ -0,0 +1,15 @@
Repository Docs
Purpose
- Centralize humanreadable documentation. Area folders (COMMON/CTO/COO/CCO) are reserved for questions, proposals, and prompt modules.
Key Documents
- Git workflow: [git-workflow.md](git-workflow.md)
- Local CI parity: [bootstrap-cicd.md](bootstrap-cicd.md)
- Documentation style: [docs-style.md](docs-style.md)
- Operational notes: [RESUME.md](RESUME.md), [TODO.md](TODO.md)
- History: [history/BOOTSTRAP.md](history/BOOTSTRAP.md)
Usage
- Make targets moved to `scripts/Makefile`. Use `make -f scripts/Makefile <target>`.

View File

@@ -16,12 +16,12 @@ Branches on remote
- Start Docker Desktop/daemon as needed - Start Docker Desktop/daemon as needed
3) Install hooks locally 3) Install hooks locally
- make hooks-setup - make -f scripts/Makefile hooks-setup
4) Run local checks (Docker-only) 4) Run local checks (Docker-only)
- git switch bootstrap && make quick && make build - git switch bootstrap && make -f scripts/Makefile quick && make -f scripts/Makefile build
- git switch bootstrap-cicd && make quick && make build - git switch bootstrap-cicd && make -f scripts/Makefile quick && make -f scripts/Makefile build
- Optional full pass: make check - Optional full pass: make -f scripts/Makefile check
5) Open PRs (when branches are green locally) 5) Open PRs (when branches are green locally)
- bootstrap → integration: https://git.knownelement.com/KNEL/LLMScaffolding/pulls/new/bootstrap - bootstrap → integration: https://git.knownelement.com/KNEL/LLMScaffolding/pulls/new/bootstrap
@@ -41,11 +41,11 @@ Branches on remote
- git branch -f release main && git push -f origin release - git branch -f release main && git push -f origin release
8) Docs & parity 8) Docs & parity
- Git workflow: instructions/git-workflow.md - Git workflow: [docs/git-workflow.md](git-workflow.md)
- Local CI parity: instructions/bootstrap-cicd.md - Local CI parity: [docs/bootstrap-cicd.md](bootstrap-cicd.md)
9) Defer CI enablement for two weeks 9) Defer CI enablement for two weeks
- Track in TODO.md: Revisit enabling runners and protected checks on 2025-09-24 - Track in [docs/TODO.md](TODO.md): Revisit enabling runners and protected checks on 2025-09-24
10) Next tasks 10) Next tasks
- Answer any outstanding questions in questions/* - Answer any outstanding questions in questions/*

View File

@@ -3,7 +3,7 @@ TODO
- Git workflow - Git workflow
- [x] Questions gathered and answered - [x] Questions gathered and answered
- [x] Proposal iteration 2 drafted - [x] Proposal iteration 2 drafted
- [x] Finalize approval and capture in instructions/git-workflow.md - [x] Finalize approval and capture in [docs/git-workflow.md](git-workflow.md)
- Branches - Branches
- [x] Create integration, release, bootstrap from main - [x] Create integration, release, bootstrap from main
@@ -12,9 +12,9 @@ TODO
- CI/CD bootstrap - CI/CD bootstrap
- [x] Create branch bootstrap-cicd from main - [x] Create branch bootstrap-cicd from main
- [x] Add questions at questions/bootstrap-cicd.md - [x] Add questions at [COMMON/questions/bootstrap-cicd.md](../COMMON/questions/bootstrap-cicd.md)
- [x] Draft proposal based on answers - [x] Draft proposal based on answers
- [x] Implement parity tooling: scripts/ci, ci.Dockerfile, docker/ci.compose.yml - [x] Implement parity tooling: scripts/ci, docker/ci.Dockerfile, docker/ci.compose.yml
- [x] Add .gitea/workflows: ci.yml, release.yml, nightly.yml - [x] Add .gitea/workflows: ci.yml, release.yml, nightly.yml
- [x] Add commitlint.config.cjs, Makefile - [x] Add commitlint.config.cjs, Makefile
- [ ] Optional: add .pre-commit-config.yaml (defer for now) - [ ] Optional: add .pre-commit-config.yaml (defer for now)
@@ -31,4 +31,5 @@ TODO
- [ ] Optional: fast-forward release branch to latest tag - [ ] Optional: fast-forward release branch to latest tag
- Docs - Docs
- [ ] Write docs/engineering/git-workflow.md with diagrams and examples - [ ] Write [docs/engineering/git-workflow.md](engineering/git-workflow.md) with diagrams and examples

21
docs/bootstrap-cicd.md Normal file
View File

@@ -0,0 +1,21 @@
Local CI Parity & Bootstrap
Purpose
- Provide a portable CI toolchain via a Dockerized image and compose file so that format/lint/build checks run identically locally and in CI.
Components
- `docker/ci.Dockerfile` builds the CI image with shellcheck, shfmt, hadolint, actionlint, yamllint, Node tools.
- `docker/ci.compose.yml` runs the CI container mounting the repo at `/workspace`.
- `scripts/ci` wrapper for phases: `format`, `lint`, `build`, `test`, `security`, `all`.
- Git hooks `.githooks/*` installed via `scripts/setup-hooks`.
Usage
- Install hooks: `make -f scripts/Makefile hooks-setup`
- Quick checks: `make -f scripts/Makefile quick` (format + lint)
- Full pass: `make -f scripts/Makefile check` (all phases)
Notes
- Pre-commit hook runs format/lint and commit message checks.
- Pre-push hook runs build/test/security placeholders.
- CI workflow runs on integration and protected branches when runners are enabled.

8
docs/docs-style.md Normal file
View File

@@ -0,0 +1,8 @@
Documentation Style Guide
- When referencing another Markdown file in this repo, use a relative link so it is clickable in Gitea. Example: [docs/git-workflow.md](git-workflow.md).
- Keep titles concise and descriptive; use sentence case unless a proper noun.
- Prefer short bullets (one point per line). Merge related points.
- Use backticks for commands, file paths, env vars, and code identifiers.
- Make documents actionable: lead with outcomes, then steps, then background.

View File

@@ -1,14 +1,14 @@
Git Workflow Finalized Instructions Git Workflow Finalized Instructions
Scope Scope
- Applies to this repo. Users typically consume tagged releases; contributors work via branches/PRs. CI/CD config is Giteanative; no GitHub/GitLab. - Applies across projects. Contributors work via branches/PRs. CI/CD is Giteanative.
Branches Branches
- main: production; default branch. Protected. - main: production; default branch. Protected.
- integration: development (unprotected; merges auto on green). - integration: development (unprotected; merges auto on green).
- Working branches: `feature/<topic>`, `fix/<topic>`, `chore/<topic>` from integration. - Working branches: `feature/<topic>`, `fix/<topic>`, `chore/<topic>` from integration.
- Hotfix: `hotfix/<date>` from main; PR back to main, then forward-merge into integration. - Hotfix: `hotfix/<date>` from main; PR back to main, then forwardmerge into integration.
- Release branch: ephemeral or lightweight `release/*`. Protect when present; optionally fastforward to latest tag via CI. - Release branch: ephemeral or lightweight `release/*`. Protect when present; may fastforward to latest tag via CI.
Merges & Approvals Merges & Approvals
- Feature → integration: squash merge; automerge on green (no human approval). Selfmerge allowed. - Feature → integration: squash merge; automerge on green (no human approval). Selfmerge allowed.
@@ -19,18 +19,20 @@ Commit Style
- Conventional Commits for PR titles and commit messages. - Conventional Commits for PR titles and commit messages.
Versioning & Tags Versioning & Tags
- Calendar tags: vYYYY.MM.DD-HHMM (UTC). Annotated tags only on main after release. - Calendar tags: `vYYYY.MM.DD-HHMM` (UTC) for traceability.
- Release tags: semantic or milestone tags (e.g., `v0.0.1-Bootstrap`).
Release Flow Release Flow
1) Feature branches PR into integration; checks pass → automerge. 1) Feature branches PR into integration; checks pass → automerge.
2) PR integration → main; 1 approval required; on merge, deploy and tag release. 2) PR integration → main; 1 approval required; on merge, deploy and tag release.
3) Optional: CI fastforwards a release branch pointer to the new tag. 3) Optional: CI fastforwards a `release` branch pointer to the new tag.
Protected Checks (to enable when runners are ready) Protected Checks (enable when runners are ready)
- On protected branches (`main`, `release/*`): ci / lint, ci / build, ci / commitlint. Add ci / test and ci / security if/when introduced. - On protected branches (`main`, `release/*`): ci / lint, ci / build, ci / commitlint. Add ci / test and ci / security when introduced.
CODEOWNERS CODEOWNERS
- Keep minimal; require your review for integration → main. - Keep minimal; require review for integration → main.
Notes Notes
- No secrets required for this repo. Future repos should integrate Vault for secrets. - No secrets in this base repo. Future repos should integrate Vault for secrets.

16
docs/history/BOOTSTRAP.md Normal file
View File

@@ -0,0 +1,16 @@
The purpose of this repository is to create a re-usable set of prompts for use in AI chat intefaces and with agentic AI.
This file is being created at the very start of the repository in an attempt to provide full traceability. It will be passed to codex as a prompt.
Codex instructions:
- Remain in planning mode only. Ask questions and gather data.
- Create a propsoals directory and write out proposals to it for me to review and approve.
- Do not undertake any work unless I ask you for a proposal and I approve the proposal.
- Ask questions with numbers and allow them to be answered like 1:y 2:n or (for multiple choice) 1:a 2:b and so forth.
- Keep the chat message output short. Use proposal files that I can view in my editor (vsCode).
- The directory you are in is one level up from the git repository. This is so that git worktree can be used, to help mitigate issues with git branching. The repository is in a child directory called LLMScaffolding.
Your first concreate action:
- Please help me establish a git workflow (via the proposal/approval process I have outlined). This workflow should follow best practices, it should presume the use of CI/CD via Gitea (Gitlab/Github are banned, never produce anything for those platforms).

View File

@@ -1,36 +0,0 @@
Bootstrap CI/CD Finalized Instructions (Phase 1)
Goal
- Provide Dockeronly local checks and Git hooks with parity to future CI. CI workflows are prepared but may remain disabled until runners are ready.
Requirements
- Docker + Docker Compose v2 on the development machine. No host packages beyond Docker are required.
Local Checks
- Entry point: `scripts/ci <phase>` where phase ∈ {format, lint, build, test, security, all}.
- Always runs inside the ci container using `docker/ci.compose.yml`.
- Tools pinned in `ci.Dockerfile`: shfmt, shellcheck, hadolint, yamllint, actionlint, prettier, markdownlint, commitlint.
Hooks
- Install hooks: `make hooks-setup` (copies .githooks/* into .git/hooks).
- pre-commit: runs format + lint.
- commit-msg: runs commitlint (Conventional Commits).
- pre-push: runs build; test and security are present but currently noops.
Convenience Targets
- `make quick` → format + lint.
- `make check` → all phases.
- `make build` → compose validation.
CI (Prepared, optional enablement later)
- .gitea/workflows/ci.yml: builds ci image; runs lint + build.
- .gitea/workflows/release.yml: on pushes to main, creates annotated tag vYYYY.MM.DD-HHMM (UTC).
- .gitea/workflows/nightly.yml: nightly lint run.
- All jobs run inside the ci image; no runner host package installs.
Protected Checks (when CI is enabled)
- Protect: ci / lint, ci / build, ci / commitlint. Add ci / test and ci / security when they exist.
Future Extensions
- Add tests/security phases per repo stack; enable CI branch protections once runners are ready; optionally add pre-commit framework as an alternative to native hooks.

View File

@@ -1,6 +1,6 @@
SHELL := /usr/bin/env bash SHELL := /usr/bin/env bash
.PHONY: all check quick format lint build test security ci-image hooks-setup .PHONY: all check quick format lint build test security ci-image hooks-setup prompts prompts-check
all: check all: check
@@ -26,8 +26,14 @@ security:
./scripts/ci security ./scripts/ci security
ci-image: ci-image:
docker build -f ci.Dockerfile -t local/ci:latest . docker build -f docker/ci.Dockerfile -t local/ci:latest .
hooks-setup: hooks-setup:
./scripts/setup-hooks ./scripts/setup-hooks
prompts:
./scripts/prompts all
prompts-check:
./scripts/prompts lint

View File

@@ -6,5 +6,4 @@ MSG_FILE="${1:-.git/COMMIT_EDITMSG}"
# Run commitlint inside the CI container against the commit message file # Run commitlint inside the CI container against the commit message file
docker compose -f docker/ci.compose.yml run --rm \ docker compose -f docker/ci.compose.yml run --rm \
-e IN_CI_CONTAINER=1 \ -e IN_CI_CONTAINER=1 \
ci bash -lc "commitlint --edit ${MSG_FILE}" ci bash -lc "commitlint --config .config/commitlint.config.cjs --edit ${MSG_FILE}"

64
scripts/prompt_build.py Normal file
View File

@@ -0,0 +1,64 @@
#!/usr/bin/env python3
import os, sys, yaml
def load_manifest(path):
with open(path, 'r', encoding='utf-8') as f:
return yaml.safe_load(f)
def resolve(path, seen):
m = load_manifest(path)
includes = m.get('include', []) or []
modules = m.get('modules', []) or []
for inc in includes:
resolve(inc, seen)
for mod in modules:
if mod not in seen:
seen.append(mod)
return seen
def words(s: str) -> int:
return len(s.split())
def main():
if len(sys.argv) != 3:
print("Usage: prompt_build.py <manifest> <out>", file=sys.stderr)
sys.exit(2)
manifest, out_path = sys.argv[1], sys.argv[2]
mods = resolve(manifest, [])
if not mods:
print(f"No modules resolved from {manifest}", file=sys.stderr)
sys.exit(1)
os.makedirs(os.path.dirname(out_path), exist_ok=True)
def read(p):
with open(p, 'r', encoding='utf-8') as f:
return f.read().strip() + "\n\n"
parts = ["Generated Prompt Pack\n\n"]
for m in mods:
parts.append(f"--- {m} ---\n")
parts.append(read(m))
content = "".join(parts)
# budgets
total_words = words(content)
BASE_BUDGET = 1200
if total_words > BASE_BUDGET:
print(f"ERROR: Pack exceeds budget: {total_words} > {BASE_BUDGET}", file=sys.stderr)
sys.exit(3)
ERRORS = 0
MOD_BUDGET = 400
for m in mods:
with open(m, 'r', encoding='utf-8') as f:
wc = words(f.read())
if wc > MOD_BUDGET:
print(f"ERROR: Module {m} exceeds budget: {wc} > {MOD_BUDGET}", file=sys.stderr)
ERRORS += 1
if ERRORS:
sys.exit(4)
if out_path == '-':
sys.stdout.write(content)
else:
with open(out_path, 'w', encoding='utf-8') as out:
out.write(content)
print(f"Built {out_path} with {total_words} words across {len(mods)} modules.", file=sys.stderr)
if __name__ == '__main__':
main()

59
scripts/prompts Executable file
View File

@@ -0,0 +1,59 @@
#!/usr/bin/env bash
set -euo pipefail
usage() {
cat >&2 <<'USAGE'
Usage: scripts/prompts <command> [args]
Commands:
build <manifest> <output> Build a flattened prompt from a manifest
pack <area> Build known area pack (cto|coo) into dist/prompts
all Build all known area packs
lint Lint prompts (budgets and includes)
USAGE
exit 2
}
repo_root() { git rev-parse --show-toplevel 2>/dev/null || pwd; }
ci_run() {
local root; root="$(repo_root)"
# Ensure ci image is available by invoking a no-op build via scripts/ci
# Use compose to run with current uid:gid to avoid file ownership issues
docker compose -f "$root/docker/ci.compose.yml" run --rm \
--user "$(id -u):$(id -g)" \
-e IN_CI_CONTAINER=1 ci bash -lc "cd /workspace && $1" </dev/null
}
build_manifest() {
local manifest=$1 out=$2 root
root="$(repo_root)"
# Write on host to avoid ownership issues; container prints to stdout.
TMP_OUT=$(mktemp)
trap '[[ -n "${TMP_OUT:-}" ]] && rm -f "$TMP_OUT"' EXIT
ci_run "python3 scripts/prompt_build.py '$manifest' -" >"$TMP_OUT"
mkdir -p "$(dirname "$out")"
mv "$TMP_OUT" "$out"
}
cmd=${1:-}
case "$cmd" in
build)
shift; [[ $# -eq 2 ]] || usage
build_manifest "$1" "$2" ;;
pack)
shift; area=${1:-}; root="$(repo_root)"
case "$area" in
cto) build_manifest "$root/COMMON/prompt/manifests/cto.yaml" "$root/CTO/dist/prompts/cto.md" ;;
coo) build_manifest "$root/COMMON/prompt/manifests/coo.yaml" "$root/COO/dist/prompts/coo.md" ;;
*) echo "Unknown area: $area" >&2; exit 2 ;;
esac ;;
all)
root="$(repo_root)"
"$0" pack cto
"$0" pack coo ;;
lint)
# Rebuild and rely on budget checks to fail if over
"$0" all ;;
*) usage ;;
esac