Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .githooks/commit-msg.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ $c = Get-Content $MsgFile -Raw
if($c -notmatch "(?m)^BPOE-Dots:"){
Add-Content $MsgFile "`nBPOE-Dots: encouraged (Run-WithDotsEx)"
}

1 change: 1 addition & 0 deletions .githooks/pre-commit.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ if(-not $optin -and ($staged | Where-Object { $_ -like "status/*" -or $_ -eq "RE
exit 1
}
exit 0

1 change: 1 addition & 0 deletions .githooks/pre-push.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ if(-not $recent){
Write-Host "[BPOE] No recent dots durations found (last 2h). Consider using Run-WithDotsEx." -ForegroundColor Yellow
}
exit 0

7 changes: 6 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
* @rickballard
# Require review on core ops areas
advice/inbox/* @rickballard
tools/* @rickballard
.github/workflows/* @rickballard
docs/systemization/* @rickballard
docs/bpoe/* @rickballard
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ contact_links:
- name: Start here (parallel-session prompt)
url: ../PROMPT_Package_For_Sessions.md
about: Use this to coordinate 1-hour sprints.

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/idea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ body:
label: Safety
options:
- label: I'm not in a cool-down state (or this is just notes).

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/launch.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ about: Steps to flip RickGuard and verify protections

- [ ] Run `rg-off` (keep CoCivium™ Critical).
- [ ] After launch, if returning to seeding, run `rg-seed`.
- [ ] Verify CoCivium™ protections (`rg-status`) show **ci/smoke** + **ci/test**, reviews: **1**.
- [ ] Verify CoCivium™ protections (`rg-status`) show **ci/smoke** + **ci/test**, reviews: **1**.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@

## Notes
<!-- links, references -->

1 change: 1 addition & 0 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ jobs:
- uses: actions/checkout@v4
- name: Run actionlint
uses: rhysd/actionlint@v1

3 changes: 2 additions & 1 deletion .github/workflows/advice-inbox-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
branches: [ "main" ]
paths:
- "advice/inbox/**"
- ".github/workflows/advice-inbox-guard.yml"
- "tools/cosuite/1\\.0/ci/advice-inbox-guard\\.yml"
- "advice/INBOX_LOG.md"

jobs:
Expand Down Expand Up @@ -86,3 +86,4 @@ jobs:
fi
fi
done

1 change: 1 addition & 0 deletions .github/workflows/auto-add-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ jobs:
if [ "$EVENT" = "issues" ]; then CONTENT="$ISSUE_NODE"; else CONTENT="$PR_NODE"; fi
gh api graphql -f query='mutation($project:ID!,$content:ID!){ addProjectV2ItemById(input:{projectId:$project, contentId:$content}){ item { id } } }' -F project="$PROJECT_ID" -F content="$CONTENT"


20 changes: 20 additions & 0 deletions .github/workflows/bpoe-append-only.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: BPOE Log Append-Only
on: [pull_request]
jobs:
guard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 0 }
- name: Enforce append-only for docs/bpoe/BPOE_LOG.md
shell: bash
run: |
set -e
file="docs/bpoe/BPOE_LOG.md"
if git diff --name-only origin/${{ github.base_ref }}... | grep -qx "$file"; then
# Fail if any deletion/modification appears (allow only added lines)
if git diff --unified=0 origin/${{ github.base_ref }}... -- "$file" | grep -E '^\-|^@@' | grep -v '^---' ; then
echo "::error file=$file::BPOE_LOG.md must be append-only (only added lines allowed)."
exit 1
fi
fi
3 changes: 2 additions & 1 deletion .github/workflows/bpoe-safety-gate.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: bpoe-safety-gate
name: bpoe-safety-gate
on:
workflow_call: {}
jobs:
Expand All @@ -19,3 +19,4 @@ jobs:
path: .
base: ${{ github.event.pull_request.base.sha }}
head: ${{ github.sha }}

1 change: 1 addition & 0 deletions .github/workflows/bpoe-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ jobs:
shell: pwsh
run: ./scripts/ci/BpoeSanity.ps1


3 changes: 2 additions & 1 deletion .github/workflows/bpoe-self-evolve.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: bpoe-self-evolve
name: bpoe-self-evolve
on:
workflow_call: {}
schedule:
Expand Down Expand Up @@ -40,3 +40,4 @@ jobs:
else
echo "Auto-commits disabled; set repo variable ENABLE_AUTOCOMMITS=true to enable."
fi

3 changes: 2 additions & 1 deletion .github/workflows/bpoe-smoke.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: bpoe-smoke
name: bpoe-smoke
on:
workflow_call:
inputs:
Expand All @@ -20,3 +20,4 @@ jobs:
Import-Module "$PWD/module/BPOE.Autopilot/BPOE.Autopilot.psd1"
Test-BPOERepoSmoke -Repo $PWD @(if ("${{ inputs.fail_external }}" -eq "true") { "-FailOnExternalLinks" })


1 change: 1 addition & 0 deletions .github/workflows/civium-safety.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
echo "BN guard: exact 'Being Noname' not found."; exit 1
fi
fi

1 change: 1 addition & 0 deletions .github/workflows/coindex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,4 @@ jobs:
with:
branch: ${{ github.ref_name }}
github_token: ${{ secrets.GITHUB_TOKEN }}

1 change: 1 addition & 0 deletions .github/workflows/congruence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ jobs:
patterns/**/congruence.json
write: false
strict: false

1 change: 1 addition & 0 deletions .github/workflows/cosync-feed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ jobs:
if (git diff --cached --quiet) { exit 0 }
git commit -m "cosync: refresh feed"
git push

1 change: 1 addition & 0 deletions .github/workflows/cosync-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ jobs:
path: |
docs/dashboards/cosync_validation.csv
docs/intent/COSYNC_GAPS.md

1 change: 1 addition & 0 deletions .github/workflows/guard-handoff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ jobs:
run: |
HL=docs/HANDOFFS/HANDOFF_LATEST.md
if grep -q '```' "$HL"; then echo "Code fence found in handoff"; exit 1; fi

1 change: 1 addition & 0 deletions .github/workflows/hygiene.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ jobs:
git commit -m "chore(hygiene): deprecations/purge/size guard"
git push
fi

1 change: 1 addition & 0 deletions .github/workflows/indexer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
git add docs/index_manifest.json docs/METRICS_INDEX.md
git diff --cached --quiet || git commit -m "indexer: refresh manifest/metrics"
git push

1 change: 1 addition & 0 deletions .github/workflows/initiatives-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,4 @@ jobs:
git add docs/dashboards/initiatives_scan.*
git commit -m "metrics: refresh initiatives scan" || echo "no changes"
git push origin HEAD

1 change: 1 addition & 0 deletions .github/workflows/intake-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ jobs:
}
}
if ($errs -gt 0) { throw "Validation failed with $errs error(s)." }

