Standard production layout: the OKR app (was nested under AINative_OKR_CASAN5/) is now
the repository root. No more wrapper directory.
- Promote AINative_OKR_CASAN5/* -> repo root (backend/ frontend/ packages/ apps/
.specify/ docs/ infra/ nginx/ scripts/ + configs). Merge tool dirs: .gitea (kept the
active deploy ci.yml, added harness-ci.yml + runbooks), .claude (agents/commands +
launch.json), .github moved up.
- Remove redundant: 00_SUBMISSION_PACKAGE, scattered root notes (FPT_CASAN_Full.md,
tu-tuong-casan.md, casan-tu-sinh..., casan_harness_assessment.md, source-review...,
README_CASAN5_REFINED.md), casan-next-plans/ and optimize-docs/ (competition/planning
artifacts — roadmap + design history preserved in git log / commit messages).
- Update all references to the old layout:
- .gitea/workflows/{ci,harness-ci}.yml, .github/workflows/{ci,deploy}.yml:
working-directory .; drop AINative_OKR_CASAN5/ prefix; .specify/{tests,scripts}
-> packages/casan-harness/... (.specify/logs state kept)
- .claude/launch.json, .gitea/*-runbook.md: path prefixes
- CLAUDE.md, README.md: docs/input -> apps/okr/domain/input
- policy-bundle.yaml: 8 policy paths -> packages/casan-harness/...; manifest re-signed
- secrets-scan.sh: fixture excludes -> new package/domain paths.
Full gate from the new root: PASS=64 FAIL=0 SKIP=3.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
36 lines
1.2 KiB
Bash
36 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
# CASAN shared log helper (source me, do not execute).
|
|
# Taxonomy (shared with scripts/casan-log.mjs): error < warn < info < debug < trace.
|
|
# CASAN_LOG_LEVEL selects the threshold (default: info). All log lines go to
|
|
# stderr so stdout contracts (CASAN_HARNESS_COMPLETE, cache=..., evidence
|
|
# .stdout files) stay byte-identical.
|
|
|
|
casan_log_num() {
|
|
case "$1" in
|
|
error) echo 0 ;;
|
|
warn) echo 1 ;;
|
|
info) echo 2 ;;
|
|
debug) echo 3 ;;
|
|
trace) echo 4 ;;
|
|
*) echo 2 ;;
|
|
esac
|
|
}
|
|
|
|
CASAN_LOG_LEVEL="${CASAN_LOG_LEVEL:-info}"
|
|
CASAN_LOG_THRESHOLD="$(casan_log_num "$CASAN_LOG_LEVEL")"
|
|
|
|
# casan_log <level> <component> <message...>
|
|
casan_log() {
|
|
local lvl="$1" comp="$2"
|
|
shift 2
|
|
[ "$(casan_log_num "$lvl")" -le "$CASAN_LOG_THRESHOLD" ] || return 0
|
|
# SEC-27 (X-02): log messages carry attacker-influenced data (action names, tool
|
|
# output snippets). Strip control chars — ESC/CSI (terminal-escape injection that
|
|
# rewrites a reviewer's screen) and CR/LF (fake-log-line injection) — keeping tab.
|
|
local msg; msg="$(printf '%s' "$*" | tr -d '\000-\010\012-\037\177')"
|
|
printf '[%s] %s [%s] %s\n' \
|
|
"$(printf '%s' "$lvl" | tr '[:lower:]' '[:upper:]')" \
|
|
"$(date -u +"%Y-%m-%dT%H:%M:%SZ")" \
|
|
"$comp" "$msg" >&2
|
|
}
|