Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,3 @@

# Enforcement documentation
docs/enforcement/** @Deepfreezechill

# Autonomous loop control files — highest-leverage attack surface
/AGENTS.md @Deepfreezechill
/RUNBOOK.yaml @Deepfreezechill
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
name: Dependency Audit (pip-audit)
runs-on: ubuntu-latest
# SECURITY: pip-audit MUST block merge on known vulnerabilities.
# Removed continue-on-error per /8eyes security audit finding.
# Removed continue-on-error per security audit finding.
steps:
- uses: actions/checkout@v4

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/phase-enforce.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
# fails to report a status, the merge is BLOCKED (fail-closed).
#
# PATTERN LINEAGE:
# - eight-eyes/circuit_breaker.py → retry + fail-closed design
# - squad-audit/squad-label-enforce.yml → structured PR comments
# - squad-audit/squad-promote.yml → prerequisite validation gates
# - circuit_breaker pattern → retry + fail-closed design
# - label-enforce pattern → structured PR comments
# - promote pattern → prerequisite validation gates
#
# REQUIRED: Branch protection must require this check ("Phase Gate Enforcement")
# ============================================================================
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
const MAX_RETRIES = 3;
const RETRY_DELAYS = [1000, 3000, 5000]; // ms

// Retry wrapper (from eight-eyes circuit breaker pattern)
// Retry wrapper (circuit breaker pattern)
async function withRetry(fn, label) {
let lastErr;
for (let i = 0; i <= MAX_RETRIES; i++) {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/progress-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

const report = `# 📊 OpenSpace Upgrade — Progress Dashboard

> Auto-generated: ${new Date().toISOString().split('T')[0]} | [View Project Board](https://github.com/users/Deepfreezechill/projects/1)
> Auto-generated: ${new Date().toISOString().split('T')[0]} | [View Project Board](https://github.com/Deepfreezechill/OpenSpace/projects)

## Overall: ${overallPct}% Complete
\`\`\`
Expand Down
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -78,3 +78,12 @@ frontend/node_modules
.coverage
htmlcov/
coverage.xml

# Dev artifacts (PR diffs, scratch files, Windows NUL)
pr-*-diff*.txt
NUL.txt
scratch_*/

# Internal agent workflow docs (not user-facing)
.github/AGENTS.md
RUNBOOK.yaml
151 changes: 0 additions & 151 deletions AGENTS.md

This file was deleted.

Loading
Loading