2 changes: 1 addition & 1 deletion .github/workflows/intent-consult.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Ensure upstream intent is referenced
run: echo 'Check for reflexivity...'
run: echo 'Check for reflexivity...'
16 changes: 16 additions & 0 deletions .github/workflows/legacy-guard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Legacy Paths Guard
on: [pull_request]
jobs:
guard:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Block legacy tool paths
shell: bash
run: |
set -e
CHANGED=$(git diff --name-only origin/main...HEAD || true)
if echo "$CHANGED" | grep -E '^tools/(Unpack|Scan|Backfill|New-InboxManifest)\.ps1$|^\.github/workflows/advice-inbox-guard\.yml$' ; then
echo "::error ::Legacy tool path changed; use tools/cosuite/1.0/* instead."
exit 1
fi
1 change: 1 addition & 0 deletions .github/workflows/lint-content.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
exit 1
fi
echo "No emdashes found."

1 change: 1 addition & 0 deletions .github/workflows/metrics-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ jobs:
- name: Render sparklines (sanity)
shell: pwsh
run: ./scripts/render_sparklines.ps1 -HistoryDir "$PWD/metrics/history" -OutDir "$PWD/docs/assets/metrics"

1 change: 1 addition & 0 deletions .github/workflows/metrics-harvest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
- name: Run harvester (PowerShell)
shell: pwsh
run: ./scripts/metrics_harvest.ps1 -Root "$PWD"

2 changes: 1 addition & 1 deletion .github/workflows/metrics-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
git add docs/METRICS_INDEX.md
git commit -m "docs(auto): refresh Giant Metrics Index"
git push
fi
fi
1 change: 1 addition & 0 deletions .github/workflows/oe-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ jobs:
git commit -m "CI: update OE/TRUST status (2025-09-04T14:16:36.7416440-04:00)"
git push
fi

1 change: 1 addition & 0 deletions .github/workflows/ops-heartbeat-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ jobs:
run: |
./tools/update-CoSteward.ps1 -CoStewardPath "$PWD/CoSteward" -CoCachePath "$PWD" -Accel 3.0


1 change: 1 addition & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ jobs:
with: { path: 'sites' }
- id: deployment
uses: actions/deploy-pages@v4

1 change: 1 addition & 0 deletions .github/workflows/readme-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ jobs:
fi
echo "README not modified."; exit 0


1 change: 1 addition & 0 deletions .github/workflows/readme-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ jobs:
if [ "$bytes" -lt 500 ] || [ "$lines" -lt 10 ]; then
echo "README too small (bytes=$bytes, lines=$lines)"; exit 1
fi

1 change: 1 addition & 0 deletions .github/workflows/systematization-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ jobs:
if (git diff --cached --quiet) { exit 0 }
git commit -m "systematization: weekly refresh"
git push

1 change: 1 addition & 0 deletions .github/workflows/triage-guard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ jobs:
if ([string]::IsNullOrWhiteSpace($strm) -or $strm -match '^(?i)TBD$') { Write-Error "Stream TBD: $($f.FullName)"; $errs++ }
}
if ($errs -gt 0) { throw "Triage guard failed: $errs issue(s)." }

1 change: 1 addition & 0 deletions .github/workflows/va-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ jobs:
run: |
$bad = git ls-files | Where-Object { $_ -match '\.(zip|pdf|md)$' -and $_ -notmatch '_(\d{4}-\d{2}-\d{2}_\d{6})' }
if($bad){ "Unstamped assets:"; $bad; exit 1 }

2 changes: 1 addition & 1 deletion .github/workflows/zz-smoke-simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ jobs:
ping:
runs-on: ubuntu-latest
steps:
- run: echo "hello from zz-smoke-simple"
- run: echo "hello from zz-smoke-simple"
1 change: 1 addition & 0 deletions .sops.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ creation_rules:
age:
- age1ff2f8ap6enzf3vwmnjdzhqhvq8yvjtctf7xnwh4efdwqqxpvlslqa78hrh


1 change: 1 addition & 0 deletions AdviceBombs/AB-KA-01/AB-KA-01/README_START_HERE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# CoPayload AB-KA-01 — Insights Scaffold & Harvest Pack

This payload provides an Insights scaffold (paired Thesis⇄OpsBrief) + tools for non-destructive consolidation.

2 changes: 1 addition & 1 deletion AdviceBombs/AB-KA-01/AB-KA-01/run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ Next steps:
2) Run Harvest, then Chunk on large sources.
3) Fill priority pairs: LL, KA, CC, FF, RT.
"@ | Set-Content -Path $report -Encoding UTF8
"OK KA $(Get-Date -AsUTC)" | Set-Content -Path $status -Encoding UTF8
"OK KA $(Get-Date -AsUTC)" | Set-Content -Path $status -Encoding UTF8
1 change: 1 addition & 0 deletions AdviceBombs/AB-KA-01/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- Zip: ./CoPayload_AB-KA-01_Insights-Scaffold.v1.0.zip
- Expanded: ./AB-KA-01/
Run: ./AB-KA-01/run.ps1 (writes only to ./AB-KA-01/out/)

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Purpose: transparent resource flows; antifragile budget & treasury mechanics.
Scope: earmarks vs. commons, incentive-compatible grants, slush bounds.
Interfaces: CoCache ledger views, AB provisioning, audit trails.
Open Questions: [fill]

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Implementation: envelopes, release conditions, clawback triggers.
Runbook: request → review → release → telemetry → rebalance.
KPIs: funding latency, leakage rate, ROI half-life.
Risks & Mitigations: [fill]

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Purpose: governance in liminal contexts; norms arbitration in CoCivium™.
Scope: subsidiarity, reciprocity, proportionality, reversible commitments.
Interfaces: CoCache indexes, CoCivium™ adjudication, AB lifecycle.
Open Questions: [fill]

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ Implementation: decision codecs, escalation lattice, traceable exceptions.
Runbook: incident → deliberation → reversible decision → review.
KPIs: mean time to resolution, dissent capture rate, rollback half-life.
Risks & Mitigations: [fill]

1 change: 1 addition & 0 deletions AdviceBombs/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
file: AdviceBombs/AB-KA-01/CoPayload_AB-KA-01_Insights-Scaffold.v1.0.zip
sha256: "b83866ccd75dea950221ad32971db9c50a5d491ab032884c2db04b7ecbe6938b"
added_utc: "2025-10-05T09:42:45Z"

1 change: 1 addition & 0 deletions BN_Canonical_Pull.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,4 @@ if([string]::IsNullOrWhiteSpace($changed)){
}

Write-Host "Done: $destRel" -ForegroundColor Green

1 change: 1 addition & 0 deletions BPOE_RULES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@
- `git config core.hooksPath .githooks`

**Rule #5: Prefer HTTPS remotes** for CI/automation unless SSH keys are guaranteed.

1 change: 1 addition & 0 deletions CC/..CC_Megascroll_SEED.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,4 @@ Civility, Clarity, Curiosity, Consent, Credit. Disagree without demeaning; expla


- [Genexis](sections/Genexis.md)

1 change: 1 addition & 0 deletions CC/sections/Genexis.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,4 @@ _Last updated: PLACEHOLDER_




Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# CoWrap placement
Drop-in: CoCache/CoWraps/STACK/Spanky_examples_20251008_004552/
Source: Spanky_examples_20251008_004552.zip

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- English first (NA/EU/AUS); readers prefer snack-size clarity.

Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- Idempotent asset generation via scripts; avoid manual edits.
- SVG sanitized; color variants via hex-swap; PNG fallbacks via ImageMagick.
- CI/CD to Substack gated by ethics thresholds.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Reframe format: Original → Reframe → Bullets
- Praise exemplars even if we disagree
- Hex-swap for SVG recolor (GitHub-safe)

Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- git, gh
- ImageMagick
- Substack keys/secrets

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- None recorded.

Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- WisdomOps: optimizing for wisdom over outrage.
- CoCivium™ halo: R/A/G/grey congruence cue.

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- (Unfinished) Clarify product scope, cadence, locales, and exemplar rules.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
- Automation drift; ethics guardrails.
- Link rot; Wayback.
- Overlength; enforce 5–10 min read.

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- RickPublic.com anchors Substack; header uses RP transparent logo and halo strip.

Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,4 @@ Before packaging, re-read from the start and include:
"status": "_spanky/out.txt",
"checksums": "_spanky/checksums.json"
}

Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
- Why dropped:
- When dropped:
- What it evolved into (if anything):

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Phase 1 Weekly → Phase 2 3×/week → Phase 3 Localize & exemplar network.

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Source: Spanky_Request_Pack_v2_2_2025-10-08.zip

Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Reframe top stories; expose intent/bias; snack-sized bullets; ethics engine; feedback micro-form.

Loading
Loading