From 668d1fca07dc1ce8a49e5d8047897934c7529c2e Mon Sep 17 00:00:00 2001 From: "@chitcommit" <208086304+chitcommit@users.noreply.github.com> Date: Tue, 3 Mar 2026 22:42:19 -0600 Subject: [PATCH] Refactor bridge.ts into domain-specific route modules (#11) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: split bridge.ts into domain-specific route modules Break the 880-line monolith into src/routes/bridge/ with 9 domain files (ledger, credentials, finance, plaid, mercury, books, assets, scrape, status) and a barrel index. No behavior changes. Co-Authored-By: Claude Opus 4.6 * feat(auth): add in-app token management and chittyauth-first mcp auth (#6) * fix: complete 4-lane remediation (#10) * fix: complete 4-lane remediation — tests, governance, security, CORS Lane 1 (Testing): Add vitest infrastructure with MCP test cases covering JSON-RPC protocol, tool success/error paths, and defensive parsing. Lane 2 (Governance): Add GitHub Actions CI/CD (ci.yml, deploy-worker, governance gates), org governance scripts (audit, enforce, remediate), ISSUE_TEMPLATE, release.yml, and governance-baseline templates. Lane 3 (Security): Add .gitleaks.toml for secret scanning, security docs (access broker runbook, secret rotation checklist, scan report), .gitignore hardening. Lane 4 (Code + UI): CORS OPTIONS + credentials support, MCP server expanded from 6 to 28 tools across 8 domains, integrations and validators updates, UI disputes widget and API client fixes. Co-Authored-By: Claude Opus 4.6 * fix: address PR review feedback across 10 files - package.json: remove trailing space on kv:seed script line - ci.yml: add npm test step, fix secret allowlist to catch bracket notation (secrets['NAME']) in addition to dot notation - reusable-governance-gates.yml: same bracket notation fix - chittycompliance-dispatch.sh: replace string interpolation with jq -nc for all JSON payloads to prevent injection - org-governance-adversarial-review.sh: add defensive // [] for missingFiles and missingTriggers jq expressions - connect.ts: proper AuthVariables typing instead of @ts-expect-error - integrations.ts: normalize KV cache key with encodeURIComponent - wrangler.toml: default PLAID_ENV to sandbox, production override in [env.production.vars] - org-governance-pr-integration-loop.sh: add author verification against governance automation allowlist before auto-approve - .gitignore: exclude timestamped governance report artifacts Co-Authored-By: Claude Opus 4.6 * fix(backend): add missing beacon, context, and ledger modules These three files were present locally but missed during the initial push, causing TypeScript compilation errors in CI. Co-Authored-By: Claude Opus 4.6 * fix(ci): allow vitest to pass with no test files Add passWithNoTests to vitest config so CI doesn't fail when the tests directory hasn't been populated yet. Co-Authored-By: Claude Opus 4.6 * fix(scripts): use grep -F for literal bot author matching The [bot] suffix in author names was being interpreted as a regex character class. Use -F flag for fixed-string matching. Co-Authored-By: Claude Opus 4.6 * ci: add CodeQL code scanning workflow Required by org-level ruleset for branch protection on main. Co-Authored-By: Claude Opus 4.6 --------- Co-authored-by: Claude Opus 4.6 * Set up GitHub Copilot coding agent instructions (#14) * Initial plan * feat: add .github/copilot-instructions.md with repository-specific Copilot guidance Co-authored-by: chitcommit <208086304+chitcommit@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: chitcommit <208086304+chitcommit@users.noreply.github.com> * Addressing PR comments (#12) * fix: complete 4-lane remediation — tests, governance, security, CORS Lane 1 (Testing): Add vitest infrastructure with MCP test cases covering JSON-RPC protocol, tool success/error paths, and defensive parsing. Lane 2 (Governance): Add GitHub Actions CI/CD (ci.yml, deploy-worker, governance gates), org governance scripts (audit, enforce, remediate), ISSUE_TEMPLATE, release.yml, and governance-baseline templates. Lane 3 (Security): Add .gitleaks.toml for secret scanning, security docs (access broker runbook, secret rotation checklist, scan report), .gitignore hardening. Lane 4 (Code + UI): CORS OPTIONS + credentials support, MCP server expanded from 6 to 28 tools across 8 domains, integrations and validators updates, UI disputes widget and API client fixes. Co-Authored-By: Claude Opus 4.6 * fix: address PR review feedback across 10 files - package.json: remove trailing space on kv:seed script line - ci.yml: add npm test step, fix secret allowlist to catch bracket notation (secrets['NAME']) in addition to dot notation - reusable-governance-gates.yml: same bracket notation fix - chittycompliance-dispatch.sh: replace string interpolation with jq -nc for all JSON payloads to prevent injection - org-governance-adversarial-review.sh: add defensive // [] for missingFiles and missingTriggers jq expressions - connect.ts: proper AuthVariables typing instead of @ts-expect-error - integrations.ts: normalize KV cache key with encodeURIComponent - wrangler.toml: default PLAID_ENV to sandbox, production override in [env.production.vars] - org-governance-pr-integration-loop.sh: add author verification against governance automation allowlist before auto-approve - .gitignore: exclude timestamped governance report artifacts Co-Authored-By: Claude Opus 4.6 * Initial plan * fix: address unresolved review comments — error info leakage, type safety, and MCP tests Co-authored-by: chitcommit <208086304+chitcommit@users.noreply.github.com> * fix: wire mcpAuthMiddleware in tests, fix empty-body parse error, rename GET test Co-authored-by: chitcommit <208086304+chitcommit@users.noreply.github.com> --------- Co-authored-by: @chitcommit <208086304+chitcommit@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --------- Co-authored-by: Claude Opus 4.6 Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> --- .chittyconnect.yml | 21 + .github/ISSUE_TEMPLATE/config.yml | 5 + .../ISSUE_TEMPLATE/governance-exception.yml | 39 + .github/allowed-workflow-secrets.txt | 9 + .github/copilot-instructions.md | 174 + .github/org-governance-policy.json | 170 + .github/release.yml | 17 + .github/secret-catalog.json | 29 + .github/workflows/adversarial-review.yml | 64 + .github/workflows/ci.yml | 84 + .github/workflows/codeql.yml | 27 + .github/workflows/deploy-worker.yml | 19 + .github/workflows/getchitty-creds-example.yml | 23 + .github/workflows/governance-gates.yml | 46 + .../workflows/identity-context-onboarding.yml | 17 + .../workflows/onepassword-rotation-audit.yml | 56 + .../workflows/org-governance-control-loop.yml | 368 + .../workflows/reusable-governance-gates.yml | 96 + .gitignore | 16 + .gitleaks.toml | 12 + CHARTER.md | 41 +- CHITTY.md | 40 +- CLAUDE.md | 46 +- docs/KV_SEEDING.md | 50 + docs/PERSISTENT_BRIEF.md | 53 + .../ACCESS_BROKER_AND_1PASSWORD_RUNBOOK.md | 45 + .../SECRET_HISTORY_SCAN_REPORT_2026-03-01.md | 23 + docs/security/SECRET_ROTATION_CHECKLIST.md | 42 + package.json | 10 +- .../org-governance-default-smoke/latest.json | 353 + .../org-governance-default-smoke/latest.md | 32 + .../report-20260302T002907Z.json | 353 + .../report-20260302T002907Z.jsonl | 6 + .../report-20260302T002907Z.md | 32 + reports/org-governance-full/latest.json | 7421 +++++++++++++++++ reports/org-governance-full/latest.md | 150 + .../report-20260302T013423Z.json | 7421 +++++++++++++++++ .../report-20260302T013423Z.jsonl | 124 + .../report-20260302T013423Z.md | 150 + reports/org-governance-live/latest.json | 582 ++ reports/org-governance-live/latest.md | 35 + .../report-20260302T002342Z.jsonl | 9 + .../report-20260302T002441Z.json | 877 ++ .../report-20260302T002441Z.jsonl | 15 + .../report-20260302T002441Z.md | 5 + .../report-20260302T002603Z.json | 582 ++ .../report-20260302T002603Z.jsonl | 10 + .../report-20260302T002603Z.md | 35 + reports/org-governance-postexec/latest.json | 7097 ++++++++++++++++ reports/org-governance-postexec/latest.md | 150 + .../open-governance-baseline-pr-repos.txt | 40 + .../open-governance-issue-repos.txt | 124 + .../report-20260302T022304Z.json | 7097 ++++++++++++++++ .../report-20260302T022304Z.jsonl | 124 + .../report-20260302T022304Z.md | 150 + .../repos-missing-status-checks.txt | 43 + reports/org-governance-smoke/latest.json | 63 + reports/org-governance-smoke/latest.md | 22 + .../report-20260302T002833Z.json | 63 + .../report-20260302T002833Z.jsonl | 1 + .../report-20260302T002833Z.md | 22 + scripts/check-chitty-onboarding.sh | 42 + scripts/chittycompliance-dispatch.sh | 167 + scripts/onepassword-rotation-audit.sh | 114 + scripts/org-governance-adversarial-review.sh | 99 + scripts/org-governance-audit.sh | 388 + scripts/org-governance-enable-auto-merge.sh | 88 + .../org-governance-enforce-repo-settings.sh | 152 + scripts/org-governance-enforce-rulesets.sh | 274 + .../org-governance-enforce-status-checks.sh | 144 + scripts/org-governance-pr-integration-loop.sh | 289 + scripts/org-governance-project-sync.sh | 129 + scripts/org-governance-remediate.sh | 431 + scripts/pressure-test-governance.sh | 429 + scripts/seed-kv.sh | 37 + scripts/stamp-discovery-links.sh | 139 + src/index.ts | 3 +- src/lib/beacon.ts | 39 + src/lib/integrations.ts | 38 +- src/lib/validators.ts | 8 + src/middleware/auth.ts | 47 + src/routes/auth.ts | 4 +- src/routes/bridge.ts | 783 -- src/routes/connect.ts | 50 + src/routes/context.ts | 87 + src/routes/ledger.ts | 31 + src/routes/mcp.ts | 436 +- src/routes/meta.ts | 126 + src/routes/token-management.ts | 174 + .../governance-baseline/.chittyconnect.yml | 21 + .../.github/ISSUE_TEMPLATE/config.yml | 5 + .../ISSUE_TEMPLATE/governance-exception.yml | 39 + .../.github/allowed-workflow-secrets.txt | 7 + .../governance-baseline/.github/release.yml | 17 + .../.github/secret-catalog.json | 29 + .../.github/workflows/adversarial-review.yml | 64 + .../.github/workflows/governance-gates.yml | 46 + .../workflows/identity-context-onboarding.yml | 17 + .../workflows/onepassword-rotation-audit.yml | 56 + .../workflows/reusable-governance-gates.yml | 96 + templates/governance-baseline/.gitleaks.toml | 12 + templates/governance-baseline/CHARTER.md | 28 + templates/governance-baseline/CHITTY.md | 28 + .../docs/PERSISTENT_BRIEF.md | 15 + .../scripts/check-chitty-onboarding.sh | 42 + .../scripts/onepassword-rotation-audit.sh | 114 + tests/mcp.test.ts | 269 + ui/public/_headers | 4 + ui/public/_redirects | 1 + .../components/dashboard/DisputesWidget.tsx | 3 +- ui/src/lib/api.ts | 55 +- vitest.config.ts | 18 + wrangler.toml | 11 + 113 files changed, 39764 insertions(+), 811 deletions(-) create mode 100644 .chittyconnect.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/governance-exception.yml create mode 100644 .github/allowed-workflow-secrets.txt create mode 100644 .github/copilot-instructions.md create mode 100644 .github/org-governance-policy.json create mode 100644 .github/release.yml create mode 100644 .github/secret-catalog.json create mode 100644 .github/workflows/adversarial-review.yml create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/codeql.yml create mode 100644 .github/workflows/deploy-worker.yml create mode 100644 .github/workflows/getchitty-creds-example.yml create mode 100644 .github/workflows/governance-gates.yml create mode 100644 .github/workflows/identity-context-onboarding.yml create mode 100644 .github/workflows/onepassword-rotation-audit.yml create mode 100644 .github/workflows/org-governance-control-loop.yml create mode 100644 .github/workflows/reusable-governance-gates.yml create mode 100644 .gitleaks.toml create mode 100644 docs/KV_SEEDING.md create mode 100644 docs/PERSISTENT_BRIEF.md create mode 100644 docs/security/ACCESS_BROKER_AND_1PASSWORD_RUNBOOK.md create mode 100644 docs/security/SECRET_HISTORY_SCAN_REPORT_2026-03-01.md create mode 100644 docs/security/SECRET_ROTATION_CHECKLIST.md create mode 100644 reports/org-governance-default-smoke/latest.json create mode 100644 reports/org-governance-default-smoke/latest.md create mode 100644 reports/org-governance-default-smoke/report-20260302T002907Z.json create mode 100644 reports/org-governance-default-smoke/report-20260302T002907Z.jsonl create mode 100644 reports/org-governance-default-smoke/report-20260302T002907Z.md create mode 100644 reports/org-governance-full/latest.json create mode 100644 reports/org-governance-full/latest.md create mode 100644 reports/org-governance-full/report-20260302T013423Z.json create mode 100644 reports/org-governance-full/report-20260302T013423Z.jsonl create mode 100644 reports/org-governance-full/report-20260302T013423Z.md create mode 100644 reports/org-governance-live/latest.json create mode 100644 reports/org-governance-live/latest.md create mode 100644 reports/org-governance-live/report-20260302T002342Z.jsonl create mode 100644 reports/org-governance-live/report-20260302T002441Z.json create mode 100644 reports/org-governance-live/report-20260302T002441Z.jsonl create mode 100644 reports/org-governance-live/report-20260302T002441Z.md create mode 100644 reports/org-governance-live/report-20260302T002603Z.json create mode 100644 reports/org-governance-live/report-20260302T002603Z.jsonl create mode 100644 reports/org-governance-live/report-20260302T002603Z.md create mode 100644 reports/org-governance-postexec/latest.json create mode 100644 reports/org-governance-postexec/latest.md create mode 100644 reports/org-governance-postexec/open-governance-baseline-pr-repos.txt create mode 100644 reports/org-governance-postexec/open-governance-issue-repos.txt create mode 100644 reports/org-governance-postexec/report-20260302T022304Z.json create mode 100644 reports/org-governance-postexec/report-20260302T022304Z.jsonl create mode 100644 reports/org-governance-postexec/report-20260302T022304Z.md create mode 100644 reports/org-governance-postexec/repos-missing-status-checks.txt create mode 100644 reports/org-governance-smoke/latest.json create mode 100644 reports/org-governance-smoke/latest.md create mode 100644 reports/org-governance-smoke/report-20260302T002833Z.json create mode 100644 reports/org-governance-smoke/report-20260302T002833Z.jsonl create mode 100644 reports/org-governance-smoke/report-20260302T002833Z.md create mode 100755 scripts/check-chitty-onboarding.sh create mode 100755 scripts/chittycompliance-dispatch.sh create mode 100755 scripts/onepassword-rotation-audit.sh create mode 100755 scripts/org-governance-adversarial-review.sh create mode 100755 scripts/org-governance-audit.sh create mode 100755 scripts/org-governance-enable-auto-merge.sh create mode 100755 scripts/org-governance-enforce-repo-settings.sh create mode 100755 scripts/org-governance-enforce-rulesets.sh create mode 100755 scripts/org-governance-enforce-status-checks.sh create mode 100755 scripts/org-governance-pr-integration-loop.sh create mode 100755 scripts/org-governance-project-sync.sh create mode 100755 scripts/org-governance-remediate.sh create mode 100755 scripts/pressure-test-governance.sh create mode 100644 scripts/seed-kv.sh create mode 100755 scripts/stamp-discovery-links.sh create mode 100644 src/lib/beacon.ts delete mode 100644 src/routes/bridge.ts create mode 100644 src/routes/connect.ts create mode 100644 src/routes/context.ts create mode 100644 src/routes/ledger.ts create mode 100644 src/routes/meta.ts create mode 100644 src/routes/token-management.ts create mode 100644 templates/governance-baseline/.chittyconnect.yml create mode 100644 templates/governance-baseline/.github/ISSUE_TEMPLATE/config.yml create mode 100644 templates/governance-baseline/.github/ISSUE_TEMPLATE/governance-exception.yml create mode 100644 templates/governance-baseline/.github/allowed-workflow-secrets.txt create mode 100644 templates/governance-baseline/.github/release.yml create mode 100644 templates/governance-baseline/.github/secret-catalog.json create mode 100644 templates/governance-baseline/.github/workflows/adversarial-review.yml create mode 100644 templates/governance-baseline/.github/workflows/governance-gates.yml create mode 100644 templates/governance-baseline/.github/workflows/identity-context-onboarding.yml create mode 100644 templates/governance-baseline/.github/workflows/onepassword-rotation-audit.yml create mode 100644 templates/governance-baseline/.github/workflows/reusable-governance-gates.yml create mode 100644 templates/governance-baseline/.gitleaks.toml create mode 100644 templates/governance-baseline/CHARTER.md create mode 100644 templates/governance-baseline/CHITTY.md create mode 100644 templates/governance-baseline/docs/PERSISTENT_BRIEF.md create mode 100755 templates/governance-baseline/scripts/check-chitty-onboarding.sh create mode 100755 templates/governance-baseline/scripts/onepassword-rotation-audit.sh create mode 100644 tests/mcp.test.ts create mode 100644 ui/public/_headers create mode 100644 ui/public/_redirects create mode 100644 vitest.config.ts diff --git a/.chittyconnect.yml b/.chittyconnect.yml new file mode 100644 index 0000000..75c24aa --- /dev/null +++ b/.chittyconnect.yml @@ -0,0 +1,21 @@ +onboarding: + provisions: + chitty_id: required + service_token: required + certificate: required + trust_chain: required + context_consciousness: + enabled: true + session_binding: required + chittydna: + enabled: true + identity_lineage: required + memorycloude: + enabled: true + memory_policy: required + synthetic_entity: + type: person + classification: synthetic + authority_scope: least_privilege + access_scope: explicit_scopes_only + actor_binding: required diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..8f2907b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Governance triage + url: https://github.com/chittyos/chittycommand/issues/new?template=governance-exception.yml + about: Use the governance exception template for bypass requests. diff --git a/.github/ISSUE_TEMPLATE/governance-exception.yml b/.github/ISSUE_TEMPLATE/governance-exception.yml new file mode 100644 index 0000000..a90cac6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/governance-exception.yml @@ -0,0 +1,39 @@ +name: Governance Exception Request +description: Request a temporary exception to governance automation controls. +title: "[Governance Exception] " +labels: + - governance + - exception-request +body: + - type: input + id: repository + attributes: + label: Repository + description: Repository impacted by this exception. + placeholder: CHITTYOS/example-repo + validations: + required: true + - type: textarea + id: scope + attributes: + label: Scope and duration + description: Exact control to bypass, start date, and expiry date. + placeholder: "Bypass required status checks for release hotfix until 2026-03-10" + validations: + required: true + - type: textarea + id: risk + attributes: + label: Risk and mitigation + description: Risks introduced and compensating controls. + validations: + required: true + - type: checkboxes + id: attestations + attributes: + label: Attestations + options: + - label: I confirm this request is temporary and time-bounded. + required: true + - label: I confirm this request has rollback and remediation steps. + required: true diff --git a/.github/allowed-workflow-secrets.txt b/.github/allowed-workflow-secrets.txt new file mode 100644 index 0000000..92a48ac --- /dev/null +++ b/.github/allowed-workflow-secrets.txt @@ -0,0 +1,9 @@ +CHITTYCONNECT_API_KEY +CHITTYCONNECT_BROKER_TOKEN +CHITTY_AGENT_TOKEN +CHITTY_GATEWAY_TOKEN +CHITTY_GOVERNANCE_DISPATCH_TOKEN +CHITTY_REVIEW_DELEGATE_TOKEN +GITHUB_TOKEN +OP_SERVICE_ACCOUNT_TOKEN +ORG_AUTOMATION_TOKEN diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..7bce086 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,174 @@ +# GitHub Copilot Instructions — ChittyCommand + +## Project Overview + +ChittyCommand is a unified life management and action dashboard for the ChittyOS ecosystem. It ingests data from 15+ financial, legal, and administrative sources, scores urgency with AI, recommends actions, and executes them via APIs, email, or browser automation. + +- **Repo:** `CHITTYOS/chittycommand` +- **Deploy:** Cloudflare Workers at `command.chitty.cc` +- **Stack:** Hono (TypeScript), React + Tailwind (frontend), Neon PostgreSQL via Hyperdrive, Cloudflare R2/KV +- **Canonical URI:** `chittycanon://core/services/chittycommand` | Tier 5 + +## Common Commands + +```bash +npm run dev # Start Hono dev server (wrangler dev) +npm run build # Typecheck (tsc --noEmit) +npm run test # Run Vitest tests +npm run deploy # Deploy to Cloudflare Workers +npm run ui:dev # Start React frontend (localhost:5173) +npm run ui:build # Build frontend for Cloudflare Pages +npm run db:generate # Generate Drizzle migrations +npm run db:migrate # Run Drizzle migrations +``` + +Secrets are managed via `wrangler secret put` — **never hardcode** them: + +```bash +wrangler secret put PLAID_CLIENT_ID +wrangler secret put PLAID_SECRET +wrangler secret put DATABASE_URL +``` + +## Architecture + +Single Cloudflare Worker serving API + scheduled cron jobs. Frontend is a separate React SPA (Cloudflare Pages) at `app.command.chitty.cc`. + +### Key Files + +- `src/index.ts` — Hono app entry point, route mounting, CORS, error handler +- `src/middleware/auth.ts` — Three auth middlewares: `authMiddleware`, `bridgeAuthMiddleware`, `mcpAuthMiddleware` +- `src/db/schema.ts` — Drizzle ORM schema (all tables prefixed `cc_`) +- `src/lib/cron.ts` — Cron sync orchestrator +- `src/lib/integrations.ts` — Service clients (Mercury, Plaid, ChittyScrape, etc.) +- `src/lib/urgency.ts` — Deterministic urgency scoring (0–100) +- `src/lib/validators.ts` — Zod schemas for all request validation +- `src/routes/` — Route handlers (one file per domain) +- `src/routes/bridge/` — Inter-service bridge routes +- `src/routes/mcp.ts` — MCP server (28 tools for Claude integration) +- `migrations/` — SQL migration files (0001–0007) +- `ui/` — React frontend (Vite + Tailwind) + +## Code Conventions + +### TypeScript + +- Strict mode is enabled (`"strict": true`). No `any` unless explicitly cast. +- Target: `ES2022`. Module resolution: `bundler`. +- All Hono apps/routes are typed: `new Hono<{ Bindings: Env; Variables: AuthVariables }>()`. +- Import `AuthVariables` from `src/middleware/auth.ts` for route-level context variables. +- Use `c.set('userId', ...)` and `c.get('userId')` for auth context in middleware and handlers. + +### Database (Drizzle ORM) + +- All tables are prefixed `cc_` (e.g., `cc_accounts`, `cc_obligations`). +- Use `uuid` PKs with `.defaultRandom()`. +- Always include `createdAt` and `updatedAt` timestamps with `{ withTimezone: true }`. +- Add `index()` on columns used in WHERE/ORDER BY clauses. +- Monetary values use `numeric` with `{ precision: 12, scale: 2 }`. +- Use `jsonb` for flexible metadata fields, default to `{}` or `[]`. +- Import `getDb` from `src/lib/db.ts` to get a database connection. + +### Validation (Zod) + +- Define all Zod schemas in `src/lib/validators.ts`. +- Use `@hono/zod-validator` with `zValidator('json', schema)` for request body validation. +- Validate query params with `zValidator('query', schema)`. +- Date strings must match `/^\d{4}-\d{2}-\d{2}$/` (YYYY-MM-DD). +- UUID fields use `z.string().uuid()`. + +### Routing (Hono) + +- Create one route file per domain in `src/routes/`. +- Export a named `const xxxRoutes = new Hono()` from each file. +- Mount routes in `src/index.ts` using `app.route('/api/xxx', xxxRoutes)`. +- Apply auth middleware at mount time in `src/index.ts`, not inside route files. +- Always return `c.json(...)` — never return raw strings or untyped responses. + +### Error Handling + +- Use the global error handler in `src/index.ts` for unhandled errors — it returns `{ error: 'Internal Server Error' }`, never leaking internals. +- Return `c.json({ error: '...' }, 4xx)` for expected client errors. +- Catch fetch errors in try/catch; fall through gracefully rather than bubbling errors. + +## Auth Patterns + +Three auth layers — **do not bypass or modify without security review**: + +1. **`authMiddleware`** (`/api/*`) — KV token lookup, then ChittyAuth fallback. Sets `userId` and `scopes`. +2. **`bridgeAuthMiddleware`** (`/api/bridge/*`) — KV service token (`bridge:service_token`) OR user token. +3. **`mcpAuthMiddleware`** (`/mcp/*`) — ChittyAuth token first, KV service token fallback (`mcp:service_token`). Bypassed in non-production environments. + +Access auth context in handlers via `c.get('userId')` and `c.get('scopes')`. + +## Security Requirements + +- **Never hardcode** secrets, tokens, API keys, or credentials anywhere in source code. +- All secrets go through `wrangler secret put` — never in `[vars]` in `wrangler.toml`. +- KV service tokens: `bridge:service_token`, `mcp:service_token`, `scrape:service_token`. +- CORS is restricted to approved origins: `app.command.chitty.cc`, `command.mychitty.com`, `chittycommand-ui.pages.dev`, `localhost:5173`. +- Credentials use 1Password (`op run`) in local development — never expose in terminal output or logs. +- Error responses must **not** leak internal error messages, stack traces, or sensitive data. +- All user input must be validated with Zod before use. +- Use `X-Source-Service: chittycommand` header on all outbound service calls. + +## Environment Bindings (Cloudflare Workers) + +Available via `c.env` in route handlers and middleware: + +| Binding | Type | Purpose | +|---------|------|---------| +| `HYPERDRIVE` | Hyperdrive | Neon PostgreSQL connection | +| `DOCUMENTS` | R2Bucket | Document storage | +| `COMMAND_KV` | KVNamespace | Auth tokens, sync state, service tokens | +| `AI` | Ai | Cloudflare AI Gateway | +| `ENVIRONMENT` | string | `"production"` or `"development"` | +| `CHITTYAUTH_URL` | string | ChittyAuth service URL | +| `CHITTYLEDGER_URL` | string | ChittyLedger service URL | +| `CHITTYFINANCE_URL` | string | ChittyFinance service URL | +| `CHITTYSCRAPE_URL` | string | ChittyScrape service URL | +| `CHITTYCONNECT_URL` | string | ChittyConnect service URL | +| `PLAID_CLIENT_ID` | string (secret) | Plaid API key | +| `PLAID_SECRET` | string (secret) | Plaid API secret | + +Always check if optional URL bindings are present before using them (e.g., `if (c.env.CHITTYAUTH_URL)`). + +## Cron Schedule + +Defined in `wrangler.toml` and dispatched via `src/lib/cron.ts`: + +| Schedule | Purpose | +|----------|---------| +| `0 12 * * *` | Daily 6 AM CT: Plaid + ChittyFinance sync | +| `0 13 * * *` | Daily 7 AM CT: Court docket check | +| `0 14 * * 1` | Weekly Mon 8 AM CT: Utility scrapers | +| `0 15 1 * *` | Monthly 1st 9 AM CT: Mortgage, property tax | + +## MCP Server + +The `/mcp` route exposes 28 tools across 8 domains for Claude integration. Tools return structured JSON: `content: [{ type: "json", json: ... }]`. Auth is handled by `mcpAuthMiddleware`. See `src/routes/mcp.ts` for tool definitions. + +## Testing + +Tests use Vitest. Run with `npm run test`. Test files live alongside source in `src/` or in a `__tests__` directory. The test configuration is in `vitest.config.ts`. + +## PR and Review Policy + +- One concern area per PR (security, feature, refactor, schema change, governance). +- Every PR must include: scope, risk/blast radius, test evidence, rollback plan, and migration impact. +- Do not bundle governance/ruleset changes with unrelated app logic. +- Resolve must-fix review comments (security, correctness, compliance, merge blockers) before merge. +- Do not weaken auth, CORS, or governance controls. +- Schema changes (`src/db/schema.ts`) require a new SQL migration in `migrations/`. + +## ChittyOS Ecosystem Context + +ChittyCommand is a **Tier 5 Application** — a consumer of upstream data, not a source of truth. It delegates to: + +- **ChittyAuth** — identity and token validation +- **ChittyFinance** — financial data aggregation +- **ChittyScrape** — browser automation for portals without APIs +- **ChittyLedger** — evidence and document ledger +- **ChittyConnect** — inter-service discovery and connectivity +- **ChittySchema** — canonical schema validation +- **ChittyRegister** — service registration and beacon heartbeats diff --git a/.github/org-governance-policy.json b/.github/org-governance-policy.json new file mode 100644 index 0000000..08e8468 --- /dev/null +++ b/.github/org-governance-policy.json @@ -0,0 +1,170 @@ +{ + "orgs": [ + "CHITTYOS", + "CHITTYCORP", + "ChittyApps", + "ChitCommit", + "Furnished-Condos", + "ChicagoApps" + ], + "includeArchived": false, + "maxReposPerOrg": 0, + "requireBranchProtection": true, + "useOrgRulesets": true, + "requiredFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/reusable-governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/ISSUE_TEMPLATE/config.yml", + ".github/ISSUE_TEMPLATE/governance-exception.yml", + "CHITTY.md", + "CHARTER.md", + "docs/PERSISTENT_BRIEF.md", + ".github/release.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml", + "scripts/check-chitty-onboarding.sh", + "scripts/onepassword-rotation-audit.sh" + ], + "requiredWorkflowTriggers": { + ".github/workflows/governance-gates.yml": [ + "pull_request", + "push" + ], + ".github/workflows/adversarial-review.yml": [ + "pull_request_target" + ], + ".github/workflows/identity-context-onboarding.yml": [ + "pull_request", + "push" + ], + ".github/workflows/onepassword-rotation-audit.yml": [ + "schedule", + "workflow_dispatch" + ] + }, + "requiredStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ], + "requiredApprovingReviewCount": 1, + "orgRulesets": { + "branch": { + "name": "Chitty Governance Branch Gate", + "enforcement": "active", + "conditions": { + "repository_name": { + "include": [ + "~ALL" + ], + "exclude": [] + }, + "ref_name": { + "include": [ + "~DEFAULT_BRANCH" + ], + "exclude": [] + } + }, + "rules": { + "pull_request": { + "allowed_merge_methods": [ + "squash" + ], + "dismiss_stale_reviews_on_push": true, + "require_code_owner_review": false, + "require_last_push_approval": false, + "required_review_thread_resolution": true + }, + "required_status_checks": { + "do_not_enforce_on_create": false, + "strict_required_status_checks_policy": true + }, + "non_fast_forward": true, + "required_linear_history": true + } + } + }, + "repoSettings": { + "defaultBranchName": "main", + "enforceDefaultBranchName": true, + "setDefaultBranchWhenPresent": true, + "pushPolicy": { + "enabled": true, + "maxRefUpdates": 10 + } + }, + "projectAutomation": { + "enabled": false, + "org": "CHITTYOS", + "projectNumber": 0 + }, + "issueManagement": { + "labels": [ + "governance", + "automation" + ], + "milestoneTitle": "Governance Compliance" + }, + "reviewDelegation": { + "enabled": true, + "delegateLoginVar": "CHITTY_REVIEW_DELEGATE_LOGIN", + "delegateTokenSecret": "CHITTY_REVIEW_DELEGATE_TOKEN" + }, + "requiredFilePatterns": { + "CHITTY.md": [ + "context_brief:", + "chitty:discovery-links:start", + "three-aspects-framework", + "written-to-chittydna", + "not an authority source" + ], + "CHARTER.md": [ + "context_brief:", + "chitty:discovery-links:start", + "three-aspects-framework", + "written-to-chittydna", + "not an authority source" + ], + "docs/PERSISTENT_BRIEF.md": [ + "Persistent Brief", + "Discovery Anchors", + "TY/VY/RY framework" + ], + ".github/ISSUE_TEMPLATE/config.yml": [ + "blank_issues_enabled:", + "contact_links:" + ], + ".github/ISSUE_TEMPLATE/governance-exception.yml": [ + "Governance Exception Request", + "exception-request", + "Attestations" + ], + ".github/release.yml": [ + "changelog:" + ], + ".chittyconnect.yml": [ + "onboarding:", + "provisions:", + "chitty_id:", + "service_token:", + "certificate:", + "trust_chain:", + "context_consciousness:", + "enabled:", + "chittydna:", + "memorycloude:", + "synthetic_entity:", + "type:", + "classification:", + "authority_scope:", + "access_scope:", + "actor_binding:" + ] + }, + "complianceIssueTitle": "[Governance] CI/CD compliance gaps" +} diff --git a/.github/release.yml b/.github/release.yml new file mode 100644 index 0000000..6dc5584 --- /dev/null +++ b/.github/release.yml @@ -0,0 +1,17 @@ +changelog: + categories: + - title: "Features" + labels: + - "feature" + - "enhancement" + - title: "Fixes" + labels: + - "bug" + - "fix" + - title: "Maintenance" + labels: + - "chore" + - "dependencies" + exclude: + labels: + - "skip-changelog" diff --git a/.github/secret-catalog.json b/.github/secret-catalog.json new file mode 100644 index 0000000..bb7b9c5 --- /dev/null +++ b/.github/secret-catalog.json @@ -0,0 +1,29 @@ +{ + "vault": "ChittyOS", + "secrets": [ + { + "name": "ORG_AUTOMATION_TOKEN", + "op_ref": "op://ChittyOS/GitHub Automation Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTYCONNECT_BROKER_TOKEN", + "op_ref": "op://ChittyOS/ChittyConnect Broker Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTY_GATEWAY_TOKEN", + "op_ref": "op://ChittyOS/ChittyGateway API Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTY_AGENT_TOKEN", + "op_ref": "op://ChittyOS/ChittyAgent Orchestrator Token/token", + "rotation_days": 30, + "owner": "platform-security" + } + ] +} diff --git a/.github/workflows/adversarial-review.yml b/.github/workflows/adversarial-review.yml new file mode 100644 index 0000000..721d9e0 --- /dev/null +++ b/.github/workflows/adversarial-review.yml @@ -0,0 +1,64 @@ +name: Adversarial Review Orchestrator + +on: + pull_request_target: + types: [opened, reopened, synchronize, ready_for_review] + +permissions: + contents: read + pull-requests: write + issues: write + +jobs: + orchestrate: + runs-on: ubuntu-latest + env: + REQUEST_REVIEWERS: ${{ vars.CHITTY_REQUEST_REVIEWERS || 'coderabbitai' }} + REVIEW_TAG_SEQUENCE: ${{ vars.CHITTY_REVIEW_TAG_SEQUENCE || '@coderabbitai review||@copilot review||@codex review||@claude review' }} + steps: + - name: Request Reviewer Agents + uses: actions/github-script@v7 + with: + script: | + const reviewers = (process.env.REQUEST_REVIEWERS || "") + .split(",") + .map((v) => v.trim()) + .filter(Boolean); + const succeeded = []; + const failed = []; + for (const reviewer of reviewers) { + try { + await github.rest.pulls.requestReviewers({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.payload.pull_request.number, + reviewers: [reviewer] + }); + succeeded.push(reviewer); + } catch (error) { + failed.push(`${reviewer}: ${error.message}`); + } + } + core.info(`Requested reviewers success: ${succeeded.join(", ") || "none"}`); + if (failed.length > 0) { + core.warning(`Reviewer request failures: ${failed.join(" | ")}`); + } + - name: Trigger Bot Review Comments (Sequenced) + uses: actions/github-script@v7 + with: + script: | + const sequence = (process.env.REVIEW_TAG_SEQUENCE || "") + .split("||") + .map((v) => v.trim()) + .filter(Boolean); + const lines = []; + sequence.forEach((tag, index) => { + lines.push(`${index + 1}. ${tag}`); + }); + lines.push("Adversarial review request: evaluate security, policy bypass paths, regression risk, and merge-gating bypass attempts."); + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.payload.pull_request.number, + body: lines.join("\n") + }); diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..56c5fc7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,84 @@ +name: CI + +on: + pull_request: + push: + branches: [ main ] + +jobs: + workflow-secret-policy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Enforce Workflow Secret Allowlist + shell: bash + run: | + set -euo pipefail + secrets_in_use="$(grep -RhoE '\$\{\{\s*secrets(\.[A-Za-z_][A-Za-z0-9_]*|\['"'"'\"[A-Za-z_][A-Za-z0-9_]*'"'"'\"\])\s*\}\}' .github/workflows \ + | sed -E "s/.*secrets[.\['\"]([A-Za-z_][A-Za-z0-9_]*).*/\1/" \ + | sort -u || true)" + + if [[ -z "${secrets_in_use}" ]]; then + echo "No workflow secrets in use." + exit 0 + fi + + if [[ ! -f .github/allowed-workflow-secrets.txt ]]; then + echo "Missing .github/allowed-workflow-secrets.txt" + exit 1 + fi + + disallowed=0 + while IFS= read -r secret_name; do + [[ -z "${secret_name}" ]] && continue + if ! grep -qx "${secret_name}" .github/allowed-workflow-secrets.txt; then + echo "Disallowed workflow secret reference: ${secret_name}" + disallowed=1 + fi + done <<< "${secrets_in_use}" + + if [[ "${disallowed}" -ne 0 ]]; then + echo "Workflow secret policy check failed." + exit 1 + fi + + secret-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Gitleaks + shell: bash + run: | + set -euo pipefail + GL_VERSION="8.30.0" + curl -sSL "https://github.com/gitleaks/gitleaks/releases/download/v${GL_VERSION}/gitleaks_${GL_VERSION}_linux_x64.tar.gz" -o /tmp/gitleaks.tgz + tar -xzf /tmp/gitleaks.tgz -C /tmp gitleaks + /tmp/gitleaks version + - name: Scan Git History + run: /tmp/gitleaks git --config .gitleaks.toml --redact --log-opts="--all" --exit-code 1 + + build: + runs-on: ubuntu-latest + needs: + - workflow-secret-policy + - secret-scan + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: '20' + cache: 'npm' + - name: Install + run: npm ci + - name: Dependency Audit + run: npm audit --audit-level=high + - name: Typecheck + run: npx tsc -p tsconfig.json --noEmit + - name: Test + run: npm test + - name: Governance Pressure Tests + run: bash scripts/pressure-test-governance.sh + - name: Lint (skipped) + run: echo "no linter configured" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..190eb00 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,27 @@ +name: "CodeQL" + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + security-events: write + contents: read + strategy: + matrix: + language: [javascript-typescript] + steps: + - uses: actions/checkout@v4 + - uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + - uses: github/codeql-action/autobuild@v3 + - uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/deploy-worker.yml b/.github/workflows/deploy-worker.yml new file mode 100644 index 0000000..1fac2f4 --- /dev/null +++ b/.github/workflows/deploy-worker.yml @@ -0,0 +1,19 @@ +name: Deploy Worker + +on: + workflow_dispatch: + push: + branches: [ main ] + paths: + - 'src/**' + - 'wrangler.toml' + - '.github/workflows/deploy-worker.yml' + +jobs: + deploy: + uses: CHITTYOS/chittyops/.github/workflows/reusable-worker-deploy.yml@main + with: + service_name: chittycommand + secrets: + CHITTYCONNECT_API_KEY: ${{ secrets.CHITTYCONNECT_API_KEY }} + diff --git a/.github/workflows/getchitty-creds-example.yml b/.github/workflows/getchitty-creds-example.yml new file mode 100644 index 0000000..7e3d29f --- /dev/null +++ b/.github/workflows/getchitty-creds-example.yml @@ -0,0 +1,23 @@ +name: Example - Get Chitty Creds + +on: + workflow_dispatch: + +jobs: + creds: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Fetch ephemeral creds via ChittyConnect + id: creds + uses: CHITTYOS/chittyops/.github/actions/getchitty-creds@main + with: + api_key: ${{ secrets.CHITTYCONNECT_API_KEY }} + purpose: 'ci-test' + service: 'chittycommand' + - name: Show outputs (redacted) + run: | + echo "account_id=${{ steps.creds.outputs.account_id }}" + echo "cloudflare_token set: ${{ steps.creds.outputs.cloudflare_token != '' }}" + echo "npm_token set: ${{ steps.creds.outputs.npm_token != '' }}" + diff --git a/.github/workflows/governance-gates.yml b/.github/workflows/governance-gates.yml new file mode 100644 index 0000000..a5bb376 --- /dev/null +++ b/.github/workflows/governance-gates.yml @@ -0,0 +1,46 @@ +name: Governance Gates + +on: + pull_request: + push: + branches: [ main ] + +jobs: + gates: + uses: ./.github/workflows/reusable-governance-gates.yml + secrets: inherit + + notify-org-control-loop: + needs: gates + runs-on: ubuntu-latest + permissions: + contents: read + env: + CONTROL_REPO: ${{ vars.CHITTY_GOVERNANCE_CONTROL_REPO || 'CHITTYOS/chittycommand' }} + DISPATCH_TOKEN: ${{ secrets.CHITTY_GOVERNANCE_DISPATCH_TOKEN }} + SOURCE_REPO: ${{ github.repository }} + SOURCE_EVENT: ${{ github.event_name }} + SOURCE_REF: ${{ github.ref }} + SOURCE_SHA: ${{ github.sha }} + SOURCE_PR: ${{ github.event.pull_request.number || '' }} + steps: + - name: Dispatch Governance Signal + shell: bash + run: | + set -euo pipefail + if [[ -z "${DISPATCH_TOKEN:-}" ]]; then + echo "CHITTY_GOVERNANCE_DISPATCH_TOKEN not configured; skipping dispatch." + exit 0 + fi + payload="$(jq -nc \ + --arg source_repo "${SOURCE_REPO}" \ + --arg source_event "${SOURCE_EVENT}" \ + --arg source_ref "${SOURCE_REF}" \ + --arg source_sha "${SOURCE_SHA}" \ + --arg source_pr "${SOURCE_PR}" \ + '{event_type:"governance-signal", client_payload:{source_repo:$source_repo,source_event:$source_event,source_ref:$source_ref,source_sha:$source_sha,source_pr:($source_pr|if .=="" then null else tonumber end)}}')" + curl -fsS -X POST "https://api.github.com/repos/${CONTROL_REPO}/dispatches" \ + -H "Authorization: Bearer ${DISPATCH_TOKEN}" \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + -d "${payload}" >/dev/null diff --git a/.github/workflows/identity-context-onboarding.yml b/.github/workflows/identity-context-onboarding.yml new file mode 100644 index 0000000..81e996c --- /dev/null +++ b/.github/workflows/identity-context-onboarding.yml @@ -0,0 +1,17 @@ +name: Identity & Context Onboarding Gate + +on: + pull_request: + push: + branches: [ main ] + +jobs: + identity-onboarding: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Validate ChittyID Context Onboarding + shell: bash + run: | + set -euo pipefail + bash scripts/check-chitty-onboarding.sh .chittyconnect.yml diff --git a/.github/workflows/onepassword-rotation-audit.yml b/.github/workflows/onepassword-rotation-audit.yml new file mode 100644 index 0000000..55435a7 --- /dev/null +++ b/.github/workflows/onepassword-rotation-audit.yml @@ -0,0 +1,56 @@ +name: 1Password Rotation Audit + +on: + workflow_dispatch: + schedule: + - cron: "25 3 * * *" + +permissions: + contents: read + issues: write + +jobs: + audit: + runs-on: ubuntu-latest + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate required secrets + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN"; exit 1; } + [[ -n "${OP_SERVICE_ACCOUNT_TOKEN:-}" ]] || { echo "Missing OP_SERVICE_ACCOUNT_TOKEN"; exit 1; } + - name: Install 1Password CLI + uses: 1password/install-cli-action@v1 + - name: Run rotation audit + id: rotation + shell: bash + run: | + set -euo pipefail + mkdir -p reports/secret-rotation + if bash scripts/onepassword-rotation-audit.sh .github/secret-catalog.json reports/secret-rotation; then + echo "status=pass" >> "$GITHUB_OUTPUT" + else + echo "status=fail" >> "$GITHUB_OUTPUT" + fi + - name: Upload rotation report + uses: actions/upload-artifact@v4 + with: + name: onepassword-rotation-report + path: reports/secret-rotation + - name: Open or update rotation issue on failure + if: ${{ steps.rotation.outputs.status == 'fail' }} + shell: bash + run: | + set -euo pipefail + title="[Security] 1Password rotation policy violations" + body="$(cat reports/secret-rotation/latest.md)" + existing="$(gh issue list --state open --search "\"${title}\" in:title" --json number,title --jq '.[] | select(.title=="'"${title}"'") | .number' | head -n1 || true)" + if [[ -n "${existing}" ]]; then + gh issue comment "${existing}" --body "${body}" >/dev/null + else + gh issue create --title "${title}" --body "${body}" >/dev/null + fi diff --git a/.github/workflows/org-governance-control-loop.yml b/.github/workflows/org-governance-control-loop.yml new file mode 100644 index 0000000..4ca5711 --- /dev/null +++ b/.github/workflows/org-governance-control-loop.yml @@ -0,0 +1,368 @@ +name: Org Governance Control Loop + +on: + workflow_dispatch: + inputs: + mode: + description: "report | remediate | remediate_pr" + required: false + default: "remediate" + type: choice + options: + - report + - remediate + - remediate_pr + orgs: + description: "Optional comma-separated override org list" + required: false + default: "" + type: string + schedule: + - cron: "15 */6 * * *" + repository_dispatch: + types: + - governance-signal + +concurrency: + group: org-governance-control-loop + cancel-in-progress: false + +permissions: + contents: read + issues: write + pull-requests: write + +jobs: + audit: + runs-on: ubuntu-latest + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + CHITTY_DISPATCH_STRICT: "true" + CHITTYCONNECT_ACCESS_BROKER_URL: ${{ vars.CHITTYCONNECT_ACCESS_BROKER_URL }} + CHITTYCONNECT_BROKER_TOKEN: ${{ secrets.CHITTYCONNECT_BROKER_TOKEN }} + CHITTY_GATEWAY_DISPATCH_URL: ${{ vars.CHITTY_GATEWAY_DISPATCH_URL }} + CHITTY_GATEWAY_TOKEN: ${{ secrets.CHITTY_GATEWAY_TOKEN }} + CHITTY_AGENT_ORCHESTRATOR_URL: ${{ vars.CHITTY_AGENT_ORCHESTRATOR_URL }} + CHITTY_AGENT_TOKEN: ${{ secrets.CHITTY_AGENT_TOKEN }} + CHITTY_REVIEW_DELEGATION_MODE: ${{ vars.CHITTY_REVIEW_DELEGATION_MODE || 'approve' }} + CHITTY_REVIEW_DELEGATE_TOKEN: ${{ secrets.CHITTY_REVIEW_DELEGATE_TOKEN }} + CHITTY_REVIEW_DELEGATE_LOGIN: ${{ vars.CHITTY_REVIEW_DELEGATE_LOGIN || '' }} + CHITTY_REVIEW_QUEUE_DIR: reports/review-delegate-queue + WORKFLOW_INPUT_ORGS: ${{ inputs.orgs || '' }} + EVENT_SOURCE_REPO: ${{ github.event.client_payload.source_repo || '' }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + if [[ -z "${GH_TOKEN:-}" ]]; then + echo "Missing ORG_AUTOMATION_TOKEN secret" + exit 1 + fi + if [[ -z "${CHITTYCONNECT_ACCESS_BROKER_URL:-}" ]]; then + echo "Missing CHITTYCONNECT_ACCESS_BROKER_URL repo/org variable" + exit 1 + fi + if [[ -z "${CHITTYCONNECT_BROKER_TOKEN:-}" ]]; then + echo "Missing CHITTYCONNECT_BROKER_TOKEN secret" + exit 1 + fi + - name: Audit org governance + shell: bash + run: | + set -euo pipefail + args=(--policy .github/org-governance-policy.json --out-dir reports/org-governance) + if [[ -n "${WORKFLOW_INPUT_ORGS}" ]]; then + IFS=',' read -ra orgs <<< "${WORKFLOW_INPUT_ORGS}" + for org in "${orgs[@]}"; do + args+=(--org "${org}") + done + elif [[ -n "${EVENT_SOURCE_REPO}" ]]; then + event_org="${EVENT_SOURCE_REPO%%/*}" + if [[ -n "${event_org}" ]]; then + args+=(--org "${event_org}") + fi + fi + bash scripts/org-governance-audit.sh "${args[@]}" + - name: Upload report artifact + uses: actions/upload-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + + enforce-org-rulesets: + needs: audit + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Enforce org rulesets + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-enforce-rulesets.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance/latest.json \ + --targets branch + + enforce-repo-settings: + needs: audit + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Enforce repository default branch and push policy + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-enforce-repo-settings.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance/latest.json + + remediate: + needs: [audit, enforce-org-rulesets, enforce-repo-settings, enforce-status-checks] + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + CHITTY_DISPATCH_STRICT: "true" + CHITTYCONNECT_ACCESS_BROKER_URL: ${{ vars.CHITTYCONNECT_ACCESS_BROKER_URL }} + CHITTYCONNECT_BROKER_TOKEN: ${{ secrets.CHITTYCONNECT_BROKER_TOKEN }} + CHITTY_GATEWAY_DISPATCH_URL: ${{ vars.CHITTY_GATEWAY_DISPATCH_URL }} + CHITTY_GATEWAY_TOKEN: ${{ secrets.CHITTY_GATEWAY_TOKEN }} + CHITTY_AGENT_ORCHESTRATOR_URL: ${{ vars.CHITTY_AGENT_ORCHESTRATOR_URL }} + CHITTY_AGENT_TOKEN: ${{ secrets.CHITTY_AGENT_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + [[ -n "${CHITTYCONNECT_ACCESS_BROKER_URL:-}" ]] || { echo "Missing CHITTYCONNECT_ACCESS_BROKER_URL variable"; exit 1; } + [[ -n "${CHITTYCONNECT_BROKER_TOKEN:-}" ]] || { echo "Missing CHITTYCONNECT_BROKER_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Remediation loop + shell: bash + run: | + set -euo pipefail + mode="${{ inputs.mode }}" + auto_pr=true + max_prs=20 + pr_sleep=0 + if [[ "${mode}" == "remediate_pr" ]]; then + auto_pr=true + fi + if [[ "${mode}" == "report" ]]; then + auto_pr=false + fi + # Scheduled runs stay intentionally slow to avoid GitHub abuse throttles. + if [[ "${{ github.event_name }}" == "schedule" ]]; then + max_prs=3 + pr_sleep=90 + fi + # Repository-dispatch runs are event-driven and scoped; keep them moderate. + if [[ "${{ github.event_name }}" == "repository_dispatch" ]]; then + max_prs=5 + pr_sleep=20 + fi + export CHITTY_PR_CREATE_SLEEP_SEC="${pr_sleep}" + bash scripts/org-governance-remediate.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance/latest.json \ + --auto-pr "${auto_pr}" \ + --max-prs "${max_prs}" + + enable-auto-merge-settings: + needs: audit + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Enforce repo auto-merge settings + shell: bash + run: | + set -euo pipefail + if ! bash scripts/org-governance-enable-auto-merge.sh --report reports/org-governance/latest.json; then + echo "Auto-merge repo settings encountered permission/config failures. Continuing control loop." + fi + + enforce-status-checks: + needs: audit + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Enforce required status checks and branch protection + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-enforce-status-checks.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance/latest.json + + integrate-governance-prs: + needs: [audit, remediate, enable-auto-merge-settings, project-sync] + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + CHITTY_DISPATCH_STRICT: "true" + CHITTYCONNECT_ACCESS_BROKER_URL: ${{ vars.CHITTYCONNECT_ACCESS_BROKER_URL }} + CHITTYCONNECT_BROKER_TOKEN: ${{ secrets.CHITTYCONNECT_BROKER_TOKEN }} + CHITTY_GATEWAY_DISPATCH_URL: ${{ vars.CHITTY_GATEWAY_DISPATCH_URL }} + CHITTY_GATEWAY_TOKEN: ${{ secrets.CHITTY_GATEWAY_TOKEN }} + CHITTY_AGENT_ORCHESTRATOR_URL: ${{ vars.CHITTY_AGENT_ORCHESTRATOR_URL }} + CHITTY_AGENT_TOKEN: ${{ secrets.CHITTY_AGENT_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: PR integration loop + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-pr-integration-loop.sh \ + --report reports/org-governance/latest.json + - name: Upload delegate review queue + if: ${{ always() }} + uses: actions/upload-artifact@v4 + with: + name: review-delegate-queue + path: reports/review-delegate-queue + + adversarial-review: + needs: [audit, remediate, integrate-governance-prs] + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + CHITTY_DISPATCH_STRICT: "true" + CHITTYCONNECT_ACCESS_BROKER_URL: ${{ vars.CHITTYCONNECT_ACCESS_BROKER_URL }} + CHITTYCONNECT_BROKER_TOKEN: ${{ secrets.CHITTYCONNECT_BROKER_TOKEN }} + CHITTY_GATEWAY_DISPATCH_URL: ${{ vars.CHITTY_GATEWAY_DISPATCH_URL }} + CHITTY_GATEWAY_TOKEN: ${{ secrets.CHITTY_GATEWAY_TOKEN }} + CHITTY_AGENT_ORCHESTRATOR_URL: ${{ vars.CHITTY_AGENT_ORCHESTRATOR_URL }} + CHITTY_AGENT_TOKEN: ${{ secrets.CHITTY_AGENT_TOKEN }} + WORKFLOW_INPUT_ORGS: ${{ inputs.orgs || '' }} + EVENT_SOURCE_REPO: ${{ github.event.client_payload.source_repo || '' }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + [[ -n "${CHITTYCONNECT_ACCESS_BROKER_URL:-}" ]] || { echo "Missing CHITTYCONNECT_ACCESS_BROKER_URL variable"; exit 1; } + [[ -n "${CHITTYCONNECT_BROKER_TOKEN:-}" ]] || { echo "Missing CHITTYCONNECT_BROKER_TOKEN secret"; exit 1; } + - name: Independent re-audit + shell: bash + run: | + set -euo pipefail + args=(--policy .github/org-governance-policy.json --out-dir reports/org-governance-adversarial) + if [[ -n "${WORKFLOW_INPUT_ORGS}" ]]; then + IFS=',' read -ra orgs <<< "${WORKFLOW_INPUT_ORGS}" + for org in "${orgs[@]}"; do + args+=(--org "${org}") + done + elif [[ -n "${EVENT_SOURCE_REPO}" ]]; then + event_org="${EVENT_SOURCE_REPO%%/*}" + if [[ -n "${event_org}" ]]; then + args+=(--org "${event_org}") + fi + fi + bash scripts/org-governance-audit.sh "${args[@]}" + - name: Adversarial review loop + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-adversarial-review.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance-adversarial/latest.json + + project-sync: + needs: [audit, remediate] + runs-on: ubuntu-latest + if: ${{ github.event_name == 'schedule' || github.event_name == 'repository_dispatch' || inputs.mode == 'remediate' || inputs.mode == 'remediate_pr' }} + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate Required Configuration (Fail Closed) + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN secret"; exit 1; } + - name: Download report artifact + uses: actions/download-artifact@v4 + with: + name: org-governance-report + path: reports/org-governance + - name: Sync non-compliant repos into governance project board + shell: bash + run: | + set -euo pipefail + bash scripts/org-governance-project-sync.sh \ + --policy .github/org-governance-policy.json \ + --report reports/org-governance/latest.json diff --git a/.github/workflows/reusable-governance-gates.yml b/.github/workflows/reusable-governance-gates.yml new file mode 100644 index 0000000..b1c6143 --- /dev/null +++ b/.github/workflows/reusable-governance-gates.yml @@ -0,0 +1,96 @@ +name: Reusable Governance Gates + +on: + workflow_call: + inputs: + run_dependency_audit: + required: false + type: boolean + default: true + +permissions: + contents: read + +jobs: + workflow-secret-policy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Enforce Workflow Secret Allowlist + shell: bash + run: | + set -euo pipefail + secrets_in_use="$(grep -RhoE '\$\{\{\s*secrets(\.[A-Za-z_][A-Za-z0-9_]*|\['"'"'\"[A-Za-z_][A-Za-z0-9_]*'"'"'\"\])\s*\}\}' .github/workflows \ + | sed -E "s/.*secrets[.\['\"]([A-Za-z_][A-Za-z0-9_]*).*/\1/" \ + | sort -u || true)" + + if [[ -z "${secrets_in_use}" ]]; then + echo "No workflow secrets in use." + exit 0 + fi + + if [[ ! -f .github/allowed-workflow-secrets.txt ]]; then + echo "Missing .github/allowed-workflow-secrets.txt" + exit 1 + fi + + disallowed=0 + while IFS= read -r secret_name; do + [[ -z "${secret_name}" ]] && continue + if ! grep -qx "${secret_name}" .github/allowed-workflow-secrets.txt; then + echo "Disallowed workflow secret reference: ${secret_name}" + disallowed=1 + fi + done <<< "${secrets_in_use}" + + if [[ "${disallowed}" -ne 0 ]]; then + echo "Workflow secret policy check failed." + exit 1 + fi + + secret-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Gitleaks + shell: bash + run: | + set -euo pipefail + GL_VERSION="8.30.0" + curl -sSL "https://github.com/gitleaks/gitleaks/releases/download/v${GL_VERSION}/gitleaks_${GL_VERSION}_linux_x64.tar.gz" -o /tmp/gitleaks.tgz + tar -xzf /tmp/gitleaks.tgz -C /tmp gitleaks + /tmp/gitleaks version + - name: Scan Git History + run: /tmp/gitleaks git --config .gitleaks.toml --redact --log-opts="--all" --exit-code 1 + + dependency-audit: + if: ${{ inputs.run_dependency_audit }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Detect lockfile + id: lockfile + shell: bash + run: | + set -euo pipefail + if [[ -f package-lock.json ]]; then + echo "present=true" >> "$GITHUB_OUTPUT" + else + echo "present=false" >> "$GITHUB_OUTPUT" + fi + - uses: actions/setup-node@v4 + if: ${{ steps.lockfile.outputs.present == 'true' }} + with: + node-version: "20" + cache: npm + - name: Install + if: ${{ steps.lockfile.outputs.present == 'true' }} + run: npm ci + - name: Dependency Audit (High+) + if: ${{ steps.lockfile.outputs.present == 'true' }} + run: npm audit --audit-level=high + - name: Skip Dependency Audit (no package-lock.json) + if: ${{ steps.lockfile.outputs.present != 'true' }} + run: echo "No package-lock.json found; skipping dependency audit." diff --git a/.gitignore b/.gitignore index c30b5fe..2fd18a1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,19 @@ ui/dist/ .env *.log .worktrees/ +# Local Claude/Playwright artifacts +.claude/ +.playwright-mcp/ +*.crx + +# External service repos (cloned for reference, not tracked) +_ext/ + +# Generated governance reports (timestamped artifacts) +reports/org-governance-*/report-*.json +reports/org-governance-*/report-*.jsonl +reports/org-governance-*/report-*.md + +# Build infos and OS cruft +ui/tsconfig.tsbuildinfo +.DS_Store diff --git a/.gitleaks.toml b/.gitleaks.toml new file mode 100644 index 0000000..1d01f3e --- /dev/null +++ b/.gitleaks.toml @@ -0,0 +1,12 @@ +title = "chittycommand-gitleaks-config" + +[allowlist] +description = "Known test/example files with non-production credential-like strings" +paths = [ + '''_ext/chittyid/chittycontext\.config\.js''', + '''_ext/chittyid/monitoring/scripts/setup-monitoring\.sh''', + '''_ext/chittyid/test-security\.sh''', + '''_ext/chittyid/tests/integration/chittyrouter-gateway\.test\.js''', + '''_ext/chittyid/tests/penetration/bypass-attempts\.test\.js''', + '''_ext/chittyops/project-awareness/test/qa-integration-tests\.js''', +] diff --git a/CHARTER.md b/CHARTER.md index 4d5ace7..48976e2 100644 --- a/CHARTER.md +++ b/CHARTER.md @@ -8,10 +8,28 @@ registered_with: chittycanon://core/services/canon title: "ChittyCommand Charter" certifier: chittycanon://core/services/chittycertify visibility: PUBLIC +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance --- # ChittyCommand Charter + +## Persistent Context + +- **Working memory brief**: [docs/PERSISTENT_BRIEF.md](docs/PERSISTENT_BRIEF.md) +- **Canonical governance**: `chittycanon://gov/governance` +- **TY/VY/RY framework**: `chittycanon://gov/governance#three-aspects-framework` +- **Context model**: `chittycanon://docs/tech/spec/context-schema` +- **Session governance genes**: `chittycanon://specs/chittydna-session-governance` +- **Governance DNA / earned authority**: `chittycanon://gov/governance#written-to-chittydna` + +This section is a persistent discovery hint for humans and agents. It is not an authority source. + + ## Classification - **Canonical URI**: `chittycanon://core/services/chittycommand` - **Tier**: 5 (Application) @@ -34,7 +52,8 @@ Provide a unified life management and action dashboard that ingests data from 15 - Document storage in R2 for receipts, letters, and evidence - Cron-scheduled data sync across all sources - Bridge API for inter-service data exchange (ChittyScrape, ChittyLedger) -- MCP server for Claude-driven dashboard queries +- Proxy passthrough for ChittySchema validation, ChittyCert verification, ChittyRegister requirements +- MCP server for Claude-driven queries (28 tools: financial, ledger, schema, cert, connect, chat) ### IS NOT Responsible For - Identity generation (ChittyID) @@ -57,7 +76,12 @@ Provide a unified life management and action dashboard that ingests data from 15 | Upstream | ChittyCharge | Billing data | | Upstream | ChittyScrape | Browser-based scraping for portals without APIs | | Upstream | ChittyLedger | Evidence and document ledger sync | -| Upstream | ChittyConnect | Inter-service connectivity | +| Upstream | ChittyConnect | Inter-service connectivity and discovery | +| Upstream | ChittyRouter | Unified ingestion gateway (scrape, email routing) | +| Upstream | ChittySchema | Canonical schema validation and drift detection | +| Upstream | ChittyCert | Certificate verification | +| Upstream | ChittyRegister | Service registration, beacon, compliance | +| Upstream | ChittyChat | Project/task data API | | Platform | Cloudflare Workers | Compute runtime | | Platform | Cloudflare R2 | Document storage | | Platform | Cloudflare KV | Sync state, auth tokens, service tokens | @@ -72,6 +96,17 @@ Provide a unified life management and action dashboard that ingests data from 15 |----------|--------|------|---------| | `/health` | GET | No | Health check | | `/api/v1/status` | GET | No | Service metadata | +| `/api/v1/canon` | GET | No | Canon info and registry status | +| `/api/v1/schema` | GET | No | Lightweight schema references | +| `/api/v1/beacon` | GET | No | Last beacon timestamp/status | +| `/api/v1/cert/verify` | POST | No | Verify a ChittyCert certificate | +| `/api/v1/cert/:id` | GET | No | Get certificate details | +| `/api/v1/whoami` | GET | Bearer | Identity: subject and scopes | +| `/api/v1/context` | GET/POST | Bearer | Get/Set persona, label, and tags | +| `/api/v1/connect/status` | GET | Bearer | ChittyConnect health | +| `/api/v1/connect/discover` | POST | Bearer | Resolve service URL via ChittyConnect | +| `/api/v1/ledger/evidence` | GET | Bearer | List evidence for a case via ChittyLedger | +| `/api/v1/ledger/record-custody` | POST | Bearer | Record custody entry | | `/api/dashboard/summary` | GET | Bearer | Dashboard summary with urgency scores | | `/api/accounts` | GET/POST | Bearer | Financial account management | | `/api/obligations` | GET/POST | Bearer | Bills, debts, recurring obligations | @@ -135,4 +170,4 @@ This charter is part of a synchronized documentation triad. Changes to shared fi - [x] CHITTY.md present --- -*Charter Version: 1.0.0 | Last Updated: 2026-02-23* +*Charter Version: 1.1.0 | Last Updated: 2026-03-03* diff --git a/CHITTY.md b/CHITTY.md index f90a6dd..3a1b7a6 100644 --- a/CHITTY.md +++ b/CHITTY.md @@ -8,12 +8,30 @@ registered_with: chittycanon://core/services/canon title: "ChittyCommand" certifier: chittycanon://core/services/chittycertify visibility: PUBLIC +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance --- # ChittyCommand > `chittycanon://core/services/chittycommand` | Tier 5 (Application) | command.chitty.cc + +## Persistent Context + +- **Working memory brief**: [docs/PERSISTENT_BRIEF.md](docs/PERSISTENT_BRIEF.md) +- **Canonical governance**: `chittycanon://gov/governance` +- **TY/VY/RY framework**: `chittycanon://gov/governance#three-aspects-framework` +- **Context model**: `chittycanon://docs/tech/spec/context-schema` +- **Session governance genes**: `chittycanon://specs/chittydna-session-governance` +- **Governance DNA / earned authority**: `chittycanon://gov/governance#written-to-chittydna` + +This section is a persistent discovery hint for humans and agents. It is not an authority source. + + ## What It Does Unified life management dashboard that ingests data from 15+ financial, legal, and administrative sources, scores urgency with AI, recommends actions, and executes them via APIs, email, or browser automation. @@ -76,14 +94,34 @@ See [CHARTER.md](CHARTER.md) (Dependencies section) — canonical source for the |------|--------|------|---------| | `/health` | GET | No | Health check | | `/api/v1/status` | GET | No | Service metadata | +| `/api/v1/canon` | GET | No | Canon info and registry status | +| `/api/v1/schema` | GET | No | Lightweight schema references | +| `/api/v1/beacon` | GET | No | Last beacon timestamp/status | +| `/api/v1/whoami` | GET | Bearer | Identity: subject and scopes | +| `/api/v1/context` | GET/POST | Bearer | Get/Set persona, label, and tags | +| `/api/v1/context/global` | GET/POST | Bearer (admin) | Get/Set global context for shared clients | +| `/api/v1/connect/status` | GET | Bearer | Check ChittyConnect health | +| `/api/v1/connect/discover` | POST | Bearer | Resolve service URL via ChittyConnect | +| `/api/v1/ledger/evidence` | GET | Bearer | List evidence for a case_id via ChittyLedger | +| `/api/v1/ledger/record-custody` | POST | Bearer | Record custody entry for an evidence_id | +| `/api/v1/cert/verify` | POST | No | Verify a ChittyCert certificate ID | +| `/api/v1/cert/:id` | GET | No | Get certificate details by ID | | `/api/dashboard/summary` | GET | Bearer | Dashboard summary with urgency scores | | `/api/accounts` | GET/POST | Bearer | Financial account management | | `/api/obligations` | GET/POST | Bearer | Bills, debts, recurring obligations | | `/api/disputes` | GET/POST | Bearer | Active dispute management | | `/api/legal` | GET/POST | Bearer | Legal deadlines and case data | | `/api/recommendations` | GET | Bearer | AI action recommendations | +| `/api/cashflow` | GET | Bearer | Cash flow analysis and projections | +| `/api/queue` | GET/POST | Bearer | Swipe-based action queue | +| `/api/payment-plan` | GET/POST | Bearer | Payment plan management | +| `/api/revenue` | GET | Bearer | Revenue tracking | +| `/api/email-connections` | GET/POST | Bearer | Email connection management | +| `/api/chat` | POST | Bearer | AI chat interface | +| `/auth/*` | Various | No | Login/verify flows | | `/api/bridge/*` | Various | Service | Inter-service bridge routes | -| `/mcp/*` | Various | Service | MCP server for Claude integration | +| `/api/bridge/credentials/get` | POST | Service | Allowlisted credential proxy via ChittyConnect | +| `/mcp/*` | Various | Service | MCP server (28 tools) | ## Document Triad diff --git a/CLAUDE.md b/CLAUDE.md index 821d041..4a9dcf7 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -45,7 +45,7 @@ Single Cloudflare Worker (`chittycommand`) serving API + cron. Frontend is a sep Three auth layers in `src/middleware/auth.ts`: 1. **`authMiddleware`** (`/api/*`) — KV token lookup, then ChittyAuth fallback 2. **`bridgeAuthMiddleware`** (`/api/bridge/*`) — Service token OR user token -3. **`mcpAuthMiddleware`** (`/mcp/*`) — Shared service token from KV (bypassed in dev) +3. **`mcpAuthMiddleware`** (`/mcp/*`) — ChittyAuth token validation first, shared KV service token fallback (bypassed in dev) ### Cron Schedule @@ -75,7 +75,13 @@ Three modes: - `src/lib/urgency.ts` — Deterministic urgency scoring engine - `src/lib/validators.ts` — Zod schemas for request validation - `src/routes/bridge.ts` — Inter-service bridge (scrape, ledger, finance, Plaid) -- `src/routes/mcp.ts` — MCP server for Claude integration +- `src/routes/mcp.ts` — MCP server for Claude integration (28 tools) +- `src/routes/meta.ts` — Public canon/schema/beacon + authenticated whoami +- `src/routes/connect.ts` — ChittyConnect discovery proxy (rate-limited) +- `src/routes/ledger.ts` — ChittyLedger evidence/custody passthrough +- `src/routes/context.ts` — Persona/context management (user + global) +- `src/routes/auth.ts` — Login/verify flows +- `src/routes/token-management.ts` — Admin token CRUD - `src/routes/dashboard.ts` — Dashboard summary with urgency scoring - `src/db/schema.ts` — Drizzle schema for all cc_* tables - `migrations/` — SQL migration files (0001-0007) @@ -88,3 +94,39 @@ Three modes: - R2 for document storage (zero egress) - CORS restricted to `app.command.chitty.cc`, `command.mychitty.com`, `chittycommand-ui.pages.dev`, `localhost:5173` - Service tokens stored in KV: `bridge:service_token`, `mcp:service_token`, `scrape:service_token` + +## Claude Code Setup + +Use Claude Code (or Claude Desktop with MCP support) to connect directly to the `/mcp` HTTP server. + +- Server URL: `https://command.chitty.cc/mcp` +- Transport: HTTP (JSON‑RPC 2.0, streamable HTTP) +- Auth (production): `Authorization: Bearer ` (preferred) or legacy `Authorization: Bearer ` +- Auth (dev): If `ENVIRONMENT != 'production'`, auth is bypassed + +Example client-side MCP configuration (conceptual): + +``` +{ + "mcpServers": { + "chittycommand": { + "type": "http", + "url": "https://command.chitty.cc/mcp", + "headers": { "Authorization": "Bearer " } + } + } +} +``` + +The server exposes 28 tools across 8 domains: + +**Core meta** — `get_canon_info`, `get_registry_status`, `get_schema_refs`, `whoami`, `get_context_summary` +**Financial** — `query_obligations`, `query_accounts`, `query_disputes`, `get_recommendations`, `get_cash_position`, `get_cashflow_projections` +**Ledger** — `ledger_stats`, `ledger_get_evidence`, `ledger_record_custody`, `ledger_facts`, `ledger_contradictions`, `ledger_create_case_for_dispute`, `ledger_link_case_for_dispute` +**Connect** — `connect_discover` +**ChittyChat** — `chittychat_list_projects`, `chittychat_list_tasks`, `chittychat_get_task` +**Schema** — `schema_list_types`, `schema_get`, `schema_validate`, `schema_drift` +**Cert** — `cert_verify` +**Register** — `register_requirements` + +Tools return structured JSON using MCP `content: [{ type: "json", json: ... }]` where applicable, enabling Claude Code to consume results without text parsing. diff --git a/docs/KV_SEEDING.md b/docs/KV_SEEDING.md new file mode 100644 index 0000000..5cdbb39 --- /dev/null +++ b/docs/KV_SEEDING.md @@ -0,0 +1,50 @@ +# KV Seeding (Credentials + Discovery) + +This service enforces safe access for the credentials proxy and rate limits connect discovery via KV-configured policies. + +## Keys + +- `credentials:allowlist` (JSON array) + - Allowed ref patterns (exact or prefix with `*`), e.g. `"op://ChittyOS/*"` +- `credentials:subject_allowlist` (JSON array) + - Allowed subjects like `svc:bridge-service` or `usr:` +- `credentials:token_allowlist` (JSON array, optional) + - SHA-256 hex of allowed Bearer tokens +- `credentials:rate_limit` (string int) + - Per-minute limit for credentials proxy (default 12) +- `discover:rate_limit` (string int) + - Per-minute limit for connect discovery (default 60) + +## Seeding via script + +1. Get the KV namespace id for `COMMAND_KV` (from wrangler.toml): + - `wrangler kv:namespace list | grep COMMAND_KV` +2. Run the seed script (defaults are safe): + +``` +export KV_NAMESPACE_ID= +# Optional: customize +export ALLOWLIST_JSON='["op://ChittyOS/*","op://Finance/*"]' +export SUBJECT_ALLOWLIST='["svc:bridge-service","usr:"]' +# Optional: token hashes +export TOKEN_SHA256_LIST='["",""]' +# Limits (optional) +export CRED_RATE_LIMIT=12 +export DISCOVER_RATE_LIMIT=60 + +npm run kv:seed +``` + +## Compute token hash + +``` +echo -n "$TOKEN" | shasum -a 256 | awk '{print $1}' +# or +printf %s "$TOKEN" | openssl dgst -sha256 | awk '{print $2}' +``` + +## Notes +- Ref allowlist supports prefix matches (`pattern*`). +- Requests are audited to `cc_actions_log` with redacted refs. +- Rate windows are tracked with `rate:*` keys and a 70s TTL. + diff --git a/docs/PERSISTENT_BRIEF.md b/docs/PERSISTENT_BRIEF.md new file mode 100644 index 0000000..1614d2c --- /dev/null +++ b/docs/PERSISTENT_BRIEF.md @@ -0,0 +1,53 @@ +# Persistent Brief (Working Memory) + +Last updated: 2026-03-02 +Purpose: Persistent operator intent and discovery hints for cross-session continuity. This is not canonical authority. + +## Intent Snapshot + +- Build end-to-end development automation across orgs/repos with separation of concerns and adversarial review. +- Support human and synthetic principals as first-class auditable actors. +- Minimize repeated user context setup across tools/channels/models. + +## Non-Negotiables + +- No shared unbound credentials for synthetic actors. +- Every action must be attributable to principal + session + policy decision. +- Earned authority must be based on visible ledgered outcomes. +- Governance controls must resist accidental human bypass. + +## Discovery Anchors + +- Canonical governance: `chittycanon://gov/governance` +- TY/VY/RY: `chittycanon://gov/governance#three-aspects-framework` +- Context model / trust mechanics: `chittycanon://docs/tech/spec/context-schema` +- Session genes: `chittycanon://specs/chittydna-session-governance` +- Foundation charter: `chittycanon://docs/ops/policy/chitty-canon-charter` + +## Principal Model + +- Natural principals: accountable humans and legal entities. +- Synthetic principals: separate ChittyIDs, linked ownership/delegation, auditable actions. +- Session authority: short-lived, scoped, channel-aware; no cache-only trust. + +## DNA, Trust, and Authority + +- Governance and outcomes should write to ledger/DNA history. +- Authority progression should be staged and reversible. +- Inheritance should be lineage-aware and discounted; merit is earned per entity. + +## Risk and Behavior Controls + +- Risk tiers gate what synthetic entities can do. +- Behavior profiles are policy-bound (speed, caution, escalation mode). +- High-risk actions require stricter review/delegation until trust is demonstrated. + +## Open Implementation Gaps + +- Session bootstrap is still partially fail-open in local hook chain. +- ChittyContext cache currently mixes legacy and current entity/session states. +- Canonical references exist but are not uniformly surfaced in every repo triad. + +## Update Rule + +When intent or architecture changes materially, update this file first, then sync CHITTY/CHARTER discovery links. diff --git a/docs/security/ACCESS_BROKER_AND_1PASSWORD_RUNBOOK.md b/docs/security/ACCESS_BROKER_AND_1PASSWORD_RUNBOOK.md new file mode 100644 index 0000000..c1cc7d6 --- /dev/null +++ b/docs/security/ACCESS_BROKER_AND_1PASSWORD_RUNBOOK.md @@ -0,0 +1,45 @@ +# Access Broker and 1Password Runbook + +## Principle +No agent (Claude/Codex/Copilot/CodeRabbit/custom) uses permanent shared keys. +All sensitive access is brokered by ChittyConnect using contextual signals and least-privilege scopes. + +## Access Flow (Fail Closed) +1. Agent/workflow submits access request to ChittyConnect broker with: + - repo + - operation mode + - run metadata (workflow, actor, run id) + - requested capabilities (`gateway_dispatch`, `agent_orchestrator`, etc.) +2. ChittyConnect evaluates policy and context signals. +3. If allowed, ChittyConnect returns scoped short-lived credentials and endpoint bindings. +4. Agent executes using only issued credentials. +5. If denied or broker unavailable, process exits non-zero. No fallback to common/shared key. + +## Denied Access Process (No Workaround Path) +1. Workflow fails and logs broker denial reason. +2. Compliance issue is opened/updated automatically by control loop. +3. `chittycompliance` dispatcher sends remediation task to relevant agents. +4. Human reviews policy/scope only if required. +5. After policy fix, rerun workflow. No manual shared token injection. + +## 1Password Provisioning Model +- Source of truth: `op://` references in `.github/secret-catalog.json`. +- CI uses `OP_SERVICE_ACCOUNT_TOKEN` with least privilege. +- Secrets are rotated on schedule and audited by: + - `.github/workflows/onepassword-rotation-audit.yml` + - `scripts/onepassword-rotation-audit.sh` + +## Rotation Policy +- Default rotation window: 30 days for automation credentials. +- Any stale/missing secret is non-compliant and opens/updates a security issue. +- Rotation validation is recurring and automatic. + +## Required Control Plane Configuration +- `secrets.ORG_AUTOMATION_TOKEN` +- `vars.CHITTYCONNECT_ACCESS_BROKER_URL` +- `secrets.CHITTYCONNECT_BROKER_TOKEN` +- `secrets.OP_SERVICE_ACCOUNT_TOKEN` + +Optional downstream targets (if broker returns them dynamically): +- ChittyGateway dispatch endpoint/token +- ChittyAgent orchestrator endpoint/token diff --git a/docs/security/SECRET_HISTORY_SCAN_REPORT_2026-03-01.md b/docs/security/SECRET_HISTORY_SCAN_REPORT_2026-03-01.md new file mode 100644 index 0000000..775470d --- /dev/null +++ b/docs/security/SECRET_HISTORY_SCAN_REPORT_2026-03-01.md @@ -0,0 +1,23 @@ +# Secret History Scan Report (2026-03-01) + +## Scope +- Repository: `CHITTYOS/chittycommand` +- Date: `2026-03-01` +- Objective: detect recoverable secret exposure in git history before CI hardening + +## Tools +- `gitleaks 8.30.0` + - History scan: `gitleaks git --redact --log-opts="--all" --exit-code 0` + - Worktree scan: `gitleaks dir . --redact --exit-code 0` + +## Results +- Git history findings: `0` +- Worktree findings: `11` in `_ext/` test/example content and local credentials patterns (non-history leak indicators) + +## Purge Decision +- No committed-history secrets were detected on reachable refs. +- `git filter-repo` purge was **not required** for this repository based on this scan. + +## Notes +- Local broken refs were observed (`refs/heads/main 2`, `refs/remotes/origin/main 2`) and can interfere with some custom history scans. +- If future history findings appear, perform immediate purge + rotation per the checklist in `docs/security/SECRET_ROTATION_CHECKLIST.md`. diff --git a/docs/security/SECRET_ROTATION_CHECKLIST.md b/docs/security/SECRET_ROTATION_CHECKLIST.md new file mode 100644 index 0000000..af0daf7 --- /dev/null +++ b/docs/security/SECRET_ROTATION_CHECKLIST.md @@ -0,0 +1,42 @@ +# Secret Rotation Checklist + +Use this checklist when any credential is suspected to have been exposed in git history, logs, CI artifacts, or chat output. + +## 1) Contain +- Identify affected secret types (`API key`, `OAuth client secret`, `DB password`, `service token`, `private key`). +- Disable compromised credentials immediately when possible. +- Freeze deploys until rotation is complete for production-impacting secrets. + +## 2) Rotate +- Generate replacement credentials in source systems (Cloudflare, GitHub, Neon, 1Password-backed systems, etc.). +- Update runtime secret stores first: + - GitHub Actions secrets + - Cloudflare Worker secrets / KV references + - 1Password items used by automation +- Verify old credentials are revoked, not just replaced. + +## 3) Purge History (if committed) +- Rewrite git history to remove the secret-bearing blobs using `git filter-repo`. +- Force-push rewritten refs. +- Invalidate all existing clones and CI caches that still contain old history. + +## 4) Validate +- Run secret scans on: + - git history + - worktree + - CI logs/artifacts (if applicable) +- Confirm no active tokens from the old set can authenticate. + +## 5) Recover Safely +- Re-enable deploy pipeline only after validation passes. +- Document incident timeline, impacted systems, and final revocation evidence. +- Add or tighten guards to prevent recurrence (CI secret scan, policy gate, allowlist checks). + +## Command References +```bash +# History scan +gitleaks git --redact --log-opts="--all" --exit-code 1 + +# Worktree scan +gitleaks dir . --redact --exit-code 1 +``` diff --git a/package.json b/package.json index 415bc97..da8baff 100644 --- a/package.json +++ b/package.json @@ -5,12 +5,20 @@ "description": "ChittyCommand - Unified life management & action dashboard", "scripts": { "dev": "wrangler dev", + "build": "npm run typecheck", + "typecheck": "tsc --noEmit", + "backend:typecheck": "tsc --noEmit", + "backend:build": "npm run backend:typecheck", "deploy": "wrangler deploy", + "predeploy": "npm run typecheck", "db:generate": "drizzle-kit generate", "db:migrate": "drizzle-kit migrate", + "kv:seed": "bash scripts/seed-kv.sh ${KV_NAMESPACE_ID:-}", "ui:dev": "cd ui && vite dev", "ui:build": "cd ui && vite build", - "ui:preview": "cd ui && vite preview" + "ui:preview": "cd ui && vite preview", + "test": "vitest run", + "test:watch": "vitest" }, "dependencies": { "@hono/zod-validator": "^0.7.6", diff --git a/reports/org-governance-default-smoke/latest.json b/reports/org-governance-default-smoke/latest.json new file mode 100644 index 0000000..ae564b4 --- /dev/null +++ b/reports/org-governance-default-smoke/latest.json @@ -0,0 +1,353 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-default-smoke/latest.md b/reports/org-governance-default-smoke/latest.md new file mode 100644 index 0000000..9df0990 --- /dev/null +++ b/reports/org-governance-default-smoke/latest.md @@ -0,0 +1,32 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002907Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 6 +- Compliant repos: 0 +- Non-compliant repos: 6 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 1 | 0 | 1 | +| CHITTYOS | 1 | 0 | 1 | +| ChicagoApps | 1 | 0 | 1 | +| ChitCommit | 1 | 0 | 1 | +| ChittyApps | 1 | 0 | 1 | +| Furnished-Condos | 1 | 0 | 1 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-default-smoke/report-20260302T002907Z.json b/reports/org-governance-default-smoke/report-20260302T002907Z.json new file mode 100644 index 0000000..ae564b4 --- /dev/null +++ b/reports/org-governance-default-smoke/report-20260302T002907Z.json @@ -0,0 +1,353 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-default-smoke/report-20260302T002907Z.jsonl b/reports/org-governance-default-smoke/report-20260302T002907Z.jsonl new file mode 100644 index 0000000..04d3d3e --- /dev/null +++ b/reports/org-governance-default-smoke/report-20260302T002907Z.jsonl @@ -0,0 +1,6 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChitCommit","repo":"billy-bullshit","fullRepo":"ChitCommit/billy-bullshit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"rental-manager","fullRepo":"Furnished-Condos/rental-manager","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-contradictionengine","fullRepo":"ChicagoApps/chittypro-contradictionengine","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-default-smoke/report-20260302T002907Z.md b/reports/org-governance-default-smoke/report-20260302T002907Z.md new file mode 100644 index 0000000..9df0990 --- /dev/null +++ b/reports/org-governance-default-smoke/report-20260302T002907Z.md @@ -0,0 +1,32 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002907Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 6 +- Compliant repos: 0 +- Non-compliant repos: 6 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 1 | 0 | 1 | +| CHITTYOS | 1 | 0 | 1 | +| ChicagoApps | 1 | 0 | 1 | +| ChitCommit | 1 | 0 | 1 | +| ChittyApps | 1 | 0 | 1 | +| Furnished-Condos | 1 | 0 | 1 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-full/latest.json b/reports/org-governance-full/latest.json new file mode 100644 index 0000000..e2c82ee --- /dev/null +++ b/reports/org-governance-full/latest.json @@ -0,0 +1,7421 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittybeacon", + "fullRepo": "CHITTYOS/chittybeacon", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyops", + "fullRepo": "CHITTYOS/chittyops", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyassets", + "fullRepo": "CHITTYOS/chittyassets", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyledger", + "fullRepo": "CHITTYOS/chittyledger", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymonitor", + "fullRepo": "CHITTYOS/chittymonitor", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittychronicle", + "fullRepo": "CHITTYOS/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyswarm", + "fullRepo": "CHITTYOS/chittyswarm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": ".claude", + "fullRepo": "CHITTYOS/.claude", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": ".github", + "fullRepo": "CHITTYOS/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittystandard", + "fullRepo": "CHITTYOS/chittystandard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "shared", + "fullRepo": "CHITTYOS/shared", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "docs", + "fullRepo": "CHITTYOS/docs", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "sessionsync", + "fullRepo": "CHITTYOS/sessionsync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycore", + "fullRepo": "CHITTYOS/chittycore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-cli", + "fullRepo": "CHITTYOS/chittyos-cli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittygateway", + "fullRepo": "CHITTYOS/chittygateway", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyregistry", + "fullRepo": "CHITTYOS/chittyregistry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyrouter", + "fullRepo": "CHITTYOS/chittyrouter", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycontext", + "fullRepo": "CHITTYOS/chittycontext", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect", + "fullRepo": "CHITTYOS/chittyconnect", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp", + "fullRepo": "CHITTYOS/chittymcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "mcp-cloudflare-authless", + "fullRepo": "CHITTYOS/mcp-cloudflare-authless", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-workspace", + "fullRepo": "CHITTYOS/chittyos-workspace", + "defaultBranch": "session-8c21b5bf", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyserv", + "fullRepo": "CHITTYOS/chittyserv", + "defaultBranch": "claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittydiscovery", + "fullRepo": "CHITTYOS/chittydiscovery", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyintel", + "fullRepo": "CHITTYOS/chittyintel", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyapi", + "fullRepo": "CHITTYOS/chittyapi", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-desktop-connector", + "fullRepo": "CHITTYOS/chitty-desktop-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-mobile-connector", + "fullRepo": "CHITTYOS/chitty-mobile-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent", + "fullRepo": "CHITTYOS/chittyagent", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 6, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 7, + "score": 20, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycli", + "fullRepo": "CHITTYOS/chittycli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp-github", + "fullRepo": "CHITTYOS/chittymcp-github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "shell-plugins", + "fullRepo": "CHITTYOS/shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittystorage", + "fullRepo": "CHITTYOS/chittystorage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "op-shell-plugins", + "fullRepo": "CHITTYOS/op-shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittysync", + "fullRepo": "CHITTYOS/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyhelper", + "fullRepo": "CHITTYOS/chittyhelper", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycan", + "fullRepo": "CHITTYOS/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "get-chitty", + "fullRepo": "CHITTYOS/get-chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "legal-cases", + "fullRepo": "CHITTYOS/legal-cases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect-finance", + "fullRepo": "CHITTYOS/chittyconnect-finance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-issue-resolver", + "fullRepo": "CHITTYOS/chitty-issue-resolver", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent-local", + "fullRepo": "CHITTYOS/chittyagent-local", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 1, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 2, + "score": 5, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconcierge", + "fullRepo": "CHITTYOS/chittyconcierge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyevidence-db", + "fullRepo": "CHITTYOS/chittyevidence-db", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycommand", + "fullRepo": "CHITTYOS/chittycommand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymac", + "fullRepo": "CHITTYOS/chittymac", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittytrack", + "fullRepo": "CHITTYOS/chittytrack", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 3, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittydisputes", + "fullRepo": "CHITTYOS/chittydisputes", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyscrape", + "fullRepo": "CHITTYOS/chittyscrape", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittychronicle", + "fullRepo": "CHITTYCORP/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": ".github", + "fullRepo": "CHITTYCORP/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyreception", + "fullRepo": "CHITTYCORP/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "CHITTYCOUNSEL", + "fullRepo": "CHITTYCORP/CHITTYCOUNSEL", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittytrace", + "fullRepo": "ChittyApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyformfill", + "fullRepo": "ChittyApps/chittyformfill", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyflow", + "fullRepo": "ChittyApps/chittyflow", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyresolution", + "fullRepo": "ChittyApps/chittyresolution", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat", + "fullRepo": "ChittyApps/chittychat", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyforge", + "fullRepo": "ChittyApps/chittyforge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyevidence", + "fullRepo": "ChittyApps/chittyevidence", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycloude-mcp", + "fullRepo": "ChittyApps/chittycloude-mcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ecosystem", + "fullRepo": "ChittyApps/ecosystem", + "defaultBranch": "claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": ".github", + "fullRepo": "ChittyApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycontextual", + "fullRepo": "ChittyApps/chittycontextual", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydashboard", + "fullRepo": "ChittyApps/chittydashboard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycleaner", + "fullRepo": "ChittyApps/chittycleaner", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyinsight", + "fullRepo": "ChittyApps/chittyinsight", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "integrateit", + "fullRepo": "ChittyApps/integrateit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat-sessions", + "fullRepo": "ChittyApps/chittychat-sessions", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyportal", + "fullRepo": "ChittyApps/chittyportal", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycharge", + "fullRepo": "ChittyApps/chittycharge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chitty", + "fullRepo": "ChittyApps/chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan", + "fullRepo": "ChittyApps/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyauth-app", + "fullRepo": "ChittyApps/chittyauth-app", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyreception", + "fullRepo": "ChittyApps/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "bane", + "fullRepo": "ChittyApps/bane", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan-worker", + "fullRepo": "ChittyApps/chittycan-worker", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittypm", + "fullRepo": "ChittyApps/chittypm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittysync", + "fullRepo": "ChittyApps/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyxl", + "fullRepo": "ChittyApps/chittyxl", + "defaultBranch": "claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ch1tty", + "fullRepo": "ChittyApps/ch1tty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydocumint", + "fullRepo": "ChittyApps/chittydocumint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybooks", + "fullRepo": "ChittyApps/chittybooks", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybrand", + "fullRepo": "ChittyApps/chittybrand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ChittyAutomate-Google", + "fullRepo": "ChittyApps/ChittyAutomate-Google", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyproof", + "fullRepo": "ChittyApps/chittyproof", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "documint", + "fullRepo": "ChittyApps/documint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chitty-imessage", + "fullRepo": "ChittyApps/chitty-imessage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydlvr", + "fullRepo": "ChittyApps/chittydlvr", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyagent-studio", + "fullRepo": "ChittyApps/chittyagent-studio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "chittypro-streamlink", + "fullRepo": "ChitCommit/chittypro-streamlink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "shitcommit", + "fullRepo": "ChitCommit/shitcommit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-agent", + "fullRepo": "Furnished-Condos/lease-agent", + "defaultBranch": "replit-agent", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-wiz", + "fullRepo": "Furnished-Condos/lease-wiz", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicobuzzer", + "fullRepo": "Furnished-Condos/chicobuzzer", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyentry", + "fullRepo": "Furnished-Condos/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicago", + "fullRepo": "Furnished-Condos/chicago", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyrental", + "fullRepo": "Furnished-Condos/chittyrental", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "evict-assist", + "fullRepo": "Furnished-Condos/evict-assist", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "property-page", + "fullRepo": "Furnished-Condos/property-page", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "dynamic-data", + "fullRepo": "Furnished-Condos/dynamic-data", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": ".github", + "fullRepo": "Furnished-Condos/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "remote-mcp-server", + "fullRepo": "Furnished-Condos/remote-mcp-server", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "demo-repository", + "fullRepo": "Furnished-Condos/demo-repository", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "llm-chat-app-template", + "fullRepo": "Furnished-Condos/llm-chat-app-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "react-router-starter-template", + "fullRepo": "Furnished-Condos/react-router-starter-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittytrace", + "fullRepo": "ChicagoApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-credit", + "fullRepo": "ChicagoApps/chittypro-credit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-legallink", + "fullRepo": "ChicagoApps/chittypro-legallink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": ".github", + "fullRepo": "ChicagoApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-crtlo", + "fullRepo": "ChicagoApps/chittypro-crtlo", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "divorcio", + "fullRepo": "ChicagoApps/divorcio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-full/latest.md b/reports/org-governance-full/latest.md new file mode 100644 index 0000000..4a21982 --- /dev/null +++ b/reports/org-governance-full/latest.md @@ -0,0 +1,150 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T013423Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 124 +- Compliant repos: 0 +- Non-compliant repos: 124 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 6 | 0 | 6 | +| CHITTYOS | 52 | 0 | 52 | +| ChicagoApps | 8 | 0 | 8 | +| ChitCommit | 3 | 0 | 3 | +| ChittyApps | 39 | 0 | 39 | +| Furnished-Condos | 16 | 0 | 16 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyverify | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittybeacon | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyops | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyassets | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyledger | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymonitor | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyswarm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/.claude | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittystandard | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/shared | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/docs | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/sessionsync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycore | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyos-cli | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittygateway | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyregistry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyrouter | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycontext | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconnect | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymcp | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/mcp-cloudflare-authless | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyos-workspace | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyserv | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittydiscovery | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyintel | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyapi | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-desktop-connector | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-mobile-connector | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyagent | 20% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycli | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymcp-github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/shell-plugins | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittystorage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/op-shell-plugins | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittysync | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyhelper | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycan | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/get-chitty | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/legal-cases | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconnect-finance | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-issue-resolver | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyagent-local | 5% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconcierge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyevidence-db | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycommand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymac | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittytrack | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittydisputes | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyscrape | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/CHITTYCOUNSEL | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittylanding | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyformfill | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyflow | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyresolution | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyforge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyevidence | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycloude-mcp | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ecosystem | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycontextual | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydashboard | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycleaner | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyinsight | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/integrateit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat-sessions | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyportal | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycharge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chitty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyauth-app | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/bane | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan-worker | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittypm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittysync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyxl | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ch1tty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydocumint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybooks | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybrand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ChittyAutomate-Google | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyproof | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/documint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chitty-imessage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydlvr | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyagent-studio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/chittypro-streamlink | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/shitcommit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-agent | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-wiz | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicobuzzer | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyentry | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicago | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyrental | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/evict-assist | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/property-page | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/dynamic-data | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/remote-mcp-server | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/demo-repository | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/llm-chat-app-template | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/react-router-starter-template | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-credit | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-legallink | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-crtlo | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/divorcio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-full/report-20260302T013423Z.json b/reports/org-governance-full/report-20260302T013423Z.json new file mode 100644 index 0000000..e2c82ee --- /dev/null +++ b/reports/org-governance-full/report-20260302T013423Z.json @@ -0,0 +1,7421 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittybeacon", + "fullRepo": "CHITTYOS/chittybeacon", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyops", + "fullRepo": "CHITTYOS/chittyops", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyassets", + "fullRepo": "CHITTYOS/chittyassets", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyledger", + "fullRepo": "CHITTYOS/chittyledger", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymonitor", + "fullRepo": "CHITTYOS/chittymonitor", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittychronicle", + "fullRepo": "CHITTYOS/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyswarm", + "fullRepo": "CHITTYOS/chittyswarm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": ".claude", + "fullRepo": "CHITTYOS/.claude", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": ".github", + "fullRepo": "CHITTYOS/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittystandard", + "fullRepo": "CHITTYOS/chittystandard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "shared", + "fullRepo": "CHITTYOS/shared", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "docs", + "fullRepo": "CHITTYOS/docs", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "sessionsync", + "fullRepo": "CHITTYOS/sessionsync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycore", + "fullRepo": "CHITTYOS/chittycore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-cli", + "fullRepo": "CHITTYOS/chittyos-cli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittygateway", + "fullRepo": "CHITTYOS/chittygateway", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyregistry", + "fullRepo": "CHITTYOS/chittyregistry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyrouter", + "fullRepo": "CHITTYOS/chittyrouter", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycontext", + "fullRepo": "CHITTYOS/chittycontext", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect", + "fullRepo": "CHITTYOS/chittyconnect", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp", + "fullRepo": "CHITTYOS/chittymcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "mcp-cloudflare-authless", + "fullRepo": "CHITTYOS/mcp-cloudflare-authless", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-workspace", + "fullRepo": "CHITTYOS/chittyos-workspace", + "defaultBranch": "session-8c21b5bf", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyserv", + "fullRepo": "CHITTYOS/chittyserv", + "defaultBranch": "claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittydiscovery", + "fullRepo": "CHITTYOS/chittydiscovery", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyintel", + "fullRepo": "CHITTYOS/chittyintel", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyapi", + "fullRepo": "CHITTYOS/chittyapi", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-desktop-connector", + "fullRepo": "CHITTYOS/chitty-desktop-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-mobile-connector", + "fullRepo": "CHITTYOS/chitty-mobile-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent", + "fullRepo": "CHITTYOS/chittyagent", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 6, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 7, + "score": 20, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycli", + "fullRepo": "CHITTYOS/chittycli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp-github", + "fullRepo": "CHITTYOS/chittymcp-github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "shell-plugins", + "fullRepo": "CHITTYOS/shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittystorage", + "fullRepo": "CHITTYOS/chittystorage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "op-shell-plugins", + "fullRepo": "CHITTYOS/op-shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittysync", + "fullRepo": "CHITTYOS/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyhelper", + "fullRepo": "CHITTYOS/chittyhelper", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycan", + "fullRepo": "CHITTYOS/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "get-chitty", + "fullRepo": "CHITTYOS/get-chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "legal-cases", + "fullRepo": "CHITTYOS/legal-cases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect-finance", + "fullRepo": "CHITTYOS/chittyconnect-finance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chitty-issue-resolver", + "fullRepo": "CHITTYOS/chitty-issue-resolver", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent-local", + "fullRepo": "CHITTYOS/chittyagent-local", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 1, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 2, + "score": 5, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyconcierge", + "fullRepo": "CHITTYOS/chittyconcierge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyevidence-db", + "fullRepo": "CHITTYOS/chittyevidence-db", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittycommand", + "fullRepo": "CHITTYOS/chittycommand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittymac", + "fullRepo": "CHITTYOS/chittymac", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittytrack", + "fullRepo": "CHITTYOS/chittytrack", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 3, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittydisputes", + "fullRepo": "CHITTYOS/chittydisputes", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyscrape", + "fullRepo": "CHITTYOS/chittyscrape", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittychronicle", + "fullRepo": "CHITTYCORP/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": ".github", + "fullRepo": "CHITTYCORP/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyreception", + "fullRepo": "CHITTYCORP/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "CHITTYCOUNSEL", + "fullRepo": "CHITTYCORP/CHITTYCOUNSEL", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittytrace", + "fullRepo": "ChittyApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyformfill", + "fullRepo": "ChittyApps/chittyformfill", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyflow", + "fullRepo": "ChittyApps/chittyflow", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyresolution", + "fullRepo": "ChittyApps/chittyresolution", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat", + "fullRepo": "ChittyApps/chittychat", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyforge", + "fullRepo": "ChittyApps/chittyforge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyevidence", + "fullRepo": "ChittyApps/chittyevidence", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycloude-mcp", + "fullRepo": "ChittyApps/chittycloude-mcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ecosystem", + "fullRepo": "ChittyApps/ecosystem", + "defaultBranch": "claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": ".github", + "fullRepo": "ChittyApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycontextual", + "fullRepo": "ChittyApps/chittycontextual", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydashboard", + "fullRepo": "ChittyApps/chittydashboard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycleaner", + "fullRepo": "ChittyApps/chittycleaner", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyinsight", + "fullRepo": "ChittyApps/chittyinsight", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "integrateit", + "fullRepo": "ChittyApps/integrateit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat-sessions", + "fullRepo": "ChittyApps/chittychat-sessions", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyportal", + "fullRepo": "ChittyApps/chittyportal", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycharge", + "fullRepo": "ChittyApps/chittycharge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chitty", + "fullRepo": "ChittyApps/chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan", + "fullRepo": "ChittyApps/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyauth-app", + "fullRepo": "ChittyApps/chittyauth-app", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyreception", + "fullRepo": "ChittyApps/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "bane", + "fullRepo": "ChittyApps/bane", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan-worker", + "fullRepo": "ChittyApps/chittycan-worker", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittypm", + "fullRepo": "ChittyApps/chittypm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittysync", + "fullRepo": "ChittyApps/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyxl", + "fullRepo": "ChittyApps/chittyxl", + "defaultBranch": "claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ch1tty", + "fullRepo": "ChittyApps/ch1tty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydocumint", + "fullRepo": "ChittyApps/chittydocumint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybooks", + "fullRepo": "ChittyApps/chittybooks", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybrand", + "fullRepo": "ChittyApps/chittybrand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ChittyAutomate-Google", + "fullRepo": "ChittyApps/ChittyAutomate-Google", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyproof", + "fullRepo": "ChittyApps/chittyproof", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "documint", + "fullRepo": "ChittyApps/documint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chitty-imessage", + "fullRepo": "ChittyApps/chitty-imessage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydlvr", + "fullRepo": "ChittyApps/chittydlvr", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyagent-studio", + "fullRepo": "ChittyApps/chittyagent-studio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "chittypro-streamlink", + "fullRepo": "ChitCommit/chittypro-streamlink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "shitcommit", + "fullRepo": "ChitCommit/shitcommit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-agent", + "fullRepo": "Furnished-Condos/lease-agent", + "defaultBranch": "replit-agent", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-wiz", + "fullRepo": "Furnished-Condos/lease-wiz", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicobuzzer", + "fullRepo": "Furnished-Condos/chicobuzzer", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyentry", + "fullRepo": "Furnished-Condos/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicago", + "fullRepo": "Furnished-Condos/chicago", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyrental", + "fullRepo": "Furnished-Condos/chittyrental", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "evict-assist", + "fullRepo": "Furnished-Condos/evict-assist", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "property-page", + "fullRepo": "Furnished-Condos/property-page", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "dynamic-data", + "fullRepo": "Furnished-Condos/dynamic-data", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": ".github", + "fullRepo": "Furnished-Condos/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "remote-mcp-server", + "fullRepo": "Furnished-Condos/remote-mcp-server", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "demo-repository", + "fullRepo": "Furnished-Condos/demo-repository", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "llm-chat-app-template", + "fullRepo": "Furnished-Condos/llm-chat-app-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "react-router-starter-template", + "fullRepo": "Furnished-Condos/react-router-starter-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittytrace", + "fullRepo": "ChicagoApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-credit", + "fullRepo": "ChicagoApps/chittypro-credit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-legallink", + "fullRepo": "ChicagoApps/chittypro-legallink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": ".github", + "fullRepo": "ChicagoApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-crtlo", + "fullRepo": "ChicagoApps/chittypro-crtlo", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "divorcio", + "fullRepo": "ChicagoApps/divorcio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-full/report-20260302T013423Z.jsonl b/reports/org-governance-full/report-20260302T013423Z.jsonl new file mode 100644 index 0000000..374f3fc --- /dev/null +++ b/reports/org-governance-full/report-20260302T013423Z.jsonl @@ -0,0 +1,124 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyverify","fullRepo":"CHITTYOS/chittyverify","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittybeacon","fullRepo":"CHITTYOS/chittybeacon","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyops","fullRepo":"CHITTYOS/chittyops","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyassets","fullRepo":"CHITTYOS/chittyassets","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyledger","fullRepo":"CHITTYOS/chittyledger","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittymonitor","fullRepo":"CHITTYOS/chittymonitor","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittychronicle","fullRepo":"CHITTYOS/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyswarm","fullRepo":"CHITTYOS/chittyswarm","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":".claude","fullRepo":"CHITTYOS/.claude","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":".github","fullRepo":"CHITTYOS/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittystandard","fullRepo":"CHITTYOS/chittystandard","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"shared","fullRepo":"CHITTYOS/shared","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"docs","fullRepo":"CHITTYOS/docs","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"sessionsync","fullRepo":"CHITTYOS/sessionsync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittycore","fullRepo":"CHITTYOS/chittycore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyos-cli","fullRepo":"CHITTYOS/chittyos-cli","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittygateway","fullRepo":"CHITTYOS/chittygateway","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyregistry","fullRepo":"CHITTYOS/chittyregistry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyrouter","fullRepo":"CHITTYOS/chittyrouter","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittycontext","fullRepo":"CHITTYOS/chittycontext","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyconnect","fullRepo":"CHITTYOS/chittyconnect","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittymcp","fullRepo":"CHITTYOS/chittymcp","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"mcp-cloudflare-authless","fullRepo":"CHITTYOS/mcp-cloudflare-authless","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyos-workspace","fullRepo":"CHITTYOS/chittyos-workspace","defaultBranch":"session-8c21b5bf","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyserv","fullRepo":"CHITTYOS/chittyserv","defaultBranch":"claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittydiscovery","fullRepo":"CHITTYOS/chittydiscovery","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyintel","fullRepo":"CHITTYOS/chittyintel","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyapi","fullRepo":"CHITTYOS/chittyapi","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chitty-desktop-connector","fullRepo":"CHITTYOS/chitty-desktop-connector","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chitty-mobile-connector","fullRepo":"CHITTYOS/chitty-mobile-connector","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyagent","fullRepo":"CHITTYOS/chittyagent","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":6,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":7,"score":20,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittycli","fullRepo":"CHITTYOS/chittycli","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittymcp-github","fullRepo":"CHITTYOS/chittymcp-github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"shell-plugins","fullRepo":"CHITTYOS/shell-plugins","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittystorage","fullRepo":"CHITTYOS/chittystorage","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"op-shell-plugins","fullRepo":"CHITTYOS/op-shell-plugins","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittysync","fullRepo":"CHITTYOS/chittysync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyhelper","fullRepo":"CHITTYOS/chittyhelper","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittycan","fullRepo":"CHITTYOS/chittycan","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"get-chitty","fullRepo":"CHITTYOS/get-chitty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"legal-cases","fullRepo":"CHITTYOS/legal-cases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyconnect-finance","fullRepo":"CHITTYOS/chittyconnect-finance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chitty-issue-resolver","fullRepo":"CHITTYOS/chitty-issue-resolver","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyagent-local","fullRepo":"CHITTYOS/chittyagent-local","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":1,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":2,"score":5,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyconcierge","fullRepo":"CHITTYOS/chittyconcierge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyevidence-db","fullRepo":"CHITTYOS/chittyevidence-db","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittycommand","fullRepo":"CHITTYOS/chittycommand","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittymac","fullRepo":"CHITTYOS/chittymac","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittytrack","fullRepo":"CHITTYOS/chittytrack","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":3,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittydisputes","fullRepo":"CHITTYOS/chittydisputes","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyscrape","fullRepo":"CHITTYOS/chittyscrape","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyentry","fullRepo":"CHITTYCORP/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittychronicle","fullRepo":"CHITTYCORP/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":".github","fullRepo":"CHITTYCORP/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyreception","fullRepo":"CHITTYCORP/chittyreception","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"CHITTYCOUNSEL","fullRepo":"CHITTYCORP/CHITTYCOUNSEL","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittylanding","fullRepo":"ChittyApps/chittylanding","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittytrace","fullRepo":"ChittyApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyformfill","fullRepo":"ChittyApps/chittyformfill","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyflow","fullRepo":"ChittyApps/chittyflow","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyresolution","fullRepo":"ChittyApps/chittyresolution","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittychat","fullRepo":"ChittyApps/chittychat","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyforge","fullRepo":"ChittyApps/chittyforge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyevidence","fullRepo":"ChittyApps/chittyevidence","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycloude-mcp","fullRepo":"ChittyApps/chittycloude-mcp","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"ecosystem","fullRepo":"ChittyApps/ecosystem","defaultBranch":"claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":".github","fullRepo":"ChittyApps/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycontextual","fullRepo":"ChittyApps/chittycontextual","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittydashboard","fullRepo":"ChittyApps/chittydashboard","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycleaner","fullRepo":"ChittyApps/chittycleaner","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyinsight","fullRepo":"ChittyApps/chittyinsight","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"integrateit","fullRepo":"ChittyApps/integrateit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittychat-sessions","fullRepo":"ChittyApps/chittychat-sessions","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyportal","fullRepo":"ChittyApps/chittyportal","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycharge","fullRepo":"ChittyApps/chittycharge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chitty","fullRepo":"ChittyApps/chitty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycan","fullRepo":"ChittyApps/chittycan","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyauth-app","fullRepo":"ChittyApps/chittyauth-app","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyreception","fullRepo":"ChittyApps/chittyreception","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"bane","fullRepo":"ChittyApps/bane","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycan-worker","fullRepo":"ChittyApps/chittycan-worker","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittypm","fullRepo":"ChittyApps/chittypm","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittysync","fullRepo":"ChittyApps/chittysync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyxl","fullRepo":"ChittyApps/chittyxl","defaultBranch":"claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"ch1tty","fullRepo":"ChittyApps/ch1tty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittydocumint","fullRepo":"ChittyApps/chittydocumint","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittybooks","fullRepo":"ChittyApps/chittybooks","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittybrand","fullRepo":"ChittyApps/chittybrand","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"ChittyAutomate-Google","fullRepo":"ChittyApps/ChittyAutomate-Google","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyproof","fullRepo":"ChittyApps/chittyproof","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"documint","fullRepo":"ChittyApps/documint","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chitty-imessage","fullRepo":"ChittyApps/chitty-imessage","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittydlvr","fullRepo":"ChittyApps/chittydlvr","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyagent-studio","fullRepo":"ChittyApps/chittyagent-studio","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChitCommit","repo":"billy-bullshit","fullRepo":"ChitCommit/billy-bullshit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChitCommit","repo":"chittypro-streamlink","fullRepo":"ChitCommit/chittypro-streamlink","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChitCommit","repo":"shitcommit","fullRepo":"ChitCommit/shitcommit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"rental-manager","fullRepo":"Furnished-Condos/rental-manager","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chico","fullRepo":"Furnished-Condos/chico","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"lease-agent","fullRepo":"Furnished-Condos/lease-agent","defaultBranch":"replit-agent","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"lease-wiz","fullRepo":"Furnished-Condos/lease-wiz","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chicobuzzer","fullRepo":"Furnished-Condos/chicobuzzer","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chittyentry","fullRepo":"Furnished-Condos/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chicago","fullRepo":"Furnished-Condos/chicago","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chittyrental","fullRepo":"Furnished-Condos/chittyrental","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"evict-assist","fullRepo":"Furnished-Condos/evict-assist","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"property-page","fullRepo":"Furnished-Condos/property-page","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"dynamic-data","fullRepo":"Furnished-Condos/dynamic-data","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":".github","fullRepo":"Furnished-Condos/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"remote-mcp-server","fullRepo":"Furnished-Condos/remote-mcp-server","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"demo-repository","fullRepo":"Furnished-Condos/demo-repository","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"llm-chat-app-template","fullRepo":"Furnished-Condos/llm-chat-app-template","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"react-router-starter-template","fullRepo":"Furnished-Condos/react-router-starter-template","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-contradictionengine","fullRepo":"ChicagoApps/chittypro-contradictionengine","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittycases","fullRepo":"ChicagoApps/chittycases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittytrace","fullRepo":"ChicagoApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-credit","fullRepo":"ChicagoApps/chittypro-credit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-legallink","fullRepo":"ChicagoApps/chittypro-legallink","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":".github","fullRepo":"ChicagoApps/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-crtlo","fullRepo":"ChicagoApps/chittypro-crtlo","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"divorcio","fullRepo":"ChicagoApps/divorcio","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-full/report-20260302T013423Z.md b/reports/org-governance-full/report-20260302T013423Z.md new file mode 100644 index 0000000..4a21982 --- /dev/null +++ b/reports/org-governance-full/report-20260302T013423Z.md @@ -0,0 +1,150 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T013423Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 124 +- Compliant repos: 0 +- Non-compliant repos: 124 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 6 | 0 | 6 | +| CHITTYOS | 52 | 0 | 52 | +| ChicagoApps | 8 | 0 | 8 | +| ChitCommit | 3 | 0 | 3 | +| ChittyApps | 39 | 0 | 39 | +| Furnished-Condos | 16 | 0 | 16 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyverify | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittybeacon | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyops | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyassets | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyledger | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymonitor | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyswarm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/.claude | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittystandard | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/shared | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/docs | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/sessionsync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycore | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyos-cli | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittygateway | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyregistry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyrouter | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycontext | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconnect | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymcp | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/mcp-cloudflare-authless | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyos-workspace | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyserv | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittydiscovery | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyintel | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyapi | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-desktop-connector | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-mobile-connector | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyagent | 20% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycli | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymcp-github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/shell-plugins | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittystorage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/op-shell-plugins | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittysync | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyhelper | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycan | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/get-chitty | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/legal-cases | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconnect-finance | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chitty-issue-resolver | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyagent-local | 5% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyconcierge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyevidence-db | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittycommand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittymac | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittytrack | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittydisputes | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyscrape | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/CHITTYCOUNSEL | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittylanding | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyformfill | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyflow | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyresolution | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyforge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyevidence | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycloude-mcp | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ecosystem | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycontextual | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydashboard | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycleaner | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyinsight | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/integrateit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat-sessions | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyportal | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycharge | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chitty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyauth-app | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/bane | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan-worker | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittypm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittysync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyxl | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ch1tty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydocumint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybooks | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybrand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ChittyAutomate-Google | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyproof | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/documint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chitty-imessage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydlvr | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyagent-studio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/chittypro-streamlink | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/shitcommit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-agent | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-wiz | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicobuzzer | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyentry | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicago | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyrental | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/evict-assist | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/property-page | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/dynamic-data | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/remote-mcp-server | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/demo-repository | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/llm-chat-app-template | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/react-router-starter-template | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-credit | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-legallink | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/.github | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-crtlo | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/divorcio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-live/latest.json b/reports/org-governance-live/latest.json new file mode 100644 index 0000000..985e43b --- /dev/null +++ b/reports/org-governance-live/latest.json @@ -0,0 +1,582 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-live/latest.md b/reports/org-governance-live/latest.md new file mode 100644 index 0000000..99d30c8 --- /dev/null +++ b/reports/org-governance-live/latest.md @@ -0,0 +1,35 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002603Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 10 +- Compliant repos: 0 +- Non-compliant repos: 10 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 2 | 0 | 2 | +| CHITTYOS | 2 | 0 | 2 | +| ChicagoApps | 2 | 0 | 2 | +| ChittyApps | 2 | 0 | 2 | +| Furnished-Condos | 2 | 0 | 2 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyverify | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittylanding | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-live/report-20260302T002342Z.jsonl b/reports/org-governance-live/report-20260302T002342Z.jsonl new file mode 100644 index 0000000..7d496a5 --- /dev/null +++ b/reports/org-governance-live/report-20260302T002342Z.jsonl @@ -0,0 +1,9 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyverify","fullRepo":"CHITTYOS/chittyverify","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittybeacon","fullRepo":"CHITTYOS/chittybeacon","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyentry","fullRepo":"CHITTYCORP/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittychronicle","fullRepo":"CHITTYCORP/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittylanding","fullRepo":"ChittyApps/chittylanding","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittytrace","fullRepo":"ChittyApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-live/report-20260302T002441Z.json b/reports/org-governance-live/report-20260302T002441Z.json new file mode 100644 index 0000000..b01e81f --- /dev/null +++ b/reports/org-governance-live/report-20260302T002441Z.json @@ -0,0 +1,877 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittybeacon", + "fullRepo": "CHITTYOS/chittybeacon", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittychronicle", + "fullRepo": "CHITTYCORP/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittytrace", + "fullRepo": "ChittyApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-agent", + "fullRepo": "Furnished-Condos/lease-agent", + "defaultBranch": "replit-agent", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittytrace", + "fullRepo": "ChicagoApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-live/report-20260302T002441Z.jsonl b/reports/org-governance-live/report-20260302T002441Z.jsonl new file mode 100644 index 0000000..889a4da --- /dev/null +++ b/reports/org-governance-live/report-20260302T002441Z.jsonl @@ -0,0 +1,15 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyverify","fullRepo":"CHITTYOS/chittyverify","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittybeacon","fullRepo":"CHITTYOS/chittybeacon","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyentry","fullRepo":"CHITTYCORP/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittychronicle","fullRepo":"CHITTYCORP/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittylanding","fullRepo":"ChittyApps/chittylanding","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittytrace","fullRepo":"ChittyApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"rental-manager","fullRepo":"Furnished-Condos/rental-manager","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chico","fullRepo":"Furnished-Condos/chico","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"lease-agent","fullRepo":"Furnished-Condos/lease-agent","defaultBranch":"replit-agent","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-contradictionengine","fullRepo":"ChicagoApps/chittypro-contradictionengine","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittycases","fullRepo":"ChicagoApps/chittycases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittytrace","fullRepo":"ChicagoApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-live/report-20260302T002441Z.md b/reports/org-governance-live/report-20260302T002441Z.md new file mode 100644 index 0000000..4fb871b --- /dev/null +++ b/reports/org-governance-live/report-20260302T002441Z.md @@ -0,0 +1,5 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002441Z +- Policy: .github/org-governance-policy.json + diff --git a/reports/org-governance-live/report-20260302T002603Z.json b/reports/org-governance-live/report-20260302T002603Z.json new file mode 100644 index 0000000..985e43b --- /dev/null +++ b/reports/org-governance-live/report-20260302T002603Z.json @@ -0,0 +1,582 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-live/report-20260302T002603Z.jsonl b/reports/org-governance-live/report-20260302T002603Z.jsonl new file mode 100644 index 0000000..ae3f87a --- /dev/null +++ b/reports/org-governance-live/report-20260302T002603Z.jsonl @@ -0,0 +1,10 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYOS","repo":"chittyverify","fullRepo":"CHITTYOS/chittyverify","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittyentry","fullRepo":"CHITTYCORP/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittylanding","fullRepo":"ChittyApps/chittylanding","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"rental-manager","fullRepo":"Furnished-Condos/rental-manager","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chico","fullRepo":"Furnished-Condos/chico","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-contradictionengine","fullRepo":"ChicagoApps/chittypro-contradictionengine","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittycases","fullRepo":"ChicagoApps/chittycases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-live/report-20260302T002603Z.md b/reports/org-governance-live/report-20260302T002603Z.md new file mode 100644 index 0000000..99d30c8 --- /dev/null +++ b/reports/org-governance-live/report-20260302T002603Z.md @@ -0,0 +1,35 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002603Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 10 +- Compliant repos: 0 +- Non-compliant repos: 10 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 2 | 0 | 2 | +| CHITTYOS | 2 | 0 | 2 | +| ChicagoApps | 2 | 0 | 2 | +| ChittyApps | 2 | 0 | 2 | +| Furnished-Condos | 2 | 0 | 2 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYOS/chittyverify | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyforce | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittylanding | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-postexec/latest.json b/reports/org-governance-postexec/latest.json new file mode 100644 index 0000000..331da77 --- /dev/null +++ b/reports/org-governance-postexec/latest.json @@ -0,0 +1,7097 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittybeacon", + "fullRepo": "CHITTYOS/chittybeacon", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyops", + "fullRepo": "CHITTYOS/chittyops", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyassets", + "fullRepo": "CHITTYOS/chittyassets", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyledger", + "fullRepo": "CHITTYOS/chittyledger", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymonitor", + "fullRepo": "CHITTYOS/chittymonitor", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittychronicle", + "fullRepo": "CHITTYOS/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyswarm", + "fullRepo": "CHITTYOS/chittyswarm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": ".claude", + "fullRepo": "CHITTYOS/.claude", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": ".github", + "fullRepo": "CHITTYOS/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittystandard", + "fullRepo": "CHITTYOS/chittystandard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "shared", + "fullRepo": "CHITTYOS/shared", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "docs", + "fullRepo": "CHITTYOS/docs", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "sessionsync", + "fullRepo": "CHITTYOS/sessionsync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycore", + "fullRepo": "CHITTYOS/chittycore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-cli", + "fullRepo": "CHITTYOS/chittyos-cli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittygateway", + "fullRepo": "CHITTYOS/chittygateway", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyregistry", + "fullRepo": "CHITTYOS/chittyregistry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyrouter", + "fullRepo": "CHITTYOS/chittyrouter", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycontext", + "fullRepo": "CHITTYOS/chittycontext", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect", + "fullRepo": "CHITTYOS/chittyconnect", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp", + "fullRepo": "CHITTYOS/chittymcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "mcp-cloudflare-authless", + "fullRepo": "CHITTYOS/mcp-cloudflare-authless", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-workspace", + "fullRepo": "CHITTYOS/chittyos-workspace", + "defaultBranch": "session-8c21b5bf", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyserv", + "fullRepo": "CHITTYOS/chittyserv", + "defaultBranch": "claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittydiscovery", + "fullRepo": "CHITTYOS/chittydiscovery", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyintel", + "fullRepo": "CHITTYOS/chittyintel", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyapi", + "fullRepo": "CHITTYOS/chittyapi", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-desktop-connector", + "fullRepo": "CHITTYOS/chitty-desktop-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-mobile-connector", + "fullRepo": "CHITTYOS/chitty-mobile-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent", + "fullRepo": "CHITTYOS/chittyagent", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 6, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 10, + "score": 29, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycli", + "fullRepo": "CHITTYOS/chittycli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp-github", + "fullRepo": "CHITTYOS/chittymcp-github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "shell-plugins", + "fullRepo": "CHITTYOS/shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittystorage", + "fullRepo": "CHITTYOS/chittystorage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "op-shell-plugins", + "fullRepo": "CHITTYOS/op-shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittysync", + "fullRepo": "CHITTYOS/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyhelper", + "fullRepo": "CHITTYOS/chittyhelper", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycan", + "fullRepo": "CHITTYOS/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "get-chitty", + "fullRepo": "CHITTYOS/get-chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "legal-cases", + "fullRepo": "CHITTYOS/legal-cases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect-finance", + "fullRepo": "CHITTYOS/chittyconnect-finance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-issue-resolver", + "fullRepo": "CHITTYOS/chitty-issue-resolver", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent-local", + "fullRepo": "CHITTYOS/chittyagent-local", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 1, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 5, + "score": 14, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconcierge", + "fullRepo": "CHITTYOS/chittyconcierge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyevidence-db", + "fullRepo": "CHITTYOS/chittyevidence-db", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycommand", + "fullRepo": "CHITTYOS/chittycommand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymac", + "fullRepo": "CHITTYOS/chittymac", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittytrack", + "fullRepo": "CHITTYOS/chittytrack", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 3, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 7, + "score": 20, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittydisputes", + "fullRepo": "CHITTYOS/chittydisputes", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyscrape", + "fullRepo": "CHITTYOS/chittyscrape", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittychronicle", + "fullRepo": "CHITTYCORP/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": ".github", + "fullRepo": "CHITTYCORP/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyreception", + "fullRepo": "CHITTYCORP/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "CHITTYCOUNSEL", + "fullRepo": "CHITTYCORP/CHITTYCOUNSEL", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittytrace", + "fullRepo": "ChittyApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyformfill", + "fullRepo": "ChittyApps/chittyformfill", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyflow", + "fullRepo": "ChittyApps/chittyflow", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyresolution", + "fullRepo": "ChittyApps/chittyresolution", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat", + "fullRepo": "ChittyApps/chittychat", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyforge", + "fullRepo": "ChittyApps/chittyforge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyevidence", + "fullRepo": "ChittyApps/chittyevidence", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycloude-mcp", + "fullRepo": "ChittyApps/chittycloude-mcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "ecosystem", + "fullRepo": "ChittyApps/ecosystem", + "defaultBranch": "claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": ".github", + "fullRepo": "ChittyApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittycontextual", + "fullRepo": "ChittyApps/chittycontextual", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydashboard", + "fullRepo": "ChittyApps/chittydashboard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycleaner", + "fullRepo": "ChittyApps/chittycleaner", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyinsight", + "fullRepo": "ChittyApps/chittyinsight", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "integrateit", + "fullRepo": "ChittyApps/integrateit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat-sessions", + "fullRepo": "ChittyApps/chittychat-sessions", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyportal", + "fullRepo": "ChittyApps/chittyportal", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycharge", + "fullRepo": "ChittyApps/chittycharge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chitty", + "fullRepo": "ChittyApps/chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan", + "fullRepo": "ChittyApps/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyauth-app", + "fullRepo": "ChittyApps/chittyauth-app", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyreception", + "fullRepo": "ChittyApps/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "bane", + "fullRepo": "ChittyApps/bane", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan-worker", + "fullRepo": "ChittyApps/chittycan-worker", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittypm", + "fullRepo": "ChittyApps/chittypm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittysync", + "fullRepo": "ChittyApps/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyxl", + "fullRepo": "ChittyApps/chittyxl", + "defaultBranch": "claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "ch1tty", + "fullRepo": "ChittyApps/ch1tty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittydocumint", + "fullRepo": "ChittyApps/chittydocumint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybooks", + "fullRepo": "ChittyApps/chittybooks", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybrand", + "fullRepo": "ChittyApps/chittybrand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ChittyAutomate-Google", + "fullRepo": "ChittyApps/ChittyAutomate-Google", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyproof", + "fullRepo": "ChittyApps/chittyproof", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "documint", + "fullRepo": "ChittyApps/documint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chitty-imessage", + "fullRepo": "ChittyApps/chitty-imessage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydlvr", + "fullRepo": "ChittyApps/chittydlvr", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyagent-studio", + "fullRepo": "ChittyApps/chittyagent-studio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChitCommit", + "repo": "chittypro-streamlink", + "fullRepo": "ChitCommit/chittypro-streamlink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChitCommit", + "repo": "shitcommit", + "fullRepo": "ChitCommit/shitcommit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-agent", + "fullRepo": "Furnished-Condos/lease-agent", + "defaultBranch": "replit-agent", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-wiz", + "fullRepo": "Furnished-Condos/lease-wiz", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicobuzzer", + "fullRepo": "Furnished-Condos/chicobuzzer", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyentry", + "fullRepo": "Furnished-Condos/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicago", + "fullRepo": "Furnished-Condos/chicago", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyrental", + "fullRepo": "Furnished-Condos/chittyrental", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "evict-assist", + "fullRepo": "Furnished-Condos/evict-assist", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "property-page", + "fullRepo": "Furnished-Condos/property-page", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "dynamic-data", + "fullRepo": "Furnished-Condos/dynamic-data", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": ".github", + "fullRepo": "Furnished-Condos/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "Furnished-Condos", + "repo": "remote-mcp-server", + "fullRepo": "Furnished-Condos/remote-mcp-server", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "demo-repository", + "fullRepo": "Furnished-Condos/demo-repository", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "llm-chat-app-template", + "fullRepo": "Furnished-Condos/llm-chat-app-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "Furnished-Condos", + "repo": "react-router-starter-template", + "fullRepo": "Furnished-Condos/react-router-starter-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittytrace", + "fullRepo": "ChicagoApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-credit", + "fullRepo": "ChicagoApps/chittypro-credit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-legallink", + "fullRepo": "ChicagoApps/chittypro-legallink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": ".github", + "fullRepo": "ChicagoApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-crtlo", + "fullRepo": "ChicagoApps/chittypro-crtlo", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "divorcio", + "fullRepo": "ChicagoApps/divorcio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-postexec/latest.md b/reports/org-governance-postexec/latest.md new file mode 100644 index 0000000..5e4657b --- /dev/null +++ b/reports/org-governance-postexec/latest.md @@ -0,0 +1,150 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T022304Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 124 +- Compliant repos: 0 +- Non-compliant repos: 124 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 6 | 0 | 6 | +| CHITTYOS | 52 | 0 | 52 | +| ChicagoApps | 8 | 0 | 8 | +| ChitCommit | 3 | 0 | 3 | +| ChittyApps | 39 | 0 | 39 | +| Furnished-Condos | 16 | 0 | 16 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyverify | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittybeacon | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyops | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyassets | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyledger | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymonitor | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittychronicle | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyswarm | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/.claude | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittystandard | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/shared | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/docs | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/sessionsync | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycore | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyos-cli | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittygateway | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyregistry | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyrouter | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycontext | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconnect | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymcp | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/mcp-cloudflare-authless | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyos-workspace | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyserv | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittydiscovery | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyintel | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyapi | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-desktop-connector | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-mobile-connector | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyagent | 29% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycli | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymcp-github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/shell-plugins | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittystorage | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/op-shell-plugins | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittysync | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyhelper | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycan | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/get-chitty | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/legal-cases | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconnect-finance | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-issue-resolver | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyagent-local | 14% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconcierge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyevidence-db | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycommand | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymac | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittytrack | 20% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittydisputes | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyscrape | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyforce | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/CHITTYCOUNSEL | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittylanding | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittytrace | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyformfill | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyflow | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyresolution | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyforge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyevidence | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycloude-mcp | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/ecosystem | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittycontextual | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydashboard | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycleaner | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyinsight | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/integrateit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat-sessions | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyportal | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycharge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chitty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyauth-app | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyreception | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/bane | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan-worker | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittypm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittysync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyxl | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/ch1tty | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittydocumint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybooks | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybrand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ChittyAutomate-Google | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyproof | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/documint | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chitty-imessage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydlvr | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyagent-studio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChitCommit/chittypro-streamlink | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChitCommit/shitcommit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-agent | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-wiz | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicobuzzer | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyentry | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicago | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyrental | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/evict-assist | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/property-page | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/dynamic-data | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| Furnished-Condos/remote-mcp-server | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/demo-repository | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/llm-chat-app-template | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| Furnished-Condos/react-router-starter-template | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-credit | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-legallink | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/chittypro-crtlo | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/divorcio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-postexec/open-governance-baseline-pr-repos.txt b/reports/org-governance-postexec/open-governance-baseline-pr-repos.txt new file mode 100644 index 0000000..6b7f70b --- /dev/null +++ b/reports/org-governance-postexec/open-governance-baseline-pr-repos.txt @@ -0,0 +1,40 @@ +CHITTYOS/.claude +CHITTYOS/.github +CHITTYOS/chitty-desktop-connector +CHITTYOS/chitty-mobile-connector +CHITTYOS/chittyagent +CHITTYOS/chittyapi +CHITTYOS/chittyassets +CHITTYOS/chittybeacon +CHITTYOS/chittycan +CHITTYOS/chittychronicle +CHITTYOS/chittycli +CHITTYOS/chittyconnect +CHITTYOS/chittycontext +CHITTYOS/chittycore +CHITTYOS/chittydiscovery +CHITTYOS/chittygateway +CHITTYOS/chittyhelper +CHITTYOS/chittyintel +CHITTYOS/chittyledger +CHITTYOS/chittymcp +CHITTYOS/chittymcp-github +CHITTYOS/chittymonitor +CHITTYOS/chittyops +CHITTYOS/chittyos-cli +CHITTYOS/chittyos-workspace +CHITTYOS/chittyregistry +CHITTYOS/chittyrouter +CHITTYOS/chittyscore +CHITTYOS/chittyserv +CHITTYOS/chittystandard +CHITTYOS/chittystorage +CHITTYOS/chittyswarm +CHITTYOS/chittysync +CHITTYOS/chittyverify +CHITTYOS/docs +CHITTYOS/mcp-cloudflare-authless +CHITTYOS/op-shell-plugins +CHITTYOS/sessionsync +CHITTYOS/shared +CHITTYOS/shell-plugins diff --git a/reports/org-governance-postexec/open-governance-issue-repos.txt b/reports/org-governance-postexec/open-governance-issue-repos.txt new file mode 100644 index 0000000..5cb5077 --- /dev/null +++ b/reports/org-governance-postexec/open-governance-issue-repos.txt @@ -0,0 +1,124 @@ +CHITTYCORP/.github +CHITTYCORP/CHITTYCOUNSEL +CHITTYCORP/chittychronicle +CHITTYCORP/chittyentry +CHITTYCORP/chittyforce +CHITTYCORP/chittyreception +CHITTYOS/.claude +CHITTYOS/.github +CHITTYOS/chitty-desktop-connector +CHITTYOS/chitty-issue-resolver +CHITTYOS/chitty-mobile-connector +CHITTYOS/chittyagent +CHITTYOS/chittyagent-local +CHITTYOS/chittyapi +CHITTYOS/chittyassets +CHITTYOS/chittybeacon +CHITTYOS/chittycan +CHITTYOS/chittychronicle +CHITTYOS/chittycli +CHITTYOS/chittycommand +CHITTYOS/chittyconcierge +CHITTYOS/chittyconnect +CHITTYOS/chittyconnect-finance +CHITTYOS/chittycontext +CHITTYOS/chittycore +CHITTYOS/chittydiscovery +CHITTYOS/chittydisputes +CHITTYOS/chittyevidence-db +CHITTYOS/chittygateway +CHITTYOS/chittyhelper +CHITTYOS/chittyintel +CHITTYOS/chittyledger +CHITTYOS/chittymac +CHITTYOS/chittymcp +CHITTYOS/chittymcp-github +CHITTYOS/chittymonitor +CHITTYOS/chittyops +CHITTYOS/chittyos-cli +CHITTYOS/chittyos-workspace +CHITTYOS/chittyregistry +CHITTYOS/chittyrouter +CHITTYOS/chittyscore +CHITTYOS/chittyscrape +CHITTYOS/chittyserv +CHITTYOS/chittystandard +CHITTYOS/chittystorage +CHITTYOS/chittyswarm +CHITTYOS/chittysync +CHITTYOS/chittytrack +CHITTYOS/chittyverify +CHITTYOS/docs +CHITTYOS/get-chitty +CHITTYOS/legal-cases +CHITTYOS/mcp-cloudflare-authless +CHITTYOS/op-shell-plugins +CHITTYOS/sessionsync +CHITTYOS/shared +CHITTYOS/shell-plugins +ChicagoApps/.github +ChicagoApps/chittycases +ChicagoApps/chittypro-contradictionengine +ChicagoApps/chittypro-credit +ChicagoApps/chittypro-crtlo +ChicagoApps/chittypro-legallink +ChicagoApps/chittytrace +ChicagoApps/divorcio +ChitCommit/billy-bullshit +ChitCommit/chittypro-streamlink +ChitCommit/shitcommit +ChittyApps/.github +ChittyApps/ChittyAutomate-Google +ChittyApps/bane +ChittyApps/ch1tty +ChittyApps/chitty +ChittyApps/chitty-imessage +ChittyApps/chittyagent-studio +ChittyApps/chittyauth-app +ChittyApps/chittybooks +ChittyApps/chittybrand +ChittyApps/chittycan +ChittyApps/chittycan-worker +ChittyApps/chittycharge +ChittyApps/chittychat +ChittyApps/chittychat-sessions +ChittyApps/chittycleaner +ChittyApps/chittycloude-mcp +ChittyApps/chittycontextual +ChittyApps/chittydashboard +ChittyApps/chittydlvr +ChittyApps/chittydocumint +ChittyApps/chittyevidence +ChittyApps/chittyfinance +ChittyApps/chittyflow +ChittyApps/chittyforge +ChittyApps/chittyformfill +ChittyApps/chittyinsight +ChittyApps/chittylanding +ChittyApps/chittypm +ChittyApps/chittyportal +ChittyApps/chittyproof +ChittyApps/chittyreception +ChittyApps/chittyresolution +ChittyApps/chittysync +ChittyApps/chittytrace +ChittyApps/chittyxl +ChittyApps/documint +ChittyApps/ecosystem +ChittyApps/integrateit +Furnished-Condos/.github +Furnished-Condos/chicago +Furnished-Condos/chico +Furnished-Condos/chicobuzzer +Furnished-Condos/chittyentry +Furnished-Condos/chittyrental +Furnished-Condos/demo-repository +Furnished-Condos/dynamic-data +Furnished-Condos/evict-assist +Furnished-Condos/lease-agent +Furnished-Condos/lease-wiz +Furnished-Condos/llm-chat-app-template +Furnished-Condos/property-page +Furnished-Condos/react-router-starter-template +Furnished-Condos/remote-mcp-server +Furnished-Condos/rental-manager diff --git a/reports/org-governance-postexec/report-20260302T022304Z.json b/reports/org-governance-postexec/report-20260302T022304Z.json new file mode 100644 index 0000000..331da77 --- /dev/null +++ b/reports/org-governance-postexec/report-20260302T022304Z.json @@ -0,0 +1,7097 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyverify", + "fullRepo": "CHITTYOS/chittyverify", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittybeacon", + "fullRepo": "CHITTYOS/chittybeacon", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyops", + "fullRepo": "CHITTYOS/chittyops", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyassets", + "fullRepo": "CHITTYOS/chittyassets", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyledger", + "fullRepo": "CHITTYOS/chittyledger", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymonitor", + "fullRepo": "CHITTYOS/chittymonitor", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittychronicle", + "fullRepo": "CHITTYOS/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyswarm", + "fullRepo": "CHITTYOS/chittyswarm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": ".claude", + "fullRepo": "CHITTYOS/.claude", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": ".github", + "fullRepo": "CHITTYOS/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittystandard", + "fullRepo": "CHITTYOS/chittystandard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "shared", + "fullRepo": "CHITTYOS/shared", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "docs", + "fullRepo": "CHITTYOS/docs", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "sessionsync", + "fullRepo": "CHITTYOS/sessionsync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycore", + "fullRepo": "CHITTYOS/chittycore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-cli", + "fullRepo": "CHITTYOS/chittyos-cli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittygateway", + "fullRepo": "CHITTYOS/chittygateway", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyregistry", + "fullRepo": "CHITTYOS/chittyregistry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyrouter", + "fullRepo": "CHITTYOS/chittyrouter", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycontext", + "fullRepo": "CHITTYOS/chittycontext", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect", + "fullRepo": "CHITTYOS/chittyconnect", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp", + "fullRepo": "CHITTYOS/chittymcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "mcp-cloudflare-authless", + "fullRepo": "CHITTYOS/mcp-cloudflare-authless", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyos-workspace", + "fullRepo": "CHITTYOS/chittyos-workspace", + "defaultBranch": "session-8c21b5bf", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyserv", + "fullRepo": "CHITTYOS/chittyserv", + "defaultBranch": "claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittydiscovery", + "fullRepo": "CHITTYOS/chittydiscovery", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyintel", + "fullRepo": "CHITTYOS/chittyintel", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyapi", + "fullRepo": "CHITTYOS/chittyapi", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-desktop-connector", + "fullRepo": "CHITTYOS/chitty-desktop-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-mobile-connector", + "fullRepo": "CHITTYOS/chitty-mobile-connector", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent", + "fullRepo": "CHITTYOS/chittyagent", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 6, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 10, + "score": 29, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycli", + "fullRepo": "CHITTYOS/chittycli", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymcp-github", + "fullRepo": "CHITTYOS/chittymcp-github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "shell-plugins", + "fullRepo": "CHITTYOS/shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittystorage", + "fullRepo": "CHITTYOS/chittystorage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "op-shell-plugins", + "fullRepo": "CHITTYOS/op-shell-plugins", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittysync", + "fullRepo": "CHITTYOS/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyhelper", + "fullRepo": "CHITTYOS/chittyhelper", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycan", + "fullRepo": "CHITTYOS/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "get-chitty", + "fullRepo": "CHITTYOS/get-chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "legal-cases", + "fullRepo": "CHITTYOS/legal-cases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconnect-finance", + "fullRepo": "CHITTYOS/chittyconnect-finance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chitty-issue-resolver", + "fullRepo": "CHITTYOS/chitty-issue-resolver", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyagent-local", + "fullRepo": "CHITTYOS/chittyagent-local", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 1, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 5, + "score": 14, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyconcierge", + "fullRepo": "CHITTYOS/chittyconcierge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyevidence-db", + "fullRepo": "CHITTYOS/chittyevidence-db", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittycommand", + "fullRepo": "CHITTYOS/chittycommand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittymac", + "fullRepo": "CHITTYOS/chittymac", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittytrack", + "fullRepo": "CHITTYOS/chittytrack", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 3, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 7, + "score": 20, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittydisputes", + "fullRepo": "CHITTYOS/chittydisputes", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYOS", + "repo": "chittyscrape", + "fullRepo": "CHITTYOS/chittyscrape", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyforce", + "fullRepo": "CHITTYCORP/chittyforce", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyentry", + "fullRepo": "CHITTYCORP/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "chittychronicle", + "fullRepo": "CHITTYCORP/chittychronicle", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": ".github", + "fullRepo": "CHITTYCORP/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "CHITTYCORP", + "repo": "chittyreception", + "fullRepo": "CHITTYCORP/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "CHITTYCORP", + "repo": "CHITTYCOUNSEL", + "fullRepo": "CHITTYCORP/CHITTYCOUNSEL", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyfinance", + "fullRepo": "ChittyApps/chittyfinance", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittylanding", + "fullRepo": "ChittyApps/chittylanding", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittytrace", + "fullRepo": "ChittyApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyformfill", + "fullRepo": "ChittyApps/chittyformfill", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyflow", + "fullRepo": "ChittyApps/chittyflow", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyresolution", + "fullRepo": "ChittyApps/chittyresolution", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat", + "fullRepo": "ChittyApps/chittychat", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyforge", + "fullRepo": "ChittyApps/chittyforge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyevidence", + "fullRepo": "ChittyApps/chittyevidence", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycloude-mcp", + "fullRepo": "ChittyApps/chittycloude-mcp", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "ecosystem", + "fullRepo": "ChittyApps/ecosystem", + "defaultBranch": "claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": ".github", + "fullRepo": "ChittyApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittycontextual", + "fullRepo": "ChittyApps/chittycontextual", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydashboard", + "fullRepo": "ChittyApps/chittydashboard", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycleaner", + "fullRepo": "ChittyApps/chittycleaner", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyinsight", + "fullRepo": "ChittyApps/chittyinsight", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "integrateit", + "fullRepo": "ChittyApps/integrateit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittychat-sessions", + "fullRepo": "ChittyApps/chittychat-sessions", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyportal", + "fullRepo": "ChittyApps/chittyportal", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycharge", + "fullRepo": "ChittyApps/chittycharge", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chitty", + "fullRepo": "ChittyApps/chitty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan", + "fullRepo": "ChittyApps/chittycan", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyauth-app", + "fullRepo": "ChittyApps/chittyauth-app", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyreception", + "fullRepo": "ChittyApps/chittyreception", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "bane", + "fullRepo": "ChittyApps/bane", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittycan-worker", + "fullRepo": "ChittyApps/chittycan-worker", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittypm", + "fullRepo": "ChittyApps/chittypm", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittysync", + "fullRepo": "ChittyApps/chittysync", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyxl", + "fullRepo": "ChittyApps/chittyxl", + "defaultBranch": "claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "ch1tty", + "fullRepo": "ChittyApps/ch1tty", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittydocumint", + "fullRepo": "ChittyApps/chittydocumint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybooks", + "fullRepo": "ChittyApps/chittybooks", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittybrand", + "fullRepo": "ChittyApps/chittybrand", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "ChittyAutomate-Google", + "fullRepo": "ChittyApps/ChittyAutomate-Google", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittyproof", + "fullRepo": "ChittyApps/chittyproof", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "documint", + "fullRepo": "ChittyApps/documint", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chitty-imessage", + "fullRepo": "ChittyApps/chitty-imessage", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChittyApps", + "repo": "chittydlvr", + "fullRepo": "ChittyApps/chittydlvr", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChittyApps", + "repo": "chittyagent-studio", + "fullRepo": "ChittyApps/chittyagent-studio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChitCommit", + "repo": "billy-bullshit", + "fullRepo": "ChitCommit/billy-bullshit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChitCommit", + "repo": "chittypro-streamlink", + "fullRepo": "ChitCommit/chittypro-streamlink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChitCommit", + "repo": "shitcommit", + "fullRepo": "ChitCommit/shitcommit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "rental-manager", + "fullRepo": "Furnished-Condos/rental-manager", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chico", + "fullRepo": "Furnished-Condos/chico", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-agent", + "fullRepo": "Furnished-Condos/lease-agent", + "defaultBranch": "replit-agent", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "lease-wiz", + "fullRepo": "Furnished-Condos/lease-wiz", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicobuzzer", + "fullRepo": "Furnished-Condos/chicobuzzer", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyentry", + "fullRepo": "Furnished-Condos/chittyentry", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chicago", + "fullRepo": "Furnished-Condos/chicago", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "chittyrental", + "fullRepo": "Furnished-Condos/chittyrental", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "evict-assist", + "fullRepo": "Furnished-Condos/evict-assist", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "property-page", + "fullRepo": "Furnished-Condos/property-page", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "dynamic-data", + "fullRepo": "Furnished-Condos/dynamic-data", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": ".github", + "fullRepo": "Furnished-Condos/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "Furnished-Condos", + "repo": "remote-mcp-server", + "fullRepo": "Furnished-Condos/remote-mcp-server", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "demo-repository", + "fullRepo": "Furnished-Condos/demo-repository", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "Furnished-Condos", + "repo": "llm-chat-app-template", + "fullRepo": "Furnished-Condos/llm-chat-app-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "Furnished-Condos", + "repo": "react-router-starter-template", + "fullRepo": "Furnished-Condos/react-router-starter-template", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-contradictionengine", + "fullRepo": "ChicagoApps/chittypro-contradictionengine", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittycases", + "fullRepo": "ChicagoApps/chittycases", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittytrace", + "fullRepo": "ChicagoApps/chittytrace", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-credit", + "fullRepo": "ChicagoApps/chittypro-credit", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-legallink", + "fullRepo": "ChicagoApps/chittypro-legallink", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 6, + "score": 17, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + }, + { + "org": "ChicagoApps", + "repo": ".github", + "fullRepo": "ChicagoApps/.github", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 4, + "score": 11, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "chittypro-crtlo", + "fullRepo": "ChicagoApps/chittypro-crtlo", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 5, + "statusCheckTotal": 3, + "statusCheckPassed": 3, + "checksTotal": 34, + "checksPassed": 9, + "score": 26, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [] + }, + { + "org": "ChicagoApps", + "repo": "divorcio", + "fullRepo": "ChicagoApps/divorcio", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-postexec/report-20260302T022304Z.jsonl b/reports/org-governance-postexec/report-20260302T022304Z.jsonl new file mode 100644 index 0000000..6e7de99 --- /dev/null +++ b/reports/org-governance-postexec/report-20260302T022304Z.jsonl @@ -0,0 +1,124 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyverify","fullRepo":"CHITTYOS/chittyverify","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittybeacon","fullRepo":"CHITTYOS/chittybeacon","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyops","fullRepo":"CHITTYOS/chittyops","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyassets","fullRepo":"CHITTYOS/chittyassets","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyledger","fullRepo":"CHITTYOS/chittyledger","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittymonitor","fullRepo":"CHITTYOS/chittymonitor","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittychronicle","fullRepo":"CHITTYOS/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyswarm","fullRepo":"CHITTYOS/chittyswarm","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":".claude","fullRepo":"CHITTYOS/.claude","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":".github","fullRepo":"CHITTYOS/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittystandard","fullRepo":"CHITTYOS/chittystandard","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"shared","fullRepo":"CHITTYOS/shared","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"docs","fullRepo":"CHITTYOS/docs","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"sessionsync","fullRepo":"CHITTYOS/sessionsync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittycore","fullRepo":"CHITTYOS/chittycore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyos-cli","fullRepo":"CHITTYOS/chittyos-cli","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittygateway","fullRepo":"CHITTYOS/chittygateway","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyregistry","fullRepo":"CHITTYOS/chittyregistry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyrouter","fullRepo":"CHITTYOS/chittyrouter","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittycontext","fullRepo":"CHITTYOS/chittycontext","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyconnect","fullRepo":"CHITTYOS/chittyconnect","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittymcp","fullRepo":"CHITTYOS/chittymcp","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"mcp-cloudflare-authless","fullRepo":"CHITTYOS/mcp-cloudflare-authless","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyos-workspace","fullRepo":"CHITTYOS/chittyos-workspace","defaultBranch":"session-8c21b5bf","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyserv","fullRepo":"CHITTYOS/chittyserv","defaultBranch":"claude/homelab-budget-guide-011CUPz881ZEdRYfyiXkbWEq","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittydiscovery","fullRepo":"CHITTYOS/chittydiscovery","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyintel","fullRepo":"CHITTYOS/chittyintel","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyapi","fullRepo":"CHITTYOS/chittyapi","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chitty-desktop-connector","fullRepo":"CHITTYOS/chitty-desktop-connector","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chitty-mobile-connector","fullRepo":"CHITTYOS/chitty-mobile-connector","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyagent","fullRepo":"CHITTYOS/chittyagent","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":6,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":10,"score":29,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittycli","fullRepo":"CHITTYOS/chittycli","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittymcp-github","fullRepo":"CHITTYOS/chittymcp-github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"shell-plugins","fullRepo":"CHITTYOS/shell-plugins","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittystorage","fullRepo":"CHITTYOS/chittystorage","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"op-shell-plugins","fullRepo":"CHITTYOS/op-shell-plugins","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittysync","fullRepo":"CHITTYOS/chittysync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyhelper","fullRepo":"CHITTYOS/chittyhelper","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittycan","fullRepo":"CHITTYOS/chittycan","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"get-chitty","fullRepo":"CHITTYOS/get-chitty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"legal-cases","fullRepo":"CHITTYOS/legal-cases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyconnect-finance","fullRepo":"CHITTYOS/chittyconnect-finance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chitty-issue-resolver","fullRepo":"CHITTYOS/chitty-issue-resolver","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyagent-local","fullRepo":"CHITTYOS/chittyagent-local","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":1,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":5,"score":14,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyconcierge","fullRepo":"CHITTYOS/chittyconcierge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyevidence-db","fullRepo":"CHITTYOS/chittyevidence-db","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittycommand","fullRepo":"CHITTYOS/chittycommand","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittymac","fullRepo":"CHITTYOS/chittymac","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittytrack","fullRepo":"CHITTYOS/chittytrack","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":3,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":7,"score":20,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittydisputes","fullRepo":"CHITTYOS/chittydisputes","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYOS","repo":"chittyscrape","fullRepo":"CHITTYOS/chittyscrape","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYCORP","repo":"chittyforce","fullRepo":"CHITTYCORP/chittyforce","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYCORP","repo":"chittyentry","fullRepo":"CHITTYCORP/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"chittychronicle","fullRepo":"CHITTYCORP/chittychronicle","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":".github","fullRepo":"CHITTYCORP/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"CHITTYCORP","repo":"chittyreception","fullRepo":"CHITTYCORP/chittyreception","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"CHITTYCORP","repo":"CHITTYCOUNSEL","fullRepo":"CHITTYCORP/CHITTYCOUNSEL","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyfinance","fullRepo":"ChittyApps/chittyfinance","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittylanding","fullRepo":"ChittyApps/chittylanding","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittytrace","fullRepo":"ChittyApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyformfill","fullRepo":"ChittyApps/chittyformfill","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyflow","fullRepo":"ChittyApps/chittyflow","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyresolution","fullRepo":"ChittyApps/chittyresolution","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittychat","fullRepo":"ChittyApps/chittychat","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyforge","fullRepo":"ChittyApps/chittyforge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyevidence","fullRepo":"ChittyApps/chittyevidence","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycloude-mcp","fullRepo":"ChittyApps/chittycloude-mcp","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"ecosystem","fullRepo":"ChittyApps/ecosystem","defaultBranch":"claude/github-mcp-server-01GMRhD5EaYCAh4ieWcd1TwF","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":".github","fullRepo":"ChittyApps/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittycontextual","fullRepo":"ChittyApps/chittycontextual","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittydashboard","fullRepo":"ChittyApps/chittydashboard","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycleaner","fullRepo":"ChittyApps/chittycleaner","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyinsight","fullRepo":"ChittyApps/chittyinsight","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"integrateit","fullRepo":"ChittyApps/integrateit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittychat-sessions","fullRepo":"ChittyApps/chittychat-sessions","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyportal","fullRepo":"ChittyApps/chittyportal","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycharge","fullRepo":"ChittyApps/chittycharge","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chitty","fullRepo":"ChittyApps/chitty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycan","fullRepo":"ChittyApps/chittycan","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyauth-app","fullRepo":"ChittyApps/chittyauth-app","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyreception","fullRepo":"ChittyApps/chittyreception","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"bane","fullRepo":"ChittyApps/bane","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittycan-worker","fullRepo":"ChittyApps/chittycan-worker","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittypm","fullRepo":"ChittyApps/chittypm","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittysync","fullRepo":"ChittyApps/chittysync","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyxl","fullRepo":"ChittyApps/chittyxl","defaultBranch":"claude/deploy-chittyxl-v2-01H7F5Di7gL9VeeZjtf3ykyZ","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"ch1tty","fullRepo":"ChittyApps/ch1tty","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittydocumint","fullRepo":"ChittyApps/chittydocumint","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittybooks","fullRepo":"ChittyApps/chittybooks","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittybrand","fullRepo":"ChittyApps/chittybrand","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"ChittyAutomate-Google","fullRepo":"ChittyApps/ChittyAutomate-Google","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittyproof","fullRepo":"ChittyApps/chittyproof","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"documint","fullRepo":"ChittyApps/documint","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chitty-imessage","fullRepo":"ChittyApps/chitty-imessage","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChittyApps","repo":"chittydlvr","fullRepo":"ChittyApps/chittydlvr","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChittyApps","repo":"chittyagent-studio","fullRepo":"ChittyApps/chittyagent-studio","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChitCommit","repo":"billy-bullshit","fullRepo":"ChitCommit/billy-bullshit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChitCommit","repo":"chittypro-streamlink","fullRepo":"ChitCommit/chittypro-streamlink","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChitCommit","repo":"shitcommit","fullRepo":"ChitCommit/shitcommit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"rental-manager","fullRepo":"Furnished-Condos/rental-manager","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chico","fullRepo":"Furnished-Condos/chico","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"lease-agent","fullRepo":"Furnished-Condos/lease-agent","defaultBranch":"replit-agent","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"lease-wiz","fullRepo":"Furnished-Condos/lease-wiz","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chicobuzzer","fullRepo":"Furnished-Condos/chicobuzzer","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chittyentry","fullRepo":"Furnished-Condos/chittyentry","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chicago","fullRepo":"Furnished-Condos/chicago","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"chittyrental","fullRepo":"Furnished-Condos/chittyrental","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"evict-assist","fullRepo":"Furnished-Condos/evict-assist","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"property-page","fullRepo":"Furnished-Condos/property-page","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"dynamic-data","fullRepo":"Furnished-Condos/dynamic-data","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":".github","fullRepo":"Furnished-Condos/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"Furnished-Condos","repo":"remote-mcp-server","fullRepo":"Furnished-Condos/remote-mcp-server","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"demo-repository","fullRepo":"Furnished-Condos/demo-repository","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"Furnished-Condos","repo":"llm-chat-app-template","fullRepo":"Furnished-Condos/llm-chat-app-template","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"Furnished-Condos","repo":"react-router-starter-template","fullRepo":"Furnished-Condos/react-router-starter-template","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChicagoApps","repo":"chittypro-contradictionengine","fullRepo":"ChicagoApps/chittypro-contradictionengine","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittycases","fullRepo":"ChicagoApps/chittycases","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittytrace","fullRepo":"ChicagoApps/chittytrace","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-credit","fullRepo":"ChicagoApps/chittypro-credit","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":"chittypro-legallink","fullRepo":"ChicagoApps/chittypro-legallink","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":6,"score":17,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} +{"org":"ChicagoApps","repo":".github","fullRepo":"ChicagoApps/.github","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":4,"score":11,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChicagoApps","repo":"chittypro-crtlo","fullRepo":"ChicagoApps/chittypro-crtlo","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":5,"statusCheckTotal":3,"statusCheckPassed":3,"checksTotal":34,"checksPassed":9,"score":26,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":[]} +{"org":"ChicagoApps","repo":"divorcio","fullRepo":"ChicagoApps/divorcio","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-postexec/report-20260302T022304Z.md b/reports/org-governance-postexec/report-20260302T022304Z.md new file mode 100644 index 0000000..5e4657b --- /dev/null +++ b/reports/org-governance-postexec/report-20260302T022304Z.md @@ -0,0 +1,150 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T022304Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 124 +- Compliant repos: 0 +- Non-compliant repos: 124 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYCORP | 6 | 0 | 6 | +| CHITTYOS | 52 | 0 | 52 | +| ChicagoApps | 8 | 0 | 8 | +| ChitCommit | 3 | 0 | 3 | +| ChittyApps | 39 | 0 | 39 | +| Furnished-Condos | 16 | 0 | 16 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyverify | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittybeacon | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyops | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyassets | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyledger | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymonitor | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittychronicle | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyswarm | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/.claude | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittystandard | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/shared | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/docs | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/sessionsync | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycore | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyos-cli | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittygateway | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyregistry | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyrouter | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycontext | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconnect | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymcp | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/mcp-cloudflare-authless | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyos-workspace | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyserv | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittydiscovery | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyintel | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyapi | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-desktop-connector | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-mobile-connector | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyagent | 29% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycli | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymcp-github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/shell-plugins | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittystorage | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/op-shell-plugins | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittysync | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyhelper | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycan | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/get-chitty | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/legal-cases | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconnect-finance | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chitty-issue-resolver | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyagent-local | 14% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyconcierge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyevidence-db | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittycommand | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittymac | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittytrack | 20% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittydisputes | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYOS/chittyscrape | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyforce | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyentry | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/chittychronicle | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| CHITTYCORP/chittyreception | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| CHITTYCORP/CHITTYCOUNSEL | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyfinance | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittylanding | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittytrace | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyformfill | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyflow | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyresolution | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyforge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyevidence | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycloude-mcp | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/ecosystem | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittycontextual | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydashboard | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycleaner | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyinsight | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/integrateit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittychat-sessions | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyportal | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycharge | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chitty | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyauth-app | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyreception | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/bane | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittycan-worker | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittypm | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittysync | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyxl | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/ch1tty | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittydocumint | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybooks | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittybrand | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/ChittyAutomate-Google | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittyproof | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/documint | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chitty-imessage | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChittyApps/chittydlvr | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChittyApps/chittyagent-studio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChitCommit/billy-bullshit | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChitCommit/chittypro-streamlink | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChitCommit/shitcommit | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/rental-manager | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chico | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-agent | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/lease-wiz | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicobuzzer | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyentry | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chicago | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/chittyrental | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/evict-assist | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/property-page | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/dynamic-data | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| Furnished-Condos/remote-mcp-server | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/demo-repository | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| Furnished-Condos/llm-chat-app-template | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| Furnished-Condos/react-router-starter-template | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/chittypro-contradictionengine | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittycases | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittytrace | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-credit | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/chittypro-legallink | 17% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | +| ChicagoApps/.github | 11% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/chittypro-crtlo | 26% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | | true | +| ChicagoApps/divorcio | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-postexec/repos-missing-status-checks.txt b/reports/org-governance-postexec/repos-missing-status-checks.txt new file mode 100644 index 0000000..47cc03a --- /dev/null +++ b/reports/org-governance-postexec/repos-missing-status-checks.txt @@ -0,0 +1,43 @@ +CHITTYCORP/CHITTYCOUNSEL +CHITTYCORP/chittychronicle +CHITTYCORP/chittyentry +CHITTYCORP/chittyreception +ChicagoApps/chittycases +ChicagoApps/chittypro-contradictionengine +ChicagoApps/chittypro-credit +ChicagoApps/chittypro-legallink +ChicagoApps/chittytrace +ChicagoApps/divorcio +ChitCommit/shitcommit +ChittyApps/ChittyAutomate-Google +ChittyApps/bane +ChittyApps/chitty +ChittyApps/chitty-imessage +ChittyApps/chittyagent-studio +ChittyApps/chittybooks +ChittyApps/chittybrand +ChittyApps/chittycan-worker +ChittyApps/chittycontextual +ChittyApps/chittydashboard +ChittyApps/chittydocumint +ChittyApps/chittyevidence +ChittyApps/chittyflow +ChittyApps/chittypm +ChittyApps/chittyportal +ChittyApps/chittyproof +ChittyApps/chittyresolution +ChittyApps/chittysync +ChittyApps/integrateit +Furnished-Condos/chicago +Furnished-Condos/chico +Furnished-Condos/chicobuzzer +Furnished-Condos/chittyentry +Furnished-Condos/chittyrental +Furnished-Condos/demo-repository +Furnished-Condos/dynamic-data +Furnished-Condos/evict-assist +Furnished-Condos/lease-agent +Furnished-Condos/lease-wiz +Furnished-Condos/property-page +Furnished-Condos/remote-mcp-server +Furnished-Condos/rental-manager diff --git a/reports/org-governance-smoke/latest.json b/reports/org-governance-smoke/latest.json new file mode 100644 index 0000000..660229e --- /dev/null +++ b/reports/org-governance-smoke/latest.json @@ -0,0 +1,63 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-smoke/latest.md b/reports/org-governance-smoke/latest.md new file mode 100644 index 0000000..7d589c7 --- /dev/null +++ b/reports/org-governance-smoke/latest.md @@ -0,0 +1,22 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002833Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 1 +- Compliant repos: 0 +- Non-compliant repos: 1 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYOS | 1 | 0 | 1 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/reports/org-governance-smoke/report-20260302T002833Z.json b/reports/org-governance-smoke/report-20260302T002833Z.json new file mode 100644 index 0000000..660229e --- /dev/null +++ b/reports/org-governance-smoke/report-20260302T002833Z.json @@ -0,0 +1,63 @@ +[ + { + "org": "CHITTYOS", + "repo": "chittyscore", + "fullRepo": "CHITTYOS/chittyscore", + "defaultBranch": "main", + "archived": false, + "branchProtection": true, + "requiredFilesTotal": 7, + "requiredFilesPresent": 0, + "triggerChecksTotal": 7, + "triggerChecksPassed": 0, + "patternChecksTotal": 16, + "patternChecksPassed": 0, + "statusCheckTotal": 3, + "statusCheckPassed": 0, + "checksTotal": 34, + "checksPassed": 1, + "score": 2, + "compliant": false, + "missingFiles": [ + ".github/workflows/governance-gates.yml", + ".github/workflows/adversarial-review.yml", + ".github/workflows/identity-context-onboarding.yml", + ".github/workflows/onepassword-rotation-audit.yml", + ".github/secret-catalog.json", + ".github/allowed-workflow-secrets.txt", + ".gitleaks.toml" + ], + "missingTriggers": [ + ".github/workflows/adversarial-review.yml:pull_request_target", + ".github/workflows/governance-gates.yml:pull_request", + ".github/workflows/governance-gates.yml:push", + ".github/workflows/identity-context-onboarding.yml:pull_request", + ".github/workflows/identity-context-onboarding.yml:push", + ".github/workflows/onepassword-rotation-audit.yml:schedule", + ".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch" + ], + "missingPatterns": [ + ".chittyconnect.yml:onboarding:", + ".chittyconnect.yml:provisions:", + ".chittyconnect.yml:chitty_id:", + ".chittyconnect.yml:service_token:", + ".chittyconnect.yml:certificate:", + ".chittyconnect.yml:trust_chain:", + ".chittyconnect.yml:context_consciousness:", + ".chittyconnect.yml:enabled:", + ".chittyconnect.yml:chittydna:", + ".chittyconnect.yml:memorycloude:", + ".chittyconnect.yml:synthetic_entity:", + ".chittyconnect.yml:type:", + ".chittyconnect.yml:classification:", + ".chittyconnect.yml:authority_scope:", + ".chittyconnect.yml:access_scope:", + ".chittyconnect.yml:actor_binding:" + ], + "missingStatusChecks": [ + "Governance Gates / gates", + "Identity & Context Onboarding Gate / identity-onboarding", + "Adversarial Review Orchestrator / orchestrate" + ] + } +] diff --git a/reports/org-governance-smoke/report-20260302T002833Z.jsonl b/reports/org-governance-smoke/report-20260302T002833Z.jsonl new file mode 100644 index 0000000..1bc5245 --- /dev/null +++ b/reports/org-governance-smoke/report-20260302T002833Z.jsonl @@ -0,0 +1 @@ +{"org":"CHITTYOS","repo":"chittyscore","fullRepo":"CHITTYOS/chittyscore","defaultBranch":"main","archived":false,"branchProtection":true,"requiredFilesTotal":7,"requiredFilesPresent":0,"triggerChecksTotal":7,"triggerChecksPassed":0,"patternChecksTotal":16,"patternChecksPassed":0,"statusCheckTotal":3,"statusCheckPassed":0,"checksTotal":34,"checksPassed":1,"score":2,"compliant":false,"missingFiles":[".github/workflows/governance-gates.yml",".github/workflows/adversarial-review.yml",".github/workflows/identity-context-onboarding.yml",".github/workflows/onepassword-rotation-audit.yml",".github/secret-catalog.json",".github/allowed-workflow-secrets.txt",".gitleaks.toml"],"missingTriggers":[".github/workflows/adversarial-review.yml:pull_request_target",".github/workflows/governance-gates.yml:pull_request",".github/workflows/governance-gates.yml:push",".github/workflows/identity-context-onboarding.yml:pull_request",".github/workflows/identity-context-onboarding.yml:push",".github/workflows/onepassword-rotation-audit.yml:schedule",".github/workflows/onepassword-rotation-audit.yml:workflow_dispatch"],"missingPatterns":[".chittyconnect.yml:onboarding:",".chittyconnect.yml:provisions:",".chittyconnect.yml:chitty_id:",".chittyconnect.yml:service_token:",".chittyconnect.yml:certificate:",".chittyconnect.yml:trust_chain:",".chittyconnect.yml:context_consciousness:",".chittyconnect.yml:enabled:",".chittyconnect.yml:chittydna:",".chittyconnect.yml:memorycloude:",".chittyconnect.yml:synthetic_entity:",".chittyconnect.yml:type:",".chittyconnect.yml:classification:",".chittyconnect.yml:authority_scope:",".chittyconnect.yml:access_scope:",".chittyconnect.yml:actor_binding:"],"missingStatusChecks":["Governance Gates / gates","Identity & Context Onboarding Gate / identity-onboarding","Adversarial Review Orchestrator / orchestrate"]} diff --git a/reports/org-governance-smoke/report-20260302T002833Z.md b/reports/org-governance-smoke/report-20260302T002833Z.md new file mode 100644 index 0000000..7d589c7 --- /dev/null +++ b/reports/org-governance-smoke/report-20260302T002833Z.md @@ -0,0 +1,22 @@ +# Org Governance Audit Report + +- Timestamp (UTC): 20260302T002833Z +- Policy: .github/org-governance-policy.json + +## Summary + +- Repos audited: 1 +- Compliant repos: 0 +- Non-compliant repos: 1 + +## By Org + +| Org | Audited | Compliant | Non-Compliant | +|---|---:|---:|---:| +| CHITTYOS | 1 | 0 | 1 | + +## Non-Compliant Repositories + +| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Branch Protection | +|---|---:|---|---|---|---|---| +| CHITTYOS/chittyscore | 2% | .github/workflows/governance-gates.yml, .github/workflows/adversarial-review.yml, .github/workflows/identity-context-onboarding.yml, .github/workflows/onepassword-rotation-audit.yml, .github/secret-catalog.json, .github/allowed-workflow-secrets.txt, .gitleaks.toml | .chittyconnect.yml:onboarding:, .chittyconnect.yml:provisions:, .chittyconnect.yml:chitty_id:, .chittyconnect.yml:service_token:, .chittyconnect.yml:certificate:, .chittyconnect.yml:trust_chain:, .chittyconnect.yml:context_consciousness:, .chittyconnect.yml:enabled:, .chittyconnect.yml:chittydna:, .chittyconnect.yml:memorycloude:, .chittyconnect.yml:synthetic_entity:, .chittyconnect.yml:type:, .chittyconnect.yml:classification:, .chittyconnect.yml:authority_scope:, .chittyconnect.yml:access_scope:, .chittyconnect.yml:actor_binding: | .github/workflows/adversarial-review.yml:pull_request_target, .github/workflows/governance-gates.yml:pull_request, .github/workflows/governance-gates.yml:push, .github/workflows/identity-context-onboarding.yml:pull_request, .github/workflows/identity-context-onboarding.yml:push, .github/workflows/onepassword-rotation-audit.yml:schedule, .github/workflows/onepassword-rotation-audit.yml:workflow_dispatch | Governance Gates / gates, Identity & Context Onboarding Gate / identity-onboarding, Adversarial Review Orchestrator / orchestrate | true | diff --git a/scripts/check-chitty-onboarding.sh b/scripts/check-chitty-onboarding.sh new file mode 100755 index 0000000..bac1398 --- /dev/null +++ b/scripts/check-chitty-onboarding.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env bash +set -euo pipefail + +TARGET_FILE="${1:-.chittyconnect.yml}" + +if [[ ! -f "${TARGET_FILE}" ]]; then + echo "Missing required onboarding file: ${TARGET_FILE}" >&2 + exit 1 +fi + +required_patterns=( + "onboarding:" + "provisions:" + "chitty_id:" + "service_token:" + "certificate:" + "trust_chain:" + "context_consciousness:" + "chittydna:" + "memorycloude:" + "synthetic_entity:" + "type:" + "classification:" + "authority_scope:" + "access_scope:" + "actor_binding:" +) + +missing=0 +for pattern in "${required_patterns[@]}"; do + if ! grep -Eq "^[[:space:]-]*${pattern}[[:space:]]*" "${TARGET_FILE}"; then + echo "Missing onboarding key pattern: ${pattern}" >&2 + missing=1 + fi +done + +if [[ "${missing}" -ne 0 ]]; then + echo "ChittyID context onboarding policy check failed." >&2 + exit 1 +fi + +echo "ChittyID context onboarding policy check passed." diff --git a/scripts/chittycompliance-dispatch.sh b/scripts/chittycompliance-dispatch.sh new file mode 100755 index 0000000..b6d12a5 --- /dev/null +++ b/scripts/chittycompliance-dispatch.sh @@ -0,0 +1,167 @@ +#!/usr/bin/env bash +set -euo pipefail + +REPO="" +MODE="remediation" +FINDINGS="" +STRICT_MODE="${CHITTY_DISPATCH_STRICT:-false}" +BROKER_URL="${CHITTYCONNECT_ACCESS_BROKER_URL:-}" +BROKER_TOKEN="${CHITTYCONNECT_BROKER_TOKEN:-}" +DISPATCH_TIMEOUT_SEC="${CHITTY_DISPATCH_TIMEOUT_SEC:-15}" +LOCAL_AGENT_DISPATCH="${CHITTY_LOCAL_AGENT_DISPATCH:-true}" + +usage() { + cat <<'EOF' +Usage: chittycompliance-dispatch.sh --repo ORG/REPO [--mode remediation|adversarial] [--findings "..."] +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --repo) + REPO="$2" + shift 2 + ;; + --mode) + MODE="$2" + shift 2 + ;; + --findings) + FINDINGS="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ -z "${REPO}" ]]; then + echo "Missing --repo" >&2 + exit 1 +fi + +if ! command -v jq >/dev/null 2>&1; then + echo "jq is required for broker response parsing" >&2 + exit 1 +fi + +task_payload="repo=${REPO}; mode=${MODE}; findings=${FINDINGS}" +echo "Dispatching chittycompliance agents: ${task_payload}" >&2 + +dispatch_success=0 +gateway_url="${CHITTY_GATEWAY_DISPATCH_URL:-}" +gateway_token="${CHITTY_GATEWAY_TOKEN:-}" +orchestrator_url="${CHITTY_AGENT_ORCHESTRATOR_URL:-}" +orchestrator_token="${CHITTY_AGENT_TOKEN:-}" + +# timeout wrapper for potentially slow commands. +run_with_timeout() { + if command -v timeout >/dev/null 2>&1; then + timeout "${DISPATCH_TIMEOUT_SEC}" "$@" + elif command -v gtimeout >/dev/null 2>&1; then + gtimeout "${DISPATCH_TIMEOUT_SEC}" "$@" + else + "$@" + fi +} + +# Primary access path: ask ChittyConnect broker for contextual, short-lived credentials. +if [[ -n "${BROKER_URL}" && -n "${BROKER_TOKEN}" ]]; then + broker_response="$(run_with_timeout curl -fsS -X POST "${BROKER_URL}" \ + -H "Authorization: Bearer ${BROKER_TOKEN}" \ + -H "Content-Type: application/json" \ + -d "$(jq -nc \ + --arg repo "${REPO}" \ + --arg mode "${MODE}" \ + --arg findings "${FINDINGS}" \ + --arg run_id "${GITHUB_RUN_ID:-local}" \ + --arg actor "${GITHUB_ACTOR:-local}" \ + --arg workflow "${GITHUB_WORKFLOW:-local}" \ + '{repo:$repo, mode:$mode, findings:$findings, context:{source:"org-governance-control-loop", run_id:$run_id, actor:$actor, workflow:$workflow}, requested_access:["gateway_dispatch","agent_orchestrator"]}')" 2>/dev/null || true)" + + if [[ -n "${broker_response}" ]]; then + decision="$(jq -r '.decision // "deny"' <<< "${broker_response}" 2>/dev/null || echo "deny")" + if [[ "${decision}" == "allow" ]]; then + broker_gateway_url="$(jq -r '.gateway.url // empty' <<< "${broker_response}" 2>/dev/null || true)" + broker_gateway_token="$(jq -r '.gateway.token // empty' <<< "${broker_response}" 2>/dev/null || true)" + broker_orchestrator_url="$(jq -r '.orchestrator.url // empty' <<< "${broker_response}" 2>/dev/null || true)" + broker_orchestrator_token="$(jq -r '.orchestrator.token // empty' <<< "${broker_response}" 2>/dev/null || true)" + + [[ -n "${broker_gateway_url}" ]] && gateway_url="${broker_gateway_url}" + [[ -n "${broker_gateway_token}" ]] && gateway_token="${broker_gateway_token}" + [[ -n "${broker_orchestrator_url}" ]] && orchestrator_url="${broker_orchestrator_url}" + [[ -n "${broker_orchestrator_token}" ]] && orchestrator_token="${broker_orchestrator_token}" + else + reason="$(jq -r '.reason // "access denied by chittyconnect broker"' <<< "${broker_response}" 2>/dev/null || echo "access denied")" + echo "ChittyConnect broker denied access: ${reason}" >&2 + if [[ "${STRICT_MODE}" == "true" ]]; then + exit 3 + fi + fi + elif [[ "${STRICT_MODE}" == "true" ]]; then + echo "ChittyConnect broker unavailable; strict mode enabled." >&2 + exit 3 + fi +elif [[ "${STRICT_MODE}" == "true" ]]; then + echo "Missing ChittyConnect broker configuration in strict mode." >&2 + exit 3 +fi + +# Best-effort local agent dispatch. Non-blocking by design. +if [[ "${LOCAL_AGENT_DISPATCH}" == "true" ]] && command -v can >/dev/null 2>&1; then + case "${MODE}" in + remediation) + run_with_timeout can chitty agent run chittyagent-canon "${task_payload}" >/dev/null 2>&1 || true + run_with_timeout can chitty agent run chittyagent-connect "${task_payload}" >/dev/null 2>&1 || true + run_with_timeout can chitty agent run chittyagent-register "${task_payload}" >/dev/null 2>&1 || true + ;; + adversarial) + run_with_timeout can chitty agent run chittyagent-canon "adversarial-review ${task_payload}" >/dev/null 2>&1 || true + run_with_timeout can chitty agent run chittyagent-neon-schema "adversarial-review ${task_payload}" >/dev/null 2>&1 || true + ;; + esac +fi + +# Optional remote dispatch for centralized orchestration. +if [[ -n "${CHITTYCOMPLIANCE_AGENT_ENDPOINT:-}" ]]; then + run_with_timeout curl -fsS -X POST "${CHITTYCOMPLIANCE_AGENT_ENDPOINT}" \ + -H "Content-Type: application/json" \ + -d "$(jq -nc --arg repo "${REPO}" --arg mode "${MODE}" --arg findings "${FINDINGS}" '{repo:$repo, mode:$mode, findings:$findings}')" >/dev/null && dispatch_success=1 || true +fi + +# Primary path: ChittyGateway / ChittyAgent orchestrator on Cloudflare Workers AI. +if [[ -n "${gateway_url}" ]]; then + auth_headers=() + if [[ -n "${gateway_token}" ]]; then + auth_headers+=(-H "Authorization: Bearer ${gateway_token}") + fi + run_with_timeout curl -fsS -X POST "${gateway_url}" \ + -H "Content-Type: application/json" \ + "${auth_headers[@]}" \ + -d "$(jq -nc --arg repo "${REPO}" --arg mode "${MODE}" --arg findings "${FINDINGS}" '{pipeline:"chittycompliance", repo:$repo, mode:$mode, findings:$findings}')" >/dev/null && dispatch_success=1 || true +fi + +if [[ -n "${orchestrator_url}" ]]; then + auth_headers=() + if [[ -n "${orchestrator_token}" ]]; then + auth_headers+=(-H "Authorization: Bearer ${orchestrator_token}") + fi + run_with_timeout curl -fsS -X POST "${orchestrator_url}" \ + -H "Content-Type: application/json" \ + "${auth_headers[@]}" \ + -d "$(jq -nc --arg repo "${REPO}" --arg mode "${MODE}" --arg findings "${FINDINGS}" '{operation:"governance_review", repo:$repo, mode:$mode, findings:$findings}')" >/dev/null && dispatch_success=1 || true +fi + +if [[ "${STRICT_MODE}" == "true" && "${dispatch_success}" -eq 0 ]]; then + echo "No successful remote dispatch in strict mode." >&2 + exit 4 +fi + +echo "Dispatch completed (best-effort)." >&2 diff --git a/scripts/onepassword-rotation-audit.sh b/scripts/onepassword-rotation-audit.sh new file mode 100755 index 0000000..2cba149 --- /dev/null +++ b/scripts/onepassword-rotation-audit.sh @@ -0,0 +1,114 @@ +#!/usr/bin/env bash +set -euo pipefail + +CATALOG_FILE="${1:-.github/secret-catalog.json}" +OUT_DIR="${2:-reports/secret-rotation}" + +if ! command -v op >/dev/null 2>&1; then + echo "1Password CLI (op) is required." >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq is required." >&2 + exit 1 +fi + +if [[ ! -f "${CATALOG_FILE}" ]]; then + echo "Missing secret catalog: ${CATALOG_FILE}" >&2 + exit 1 +fi + +mkdir -p "${OUT_DIR}" +timestamp="$(date -u +%Y%m%dT%H%M%SZ)" +json_path="${OUT_DIR}/rotation-${timestamp}.json" +md_path="${OUT_DIR}/rotation-${timestamp}.md" + +rows='[]' +stale_count=0 +total=0 + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + total=$((total + 1)) + name="$(jq -r '.name' <<< "${row}")" + op_ref="$(jq -r '.op_ref' <<< "${row}")" + rotation_days="$(jq -r '.rotation_days' <<< "${row}")" + owner="$(jq -r '.owner // "unknown"' <<< "${row}")" + + item_ref="${op_ref%/*}" + item_json="$(op item get "${item_ref}" --format json 2>/dev/null || true)" + if [[ -z "${item_json}" ]]; then + rows="$(jq -c --arg name "${name}" --arg owner "${owner}" \ + '. + [{"name":$name,"owner":$owner,"status":"missing","age_days":null,"rotation_days":null}]' <<< "${rows}")" + stale_count=$((stale_count + 1)) + continue + fi + + updated_at="$(jq -r '.updated_at // .created_at // empty' <<< "${item_json}")" + if [[ -z "${updated_at}" ]]; then + rows="$(jq -c --arg name "${name}" --arg owner "${owner}" \ + '. + [{"name":$name,"owner":$owner,"status":"unknown_age","age_days":null,"rotation_days":null}]' <<< "${rows}")" + stale_count=$((stale_count + 1)) + continue + fi + + age_days="$( + python3 - <<'PY' "${updated_at}" +from datetime import datetime, timezone +import sys +v=sys.argv[1] +if v.endswith('Z'): + v=v[:-1] + '+00:00' +d=datetime.fromisoformat(v) +if d.tzinfo is None: + d=d.replace(tzinfo=timezone.utc) +now=datetime.now(timezone.utc) +print((now-d).days) +PY + )" + + status="ok" + if [[ "${age_days}" -ge "${rotation_days}" ]]; then + status="stale" + stale_count=$((stale_count + 1)) + fi + + rows="$(jq -c \ + --arg name "${name}" \ + --arg owner "${owner}" \ + --arg status "${status}" \ + --argjson age_days "${age_days}" \ + --argjson rotation_days "${rotation_days}" \ + '. + [{"name":$name,"owner":$owner,"status":$status,"age_days":$age_days,"rotation_days":$rotation_days}]' <<< "${rows}")" +done < <(jq -c '.secrets[]' "${CATALOG_FILE}") + +jq -nc \ + --arg timestamp "${timestamp}" \ + --arg catalog "${CATALOG_FILE}" \ + --argjson total "${total}" \ + --argjson stale "${stale_count}" \ + --argjson entries "${rows}" \ + '{timestamp:$timestamp,catalog:$catalog,total:$total,stale:$stale,entries:$entries}' > "${json_path}" +cp "${json_path}" "${OUT_DIR}/latest.json" + +{ + echo "# 1Password Rotation Audit" + echo + echo "- Timestamp: ${timestamp}" + echo "- Catalog: ${CATALOG_FILE}" + echo "- Secrets audited: ${total}" + echo "- Non-compliant (stale/missing): ${stale_count}" + echo + echo "| Name | Owner | Status | Age (days) | Rotation window (days) |" + echo "|---|---|---|---:|---:|" + jq -r '.entries[] | "| \(.name) | \(.owner) | \(.status) | \(.age_days // "n/a") | \(.rotation_days // "n/a") |"' "${json_path}" +} > "${md_path}" +cp "${md_path}" "${OUT_DIR}/latest.md" + +echo "Wrote ${json_path}" +echo "Wrote ${md_path}" + +if [[ "${stale_count}" -gt 0 ]]; then + echo "Rotation audit failed: ${stale_count} secret(s) out of policy." >&2 + exit 2 +fi diff --git a/scripts/org-governance-adversarial-review.sh b/scripts/org-governance-adversarial-review.sh new file mode 100755 index 0000000..5f3ec6c --- /dev/null +++ b/scripts/org-governance-adversarial-review.sh @@ -0,0 +1,99 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" + +usage() { + cat <<'EOF' +Usage: org-governance-adversarial-review.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi + +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +ISSUE_TITLE="$(jq -r '.complianceIssueTitle // "[Governance] CI/CD compliance gaps"' "${POLICY_FILE}")" + +rows="$(jq -c '.[] | select(.compliant == false)' "${REPORT_FILE}")" +if [[ -z "${rows}" ]]; then + echo "Adversarial review: no non-compliant repos in report." + exit 0 +fi + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + full_repo="$(jq -r '.fullRepo' <<< "${row}")" + score="$(jq -r '.score' <<< "${row}")" + missing_files="$(jq -r '(.missingFiles // []) | join(", ")' <<< "${row}")" + missing_patterns="$(jq -r '(.missingPatterns // []) | join(", ")' <<< "${row}")" + missing_triggers="$(jq -r '(.missingTriggers // []) | join(", ")' <<< "${row}")" + missing_status_checks="$(jq -r '.missingStatusChecks // [] | join(", ")' <<< "${row}")" + missing_repo_settings="$(jq -r '.missingRepoSettings // [] | join(", ")' <<< "${row}")" + + review_body=$( + cat </dev/null || true + fi + + bash "${ROOT_DIR}/scripts/chittycompliance-dispatch.sh" \ + --repo "${full_repo}" \ + --mode adversarial \ + --findings "score=${score};missing_files=${missing_files};missing_patterns=${missing_patterns};missing_triggers=${missing_triggers};missing_status_checks=${missing_status_checks};missing_repo_settings=${missing_repo_settings}" || true +done <<< "${rows}" + +echo "Adversarial review loop complete." diff --git a/scripts/org-governance-audit.sh b/scripts/org-governance-audit.sh new file mode 100755 index 0000000..7565c1c --- /dev/null +++ b/scripts/org-governance-audit.sh @@ -0,0 +1,388 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +OUT_DIR="${ROOT_DIR}/reports/org-governance" +MAX_REPOS_OVERRIDE="" +declare -a ORGS=() + +usage() { + cat <<'EOF' +Usage: org-governance-audit.sh [options] + +Options: + --policy Policy JSON file (default: .github/org-governance-policy.json) + --out-dir Output directory (default: reports/org-governance) + --org Org override (repeatable) + --max-repos Limit repos per org for quick runs (0 = no limit) + --help Show help +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --out-dir) + OUT_DIR="$2" + shift 2 + ;; + --org) + ORGS+=("$2") + shift 2 + ;; + --max-repos) + MAX_REPOS_OVERRIDE="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +if [[ ! -f "${POLICY_FILE}" ]]; then + echo "Missing policy file: ${POLICY_FILE}" >&2 + exit 1 +fi + +if [[ ${#ORGS[@]} -eq 0 ]]; then + orgs_from_policy="$(jq -r '.orgs[]' "${POLICY_FILE}")" + while IFS= read -r org; do + [[ -z "${org}" ]] && continue + ORGS+=("${org}") + done <<< "${orgs_from_policy}" +fi + +INCLUDE_ARCHIVED="$(jq -r '.includeArchived // false' "${POLICY_FILE}")" +REQUIRE_BRANCH_PROTECTION="$(jq -r '.requireBranchProtection // true' "${POLICY_FILE}")" +MAX_REPOS_POLICY="$(jq -r '.maxReposPerOrg // 0' "${POLICY_FILE}")" +MAX_REPOS="${MAX_REPOS_POLICY}" +if [[ -n "${MAX_REPOS_OVERRIDE}" ]]; then + MAX_REPOS="${MAX_REPOS_OVERRIDE}" +fi + +REQUIRED_FILES_JSON="$(jq -c '.requiredFiles // []' "${POLICY_FILE}")" +REQUIRED_TRIGGERS_JSON="$(jq -c '.requiredWorkflowTriggers // {}' "${POLICY_FILE}")" +REQUIRED_STATUS_CHECKS_JSON="$(jq -c '.requiredStatusChecks // []' "${POLICY_FILE}")" +REQUIRED_FILE_PATTERNS_JSON="$(jq -c '.requiredFilePatterns // {}' "${POLICY_FILE}")" +ENFORCE_DEFAULT_BRANCH_NAME="$(jq -r '.repoSettings.enforceDefaultBranchName // false' "${POLICY_FILE}")" +DEFAULT_BRANCH_NAME="$(jq -r '.repoSettings.defaultBranchName // ""' "${POLICY_FILE}")" +PUSH_POLICY_ENABLED="$(jq -r '.repoSettings.pushPolicy.enabled // false' "${POLICY_FILE}")" +PUSH_POLICY_MAX_REF_UPDATES="$(jq -r '.repoSettings.pushPolicy.maxRefUpdates // 0' "${POLICY_FILE}")" + +mkdir -p "${OUT_DIR}" +TIMESTAMP="$(date -u +%Y%m%dT%H%M%SZ)" +JSONL_PATH="${OUT_DIR}/report-${TIMESTAMP}.jsonl" +JSON_PATH="${OUT_DIR}/report-${TIMESTAMP}.json" +MD_PATH="${OUT_DIR}/report-${TIMESTAMP}.md" + +touch "${JSONL_PATH}" + +repo_cursor() { + local org="$1" + if gh api "/orgs/${org}" >/dev/null 2>&1; then + gh api --paginate "/orgs/${org}/repos?per_page=100&type=all" + return + fi + if gh api "/users/${org}" >/dev/null 2>&1; then + gh api --paginate "/users/${org}/repos?per_page=100&type=owner" + return + fi + return 1 +} + +check_file_exists() { + local full_repo="$1" + local default_branch="$2" + local path="$3" + gh api "/repos/${full_repo}/contents/${path}?ref=${default_branch}" >/dev/null 2>&1 +} + +fetch_file_content() { + local full_repo="$1" + local default_branch="$2" + local path="$3" + local encoded + encoded="$(gh api "/repos/${full_repo}/contents/${path}?ref=${default_branch}" --jq '.content' 2>/dev/null || true)" + if [[ -z "${encoded}" || "${encoded}" == "null" ]]; then + return 1 + fi + printf '%s' "${encoded}" | tr -d '\n' | base64 --decode 2>/dev/null || return 1 +} + +check_file_patterns() { + local content="$1" + local patterns_json="$2" + local missing='[]' + while IFS= read -r pattern; do + [[ -z "${pattern}" ]] && continue + if ! grep -Eq "^[[:space:]-]*${pattern}[[:space:]]*" <<< "${content}"; then + missing="$(jq -c --arg p "${pattern}" '. + [$p]' <<< "${missing}")" + fi + done < <(jq -r '.[]' <<< "${patterns_json}") + echo "${missing}" +} + +for org in "${ORGS[@]}"; do + echo "Auditing org: ${org}" >&2 + repos_raw="$(repo_cursor "${org}" || true)" + if [[ -z "${repos_raw}" ]]; then + echo "Skipping ${org}: not found or no visible repositories." >&2 + continue + fi + repos_json="$(jq -s 'add' <<< "${repos_raw}")" + repo_count=0 + while IFS= read -r repo_obj; do + repo_name="$(jq -r '.name' <<< "${repo_obj}")" + archived="$(jq -r '.archived' <<< "${repo_obj}")" + disabled="$(jq -r '.disabled' <<< "${repo_obj}")" + default_branch="$(jq -r '.default_branch // "main"' <<< "${repo_obj}")" + + if [[ "${disabled}" == "true" ]]; then + continue + fi + if [[ "${INCLUDE_ARCHIVED}" != "true" && "${archived}" == "true" ]]; then + continue + fi + if [[ "${MAX_REPOS}" != "0" && "${repo_count}" -ge "${MAX_REPOS}" ]]; then + break + fi + repo_count=$((repo_count + 1)) + full_repo="${org}/${repo_name}" + repo_detail_json="$(gh api "/repos/${full_repo}" 2>/dev/null || true)" + + required_files_total="$(jq 'length' <<< "${REQUIRED_FILES_JSON}")" + required_files_present=0 + missing_files_json='[]' + while IFS= read -r required_file; do + if check_file_exists "${full_repo}" "${default_branch}" "${required_file}"; then + required_files_present=$((required_files_present + 1)) + else + missing_files_json="$(jq -c --arg item "${required_file}" '. + [$item]' <<< "${missing_files_json}")" + fi + done < <(jq -r '.[]' <<< "${REQUIRED_FILES_JSON}") + + pattern_checks_total=0 + pattern_checks_passed=0 + missing_patterns_json='[]' + while IFS= read -r file_path; do + [[ -z "${file_path}" ]] && continue + file_patterns="$(jq -c --arg fp "${file_path}" '.[$fp]' <<< "${REQUIRED_FILE_PATTERNS_JSON}")" + file_patterns_count="$(jq 'length' <<< "${file_patterns}")" + pattern_checks_total=$((pattern_checks_total + file_patterns_count)) + + file_content="$(fetch_file_content "${full_repo}" "${default_branch}" "${file_path}" || true)" + if [[ -z "${file_content}" ]]; then + while IFS= read -r p; do + missing_patterns_json="$(jq -c --arg item "${file_path}:${p}" '. + [$item]' <<< "${missing_patterns_json}")" + done < <(jq -r '.[]' <<< "${file_patterns}") + continue + fi + + missing_for_file="$(check_file_patterns "${file_content}" "${file_patterns}")" + missing_count="$(jq 'length' <<< "${missing_for_file}")" + pattern_checks_passed=$((pattern_checks_passed + file_patterns_count - missing_count)) + while IFS= read -r p; do + [[ -z "${p}" ]] && continue + missing_patterns_json="$(jq -c --arg item "${file_path}:${p}" '. + [$item]' <<< "${missing_patterns_json}")" + done < <(jq -r '.[]' <<< "${missing_for_file}") + done < <(jq -r 'keys[]' <<< "${REQUIRED_FILE_PATTERNS_JSON}") + + trigger_checks_total=0 + trigger_checks_passed=0 + missing_triggers_json='[]' + while IFS= read -r workflow_path; do + workflow_content="$(fetch_file_content "${full_repo}" "${default_branch}" "${workflow_path}" || true)" + while IFS= read -r trigger_name; do + trigger_checks_total=$((trigger_checks_total + 1)) + if [[ -n "${workflow_content}" ]] && grep -Eq "(^|[[:space:]])${trigger_name}:" <<< "${workflow_content}"; then + trigger_checks_passed=$((trigger_checks_passed + 1)) + else + missing_triggers_json="$(jq -c --arg item "${workflow_path}:${trigger_name}" '. + [$item]' <<< "${missing_triggers_json}")" + fi + done < <(jq -r --arg wf "${workflow_path}" '.[$wf][]' <<< "${REQUIRED_TRIGGERS_JSON}") + done < <(jq -r 'keys[]' <<< "${REQUIRED_TRIGGERS_JSON}") + + branch_protection_enabled=true + branch_check_total=0 + branch_check_passed=0 + status_check_total=0 + status_check_passed=0 + missing_status_checks_json='[]' + if [[ "${REQUIRE_BRANCH_PROTECTION}" == "true" ]]; then + branch_check_total=1 + protection_json="$(gh api "/repos/${full_repo}/branches/${default_branch}/protection" 2>/dev/null || true)" + if [[ -n "${protection_json}" ]]; then + branch_check_passed=1 + status_check_total="$(jq 'length' <<< "${REQUIRED_STATUS_CHECKS_JSON}")" + while IFS= read -r status_name; do + [[ -z "${status_name}" ]] && continue + if jq -e --arg s "${status_name}" '.required_status_checks.contexts // [] | index($s) != null' <<< "${protection_json}" >/dev/null; then + status_check_passed=$((status_check_passed + 1)) + else + missing_status_checks_json="$(jq -c --arg item "${status_name}" '. + [$item]' <<< "${missing_status_checks_json}")" + fi + done < <(jq -r '.[]' <<< "${REQUIRED_STATUS_CHECKS_JSON}") + else + branch_protection_enabled=false + fi + fi + + repo_settings_checks_total=0 + repo_settings_checks_passed=0 + missing_repo_settings_json='[]' + + if [[ "${ENFORCE_DEFAULT_BRANCH_NAME}" == "true" && -n "${DEFAULT_BRANCH_NAME}" ]]; then + repo_settings_checks_total=$((repo_settings_checks_total + 1)) + if [[ "${default_branch}" == "${DEFAULT_BRANCH_NAME}" ]]; then + repo_settings_checks_passed=$((repo_settings_checks_passed + 1)) + else + missing_repo_settings_json="$(jq -c --arg item "defaultBranch:${default_branch}->${DEFAULT_BRANCH_NAME}" '. + [$item]' <<< "${missing_repo_settings_json}")" + fi + fi + + if [[ "${PUSH_POLICY_ENABLED}" == "true" ]]; then + repo_settings_checks_total=$((repo_settings_checks_total + 1)) + current_max_ref_updates="$(jq -r '.max_ref_updates // 0' <<< "${repo_detail_json}" 2>/dev/null || echo "0")" + if [[ "${current_max_ref_updates}" == "${PUSH_POLICY_MAX_REF_UPDATES}" ]]; then + repo_settings_checks_passed=$((repo_settings_checks_passed + 1)) + else + missing_repo_settings_json="$(jq -c --arg item "maxRefUpdates:${current_max_ref_updates}->${PUSH_POLICY_MAX_REF_UPDATES}" '. + [$item]' <<< "${missing_repo_settings_json}")" + fi + fi + + checks_total=$((required_files_total + pattern_checks_total + trigger_checks_total + branch_check_total + status_check_total + repo_settings_checks_total)) + checks_passed=$((required_files_present + pattern_checks_passed + trigger_checks_passed + branch_check_passed + status_check_passed + repo_settings_checks_passed)) + score=0 + if [[ "${checks_total}" -gt 0 ]]; then + score="$(( (checks_passed * 100) / checks_total ))" + fi + + compliant=true + if [[ "${required_files_present}" -ne "${required_files_total}" || "${pattern_checks_passed}" -ne "${pattern_checks_total}" || "${trigger_checks_passed}" -ne "${trigger_checks_total}" ]]; then + compliant=false + fi + if [[ "${REQUIRE_BRANCH_PROTECTION}" == "true" && ( "${branch_protection_enabled}" != "true" || "${status_check_passed}" -ne "${status_check_total}" ) ]]; then + compliant=false + fi + if [[ "${repo_settings_checks_passed}" -ne "${repo_settings_checks_total}" ]]; then + compliant=false + fi + + jq -nc \ + --arg org "${org}" \ + --arg repo "${repo_name}" \ + --arg fullRepo "${full_repo}" \ + --arg defaultBranch "${default_branch}" \ + --argjson archived "${archived}" \ + --argjson branchProtection "${branch_protection_enabled}" \ + --argjson requiredFilesTotal "${required_files_total}" \ + --argjson requiredFilesPresent "${required_files_present}" \ + --argjson triggerChecksTotal "${trigger_checks_total}" \ + --argjson triggerChecksPassed "${trigger_checks_passed}" \ + --argjson patternChecksTotal "${pattern_checks_total}" \ + --argjson patternChecksPassed "${pattern_checks_passed}" \ + --argjson statusCheckTotal "${status_check_total}" \ + --argjson statusCheckPassed "${status_check_passed}" \ + --argjson repoSettingsChecksTotal "${repo_settings_checks_total}" \ + --argjson repoSettingsChecksPassed "${repo_settings_checks_passed}" \ + --argjson checksTotal "${checks_total}" \ + --argjson checksPassed "${checks_passed}" \ + --argjson score "${score}" \ + --argjson compliant "${compliant}" \ + --argjson missingFiles "${missing_files_json}" \ + --argjson missingTriggers "${missing_triggers_json}" \ + --argjson missingPatterns "${missing_patterns_json}" \ + --argjson missingStatusChecks "${missing_status_checks_json}" \ + --argjson missingRepoSettings "${missing_repo_settings_json}" \ + '{ + org: $org, + repo: $repo, + fullRepo: $fullRepo, + defaultBranch: $defaultBranch, + archived: $archived, + branchProtection: $branchProtection, + requiredFilesTotal: $requiredFilesTotal, + requiredFilesPresent: $requiredFilesPresent, + triggerChecksTotal: $triggerChecksTotal, + triggerChecksPassed: $triggerChecksPassed, + patternChecksTotal: $patternChecksTotal, + patternChecksPassed: $patternChecksPassed, + statusCheckTotal: $statusCheckTotal, + statusCheckPassed: $statusCheckPassed, + repoSettingsChecksTotal: $repoSettingsChecksTotal, + repoSettingsChecksPassed: $repoSettingsChecksPassed, + checksTotal: $checksTotal, + checksPassed: $checksPassed, + score: $score, + compliant: $compliant, + missingFiles: $missingFiles, + missingTriggers: $missingTriggers, + missingPatterns: $missingPatterns, + missingStatusChecks: $missingStatusChecks, + missingRepoSettings: $missingRepoSettings + }' >> "${JSONL_PATH}" + done < <(jq -c '.[]' <<< "${repos_json}") +done + +jq -s '.' "${JSONL_PATH}" > "${JSON_PATH}" +cp "${JSON_PATH}" "${OUT_DIR}/latest.json" + +{ + echo "# Org Governance Audit Report" + echo + echo "- Timestamp (UTC): ${TIMESTAMP}" + echo "- Policy: ${POLICY_FILE}" + echo + jq -r ' + "## Summary", + "", + "- Repos audited: \((length))", + "- Compliant repos: \((map(select(.compliant == true)) | length))", + "- Non-compliant repos: \((map(select(.compliant == false)) | length))", + "", + "## By Org", + "", + "| Org | Audited | Compliant | Non-Compliant |", + "|---|---:|---:|---:|", + ( + group_by(.org)[] + | "| \(. [0].org) | \((length)) | \((map(select(.compliant)) | length)) | \((map(select(.compliant | not)) | length)) |" + ), + "", + "## Non-Compliant Repositories", + "", + "| Repository | Score | Missing Files | Missing Patterns | Missing Triggers | Missing Status Checks | Missing Repo Settings | Branch Protection |", + "|---|---:|---|---|---|---|---|---|", + ( + map(select(.compliant | not))[] + | "| \(.fullRepo) | \(.score)% | \((.missingFiles | join(", "))) | \((.missingPatterns | join(", "))) | \((.missingTriggers | join(", "))) | \((.missingStatusChecks | join(", "))) | \((.missingRepoSettings // [] | join(", "))) | \(.branchProtection) |" + ) + ' "${JSON_PATH}" +} > "${MD_PATH}" +cp "${MD_PATH}" "${OUT_DIR}/latest.md" + +echo "Wrote:" +echo " ${JSON_PATH}" +echo " ${MD_PATH}" +echo " ${OUT_DIR}/latest.json" +echo " ${OUT_DIR}/latest.md" diff --git a/scripts/org-governance-enable-auto-merge.sh b/scripts/org-governance-enable-auto-merge.sh new file mode 100755 index 0000000..91720e5 --- /dev/null +++ b/scripts/org-governance-enable-auto-merge.sh @@ -0,0 +1,88 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +DRY_RUN="false" + +usage() { + cat <<'EOF' +Usage: org-governance-enable-auto-merge.sh [options] + +Options: + --report Audit report JSON (array) + --dry-run Print actions only (default: false) +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --report) + REPORT_FILE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +successes=0 +failures=0 +skipped=0 + +repos="$(jq -r '.[] | select(.archived==false) | .fullRepo' "${REPORT_FILE}" | sort -u)" +if [[ -z "${repos}" ]]; then + echo "No repos in report." + exit 0 +fi + +while IFS= read -r full_repo; do + [[ -z "${full_repo}" ]] && continue + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would enable auto-merge in ${full_repo}" + skipped=$((skipped + 1)) + continue + fi + + if gh api -X PATCH "repos/${full_repo}" \ + -f allow_auto_merge=true \ + -f allow_squash_merge=true \ + -f allow_update_branch=true \ + -f delete_branch_on_merge=true \ + >/dev/null 2>&1; then + successes=$((successes + 1)) + echo "Enabled auto-merge in ${full_repo}" + else + failures=$((failures + 1)) + echo "Failed to enable auto-merge in ${full_repo}" >&2 + fi +done <<< "${repos}" + +echo "Auto-merge settings update complete: success=${successes} failed=${failures} skipped=${skipped}" +if [[ "${failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-enforce-repo-settings.sh b/scripts/org-governance-enforce-repo-settings.sh new file mode 100755 index 0000000..d0365b6 --- /dev/null +++ b/scripts/org-governance-enforce-repo-settings.sh @@ -0,0 +1,152 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +DRY_RUN="false" +FAIL_ON_ERROR="true" + +usage() { + cat <<'USAGE' +Usage: org-governance-enforce-repo-settings.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) + --dry-run Print intended actions only (default: false) + --fail-on-error Exit non-zero if any repo update fails (default: true) +USAGE +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --fail-on-error) + FAIL_ON_ERROR="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${POLICY_FILE}" ]]; then + echo "Missing policy file: ${POLICY_FILE}" >&2 + exit 1 +fi +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +enforce_default_branch="$(jq -r '.repoSettings.enforceDefaultBranchName // false' "${POLICY_FILE}")" +expected_default_branch="$(jq -r '.repoSettings.defaultBranchName // empty' "${POLICY_FILE}")" +set_default_when_present="$(jq -r '.repoSettings.setDefaultBranchWhenPresent // true' "${POLICY_FILE}")" +push_policy_enabled="$(jq -r '.repoSettings.pushPolicy.enabled // false' "${POLICY_FILE}")" +push_policy_max_ref_updates="$(jq -r '.repoSettings.pushPolicy.maxRefUpdates // 0' "${POLICY_FILE}")" + +if [[ "${enforce_default_branch}" != "true" && "${push_policy_enabled}" != "true" ]]; then + echo "Repo settings enforcement disabled by policy." + exit 0 +fi +if [[ "${push_policy_enabled}" == "true" && ! "${push_policy_max_ref_updates}" =~ ^[0-9]+$ ]]; then + echo "Invalid repoSettings.pushPolicy.maxRefUpdates: ${push_policy_max_ref_updates}" >&2 + exit 1 +fi + +successes=0 +failures=0 +skipped=0 + +rows="$(jq -c '.[] | select(.archived == false)' "${REPORT_FILE}")" +if [[ -z "${rows}" ]]; then + echo "No active repos in report." + exit 0 +fi + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + full_repo="$(jq -r '.fullRepo // empty' <<< "${row}")" + current_default_branch="$(jq -r '.defaultBranch // empty' <<< "${row}")" + + if [[ -z "${full_repo}" ]]; then + skipped=$((skipped + 1)) + continue + fi + + repo_failed=false + + if [[ "${enforce_default_branch}" == "true" && -n "${expected_default_branch}" && "${current_default_branch}" != "${expected_default_branch}" ]]; then + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would set default branch ${full_repo}: ${current_default_branch} -> ${expected_default_branch}" + elif [[ "${set_default_when_present}" != "true" ]]; then + echo "Policy disallows default branch mutation for ${full_repo}" >&2 + repo_failed=true + elif gh api "repos/${full_repo}/branches/${expected_default_branch}" >/dev/null 2>&1; then + if gh api -X PATCH "repos/${full_repo}" -F default_branch="${expected_default_branch}" >/dev/null 2>&1; then + echo "Set default branch ${full_repo}: ${current_default_branch} -> ${expected_default_branch}" + else + echo "Failed to set default branch for ${full_repo}" >&2 + repo_failed=true + fi + else + echo "Failed to set default branch for ${full_repo}: branch ${expected_default_branch} does not exist" >&2 + repo_failed=true + fi + fi + + if [[ "${push_policy_enabled}" == "true" ]]; then + current_max_ref_updates="$(gh api "repos/${full_repo}" --jq '.max_ref_updates // 0' 2>/dev/null || echo "")" + if [[ -z "${current_max_ref_updates}" ]]; then + echo "Failed to read current push policy for ${full_repo}" >&2 + repo_failed=true + elif [[ "${current_max_ref_updates}" != "${push_policy_max_ref_updates}" ]]; then + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would set max_ref_updates ${full_repo}: ${current_max_ref_updates} -> ${push_policy_max_ref_updates}" + elif gh api -X PATCH "repos/${full_repo}" -F max_ref_updates="${push_policy_max_ref_updates}" >/dev/null 2>&1; then + echo "Set max_ref_updates ${full_repo}: ${current_max_ref_updates} -> ${push_policy_max_ref_updates}" + else + echo "Failed to set max_ref_updates for ${full_repo}" >&2 + repo_failed=true + fi + fi + fi + + if [[ "${repo_failed}" == "true" ]]; then + failures=$((failures + 1)) + else + successes=$((successes + 1)) + fi +done <<< "${rows}" + +echo "Repo settings enforcement complete: success=${successes} failed=${failures} skipped=${skipped}" +if [[ "${FAIL_ON_ERROR}" == "true" && "${failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-enforce-rulesets.sh b/scripts/org-governance-enforce-rulesets.sh new file mode 100755 index 0000000..a6b4e60 --- /dev/null +++ b/scripts/org-governance-enforce-rulesets.sh @@ -0,0 +1,274 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +DRY_RUN="false" +FAIL_ON_ERROR="true" +TARGETS="branch" + +usage() { + cat <<'USAGE' +Usage: org-governance-enforce-rulesets.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) used to scope orgs + --targets Ruleset targets to enforce (branch,push) + --dry-run Print intended actions only (default: false) + --fail-on-error Exit non-zero if any org/target fails (default: true) +USAGE +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --targets) + TARGETS="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --fail-on-error) + FAIL_ON_ERROR="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${POLICY_FILE}" ]]; then + echo "Missing policy file: ${POLICY_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +use_rulesets="$(jq -r '.useOrgRulesets // true' "${POLICY_FILE}")" +if [[ "${use_rulesets}" != "true" ]]; then + echo "Org ruleset enforcement disabled by policy (.useOrgRulesets=false)." + exit 0 +fi + +required_status_checks="$(jq -c '.requiredStatusChecks // []' "${POLICY_FILE}")" +required_review_count="$(jq -r '.requiredApprovingReviewCount // 1' "${POLICY_FILE}")" +if [[ ! "${required_review_count}" =~ ^[0-9]+$ ]]; then + echo "Invalid requiredApprovingReviewCount in policy: ${required_review_count}" >&2 + exit 1 +fi + +orgs="" +if [[ -f "${REPORT_FILE}" ]]; then + orgs="$(jq -r '.[] | .org' "${REPORT_FILE}" 2>/dev/null | sort -u || true)" +fi +if [[ -z "${orgs}" ]]; then + orgs="$(jq -r '.orgs[]' "${POLICY_FILE}")" +fi +if [[ -z "${orgs}" ]]; then + echo "No orgs resolved from report or policy." + exit 0 +fi + +build_rules() { + local target="$1" + local spec_json="$2" + + jq -nc \ + --arg target "${target}" \ + --argjson spec "${spec_json}" \ + --argjson requiredChecks "${required_status_checks}" \ + --argjson reviewCount "${required_review_count}" ' + [ + (if $target == "branch" then + { + type: "pull_request", + parameters: { + allowed_merge_methods: ($spec.rules.pull_request.allowed_merge_methods // ["squash"]), + dismiss_stale_reviews_on_push: ($spec.rules.pull_request.dismiss_stale_reviews_on_push // true), + require_code_owner_review: ($spec.rules.pull_request.require_code_owner_review // false), + require_last_push_approval: ($spec.rules.pull_request.require_last_push_approval // false), + required_approving_review_count: ($spec.rules.pull_request.required_approving_review_count // $reviewCount), + required_review_thread_resolution: ($spec.rules.pull_request.required_review_thread_resolution // true) + } + } + else empty end), + (if $target == "branch" and ($requiredChecks | length) > 0 then + { + type: "required_status_checks", + parameters: { + do_not_enforce_on_create: ($spec.rules.required_status_checks.do_not_enforce_on_create // false), + required_status_checks: ($requiredChecks | map({context: ., integration_id: null})), + strict_required_status_checks_policy: ($spec.rules.required_status_checks.strict_required_status_checks_policy // true) + } + } + else empty end), + (if ($spec.rules.non_fast_forward // true) then {type: "non_fast_forward"} else empty end), + (if ($spec.rules.required_linear_history // false) then {type: "required_linear_history"} else empty end), + (if ($spec.rules.required_signatures // false) then {type: "required_signatures"} else empty end), + (if ($target == "branch" and ($spec.rules.block_branch_deletion // false)) then {type: "deletion"} else empty end), + (if ($target == "branch" and ($spec.rules.block_branch_creation // false)) then {type: "creation"} else empty end), + (if ($target == "branch" and ($spec.rules.block_branch_updates // false)) then {type: "update"} else empty end), + (if ($target == "branch" and (($spec.rules.required_deployments // []) | length) > 0) then + { + type: "required_deployments", + parameters: { + required_deployment_environments: ($spec.rules.required_deployments) + } + } + else empty end) + ] | map(select(. != null))' +} + +build_conditions() { + local target="$1" + local spec_json="$2" + + jq -nc --arg target "${target}" --argjson spec "${spec_json}" ' + if $target == "push" then + { + repository_name: { + include: ($spec.conditions.repository_name.include // ["~ALL"]), + exclude: ($spec.conditions.repository_name.exclude // []), + protected: ($spec.conditions.repository_name.protected // false) + } + } + else + { + repository_name: { + include: ($spec.conditions.repository_name.include // ["~ALL"]), + exclude: ($spec.conditions.repository_name.exclude // []), + protected: ($spec.conditions.repository_name.protected // false) + }, + ref_name: { + include: ($spec.conditions.ref_name.include // ["~DEFAULT_BRANCH"]), + exclude: ($spec.conditions.ref_name.exclude // []) + } + } + end' +} + +build_bypass_actors() { + local spec_json="$1" + jq -nc --argjson spec "${spec_json}" ' + ($spec.bypassActors // [ + {actor_id: null, actor_type: "OrganizationAdmin", bypass_mode: "always"} + ]) + | map({ + actor_id: (.actor_id // null), + actor_type: .actor_type, + bypass_mode: (.bypass_mode // "always") + })' +} + +successes=0 +failures=0 +skipped=0 + +IFS=',' read -ra target_list <<< "${TARGETS}" + +while IFS= read -r org; do + [[ -z "${org}" ]] && continue + + for target in "${target_list[@]}"; do + target="$(echo "${target}" | xargs)" + [[ -z "${target}" ]] && continue + + spec="$(jq -c --arg t "${target}" '.orgRulesets[$t] // empty' "${POLICY_FILE}")" + if [[ -z "${spec}" || "${spec}" == "null" ]]; then + echo "Skipped ${org}:${target} (no policy orgRulesets.${target})" + skipped=$((skipped + 1)) + continue + fi + + rules="$(build_rules "${target}" "${spec}")" + if [[ "${rules}" == "[]" ]]; then + echo "Skipped ${org}:${target} (no rules resolved)" + skipped=$((skipped + 1)) + continue + fi + + conditions="$(build_conditions "${target}" "${spec}")" + bypass_actors="$(build_bypass_actors "${spec}")" + ruleset_name="$(jq -r --arg t "${target}" '.orgRulesets[$t].name // ""' "${POLICY_FILE}")" + if [[ -z "${ruleset_name}" ]]; then + ruleset_name="Chitty Governance ${target^} Gate" + fi + enforcement="$(jq -r --arg t "${target}" '.orgRulesets[$t].enforcement // "active"' "${POLICY_FILE}")" + + payload="$(jq -nc \ + --arg name "${ruleset_name}" \ + --arg target "${target}" \ + --arg enforcement "${enforcement}" \ + --argjson bypass "${bypass_actors}" \ + --argjson conditions "${conditions}" \ + --argjson rules "${rules}" ' + { + name: $name, + target: $target, + enforcement: $enforcement, + bypass_actors: $bypass, + conditions: $conditions, + rules: $rules + } + ')" + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would enforce ${org}:${target} ruleset \"${ruleset_name}\"" + skipped=$((skipped + 1)) + continue + fi + + list_json="$(gh api "/orgs/${org}/rulesets?targets=${target}" 2>/dev/null || true)" + ruleset_id="" + if [[ -n "${list_json}" ]]; then + ruleset_id="$(jq -r --arg n "${ruleset_name}" '.[] | select(.name == $n) | .id' <<< "${list_json}" | head -n1 || true)" + fi + + if [[ -n "${ruleset_id}" && "${ruleset_id}" != "null" ]]; then + if gh api -X PUT "/orgs/${org}/rulesets/${ruleset_id}" --input <(echo "${payload}") >/dev/null 2>&1; then + echo "Updated org ruleset ${org}:${target} -> ${ruleset_name}" + successes=$((successes + 1)) + else + echo "Failed to update org ruleset ${org}:${target} -> ${ruleset_name}" >&2 + failures=$((failures + 1)) + fi + else + if gh api -X POST "/orgs/${org}/rulesets" --input <(echo "${payload}") >/dev/null 2>&1; then + echo "Created org ruleset ${org}:${target} -> ${ruleset_name}" + successes=$((successes + 1)) + else + echo "Failed to create org ruleset ${org}:${target} -> ${ruleset_name}" >&2 + failures=$((failures + 1)) + fi + fi + done +done <<< "${orgs}" + +echo "Org ruleset enforcement complete: success=${successes} failed=${failures} skipped=${skipped}" +if [[ "${FAIL_ON_ERROR}" == "true" && "${failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-enforce-status-checks.sh b/scripts/org-governance-enforce-status-checks.sh new file mode 100755 index 0000000..f078561 --- /dev/null +++ b/scripts/org-governance-enforce-status-checks.sh @@ -0,0 +1,144 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +DRY_RUN="false" + +usage() { + cat <<'EOF' +Usage: org-governance-enforce-status-checks.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) + --dry-run Print actions only (default: false) +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${POLICY_FILE}" ]]; then + echo "Missing policy file: ${POLICY_FILE}" >&2 + exit 1 +fi +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +use_org_rulesets="$(jq -r '.useOrgRulesets // false' "${POLICY_FILE}")" +has_branch_ruleset="$(jq -r 'if .orgRulesets.branch then "true" else "false" end' "${POLICY_FILE}")" +if [[ "${use_org_rulesets}" == "true" && "${has_branch_ruleset}" == "true" ]]; then + echo "Org rulesets are enabled; skipping legacy branch-protection status-check enforcement." + exit 0 +fi + +required_checks="$(jq -c '.requiredStatusChecks // []' "${POLICY_FILE}")" +if [[ "${required_checks}" == "[]" ]]; then + echo "No required status checks defined; nothing to enforce." + exit 0 +fi +required_review_count="$(jq -r '.requiredApprovingReviewCount // 1' "${POLICY_FILE}")" +if [[ ! "${required_review_count}" =~ ^[0-9]+$ ]]; then + echo "Invalid requiredApprovingReviewCount in policy: ${required_review_count}" >&2 + exit 1 +fi + +successes=0 +failures=0 +skipped=0 + +rows="$(jq -c '.[] | select(.archived == false)' "${REPORT_FILE}")" +if [[ -z "${rows}" ]]; then + echo "No active repos in report." + exit 0 +fi + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + full_repo="$(jq -r '.fullRepo' <<< "${row}")" + default_branch="$(jq -r '.defaultBranch // empty' <<< "${row}")" + + if [[ -z "${default_branch}" ]]; then + echo "Skipped ${full_repo}: missing default branch." + skipped=$((skipped + 1)) + continue + fi + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would enforce branch protection checks on ${full_repo}:${default_branch}" + skipped=$((skipped + 1)) + continue + fi + + # If branch protection exists, patch only the required status checks and review/admin controls. + if gh api -X PATCH "repos/${full_repo}/branches/${default_branch}/protection/required_status_checks" \ + --input <(jq -n --argjson checks "${required_checks}" '{strict:true,contexts:$checks}') >/dev/null 2>&1; then + gh api -X POST "repos/${full_repo}/branches/${default_branch}/protection/enforce_admins" >/dev/null 2>&1 || true + gh api -X PATCH "repos/${full_repo}/branches/${default_branch}/protection/required_pull_request_reviews" \ + --input <(jq -n --argjson count "${required_review_count}" '{dismiss_stale_reviews:true,require_code_owner_reviews:false,required_approving_review_count:$count}') >/dev/null 2>&1 || true + echo "Enforced checks on protected branch ${full_repo}:${default_branch}" + successes=$((successes + 1)) + continue + fi + + # If protection does not exist, create a fail-closed baseline. + if gh api -X PUT "repos/${full_repo}/branches/${default_branch}/protection" \ + --input <(jq -n \ + --argjson checks "${required_checks}" \ + --argjson count "${required_review_count}" '{ + required_status_checks:{strict:true,contexts:$checks}, + enforce_admins:true, + required_pull_request_reviews:{ + dismiss_stale_reviews:true, + require_code_owner_reviews:false, + required_approving_review_count:$count + }, + restrictions:null + }') >/dev/null 2>&1; then + echo "Created branch protection baseline ${full_repo}:${default_branch}" + successes=$((successes + 1)) + else + echo "Failed to enforce branch protection checks on ${full_repo}:${default_branch}" >&2 + failures=$((failures + 1)) + fi +done <<< "${rows}" + +echo "Status-check enforcement complete: success=${successes} failed=${failures} skipped=${skipped}" +if [[ "${failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-pr-integration-loop.sh b/scripts/org-governance-pr-integration-loop.sh new file mode 100755 index 0000000..772bd19 --- /dev/null +++ b/scripts/org-governance-pr-integration-loop.sh @@ -0,0 +1,289 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +PR_TITLE="chore(governance): add CI/CD governance baseline" +DRY_RUN="false" +DELEGATE_MODE="${CHITTY_REVIEW_DELEGATION_MODE:-approve}" # approve|queue_only|disabled +REVIEW_DELEGATE_TOKEN="${CHITTY_REVIEW_DELEGATE_TOKEN:-}" +REVIEW_DELEGATE_LOGIN="${CHITTY_REVIEW_DELEGATE_LOGIN:-}" +QUEUE_DIR="${CHITTY_REVIEW_QUEUE_DIR:-${ROOT_DIR}/reports/review-delegate-queue}" +QUEUE_TS="$(date -u +%Y%m%dT%H%M%SZ)" +QUEUE_JSONL="${QUEUE_DIR}/queue-${QUEUE_TS}.jsonl" +QUEUE_JSON="${QUEUE_DIR}/queue-${QUEUE_TS}.json" +QUEUE_MD="${QUEUE_DIR}/queue-${QUEUE_TS}.md" + +usage() { + cat <<'USAGE' +Usage: org-governance-pr-integration-loop.sh [options] + +Options: + --report Audit report JSON (array) + --title PR title to target + --dry-run Print actions only (default: false) +USAGE +} + +queue_event() { + local full_repo="$1" + local pr_number="$2" + local pr_url="$3" + local action="$4" + local outcome="$5" + local reason="$6" + jq -nc \ + --arg ts "$(date -u +%Y-%m-%dT%H:%M:%SZ)" \ + --arg repo "${full_repo}" \ + --argjson pr "${pr_number}" \ + --arg url "${pr_url}" \ + --arg mode "${DELEGATE_MODE}" \ + --arg action "${action}" \ + --arg outcome "${outcome}" \ + --arg reason "${reason}" \ + '{timestamp:$ts,repo:$repo,pr:$pr,url:$url,delegate_mode:$mode,action:$action,outcome:$outcome,reason:$reason}' >> "${QUEUE_JSONL}" +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --report) + REPORT_FILE="$2" + shift 2 + ;; + --title) + PR_TITLE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi +mkdir -p "${QUEUE_DIR}" +touch "${QUEUE_JSONL}" + +updated_branches=0 +auto_armed=0 +already_armed=0 +delegated_approvals=0 +blocked=0 +hard_failures=0 + +repos="$(jq -r '.[] | select(.archived==false) | .fullRepo' "${REPORT_FILE}" | sort -u)" +if [[ -z "${repos}" ]]; then + echo "No repos in report." + exit 0 +fi + +while IFS= read -r full_repo; do + [[ -z "${full_repo}" ]] && continue + + prs_json="$(gh pr list -R "${full_repo}" --state open --search "\"${PR_TITLE}\" in:title" --json number,title,url,isDraft,mergeStateStatus,reviewDecision,autoMergeRequest,author 2>/dev/null || true)" + if [[ -z "${prs_json}" || "${prs_json}" == "[]" ]]; then + continue + fi + + while IFS= read -r pr; do + [[ -z "${pr}" ]] && continue + pr_number="$(jq -r '.number' <<< "${pr}")" + pr_url="$(jq -r '.url' <<< "${pr}")" + is_draft="$(jq -r '.isDraft' <<< "${pr}")" + merge_state="$(jq -r '.mergeStateStatus // "UNKNOWN"' <<< "${pr}")" + review_decision="$(jq -r '.reviewDecision // ""' <<< "${pr}")" + auto_merge_enabled="$(jq -r 'if .autoMergeRequest == null then "false" else "true" end' <<< "${pr}")" + pr_author="$(jq -r '.author.login // ""' <<< "${pr}")" + + # Only process PRs created by known governance automation accounts + allowed_authors="chitcommit github-actions[bot] dependabot[bot]" + if ! echo "${allowed_authors}" | grep -qFw "${pr_author}"; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: author '${pr_author}' not in governance automation allowlist" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "integration" "blocked" "untrusted_author:${pr_author}" + continue + fi + + if [[ "${is_draft}" == "true" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: draft" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "integration" "blocked" "draft" + continue + fi + + if [[ "${merge_state}" == "DIRTY" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: merge conflict" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "integration" "blocked" "merge_conflict" + bash "${ROOT_DIR}/scripts/chittycompliance-dispatch.sh" \ + --repo "${full_repo}" \ + --mode remediation \ + --findings "pr=${pr_number};merge_state=${merge_state};review=${review_decision};reason=merge_conflict" || true + continue + fi + + if [[ "${merge_state}" == "BEHIND" ]]; then + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would update branch for ${pr_url}" + else + if gh api -X PUT "repos/${full_repo}/pulls/${pr_number}/update-branch" >/dev/null 2>&1; then + updated_branches=$((updated_branches + 1)) + echo "Updated branch for ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "update_branch" "updated" "behind" + else + hard_failures=$((hard_failures + 1)) + echo "Failed to update branch for ${pr_url}" >&2 + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "update_branch" "failed" "update_branch_failed" + fi + fi + continue + fi + + detail_json="$(gh pr view -R "${full_repo}" "${pr_number}" --json statusCheckRollup 2>/dev/null || true)" + failing_checks="$(jq -r '[.statusCheckRollup[]? | select((.status // "") == "COMPLETED" and ((.conclusion // "") | IN("FAILURE","CANCELLED","TIMED_OUT","ACTION_REQUIRED","STARTUP_FAILURE","STALE"))) | .name] | join(", ")' <<< "${detail_json}")" + pending_count="$(jq -r '[.statusCheckRollup[]? | select((.status // "") != "COMPLETED")] | length' <<< "${detail_json}")" + + if [[ -n "${failing_checks}" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: failing checks ${failing_checks}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "integration" "blocked" "failing_checks:${failing_checks}" + continue + fi + + if [[ "${pending_count}" =~ ^[0-9]+$ ]] && [[ "${pending_count}" -gt 0 ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: ${pending_count} checks pending" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "integration" "blocked" "pending_checks:${pending_count}" + continue + fi + + if [[ "${review_decision}" == "CHANGES_REQUESTED" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: review decision ${review_decision}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "blocked" "changes_requested" + continue + fi + + if [[ "${review_decision}" == "REVIEW_REQUIRED" ]]; then + if [[ "${DELEGATE_MODE}" == "disabled" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: review required and delegate disabled" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "queued_for_recert" "delegate_disabled" + continue + fi + if [[ "${DELEGATE_MODE}" == "queue_only" ]]; then + blocked=$((blocked + 1)) + echo "Queued ${pr_url}: review required and delegate mode queue_only" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "queued_for_recert" "queue_only_mode" + continue + fi + if [[ -z "${REVIEW_DELEGATE_TOKEN}" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: review required and CHITTY_REVIEW_DELEGATE_TOKEN not configured" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "queued_for_recert" "missing_delegate_token" + continue + fi + if [[ -n "${REVIEW_DELEGATE_LOGIN}" && "${REVIEW_DELEGATE_LOGIN}" == "${pr_author}" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: delegate login matches PR author (${pr_author})" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "blocked" "delegate_equals_author:${pr_author}" + continue + fi + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would submit delegated non-human approval for ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "delegate_approve" "would_approve" "dry_run" + blocked=$((blocked + 1)) + continue + fi + + if GH_TOKEN="${REVIEW_DELEGATE_TOKEN}" gh pr review -R "${full_repo}" "${pr_number}" --approve --body "Delegated non-human governance approval: required checks passed." >/dev/null 2>&1; then + delegated_approvals=$((delegated_approvals + 1)) + echo "Delegated approval submitted for ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "delegate_approve" "approved" "delegate_token" + else + hard_failures=$((hard_failures + 1)) + echo "Failed delegated approval for ${pr_url}" >&2 + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "delegate_approve" "failed" "delegate_approval_failed" + continue + fi + + refreshed="$(gh pr view -R "${full_repo}" "${pr_number}" --json reviewDecision,autoMergeRequest 2>/dev/null || true)" + if [[ -n "${refreshed}" ]]; then + review_decision="$(jq -r '.reviewDecision // ""' <<< "${refreshed}")" + auto_merge_enabled="$(jq -r 'if .autoMergeRequest == null then "false" else "true" end' <<< "${refreshed}")" + fi + if [[ "${review_decision}" == "REVIEW_REQUIRED" || "${review_decision}" == "CHANGES_REQUESTED" ]]; then + blocked=$((blocked + 1)) + echo "Blocked ${pr_url}: review still not approved (${review_decision})" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "review" "blocked" "review_still_${review_decision}" + continue + fi + fi + + if [[ "${auto_merge_enabled}" == "true" ]]; then + already_armed=$((already_armed + 1)) + echo "Already auto-merge armed ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "merge" "already_armed" "auto_merge_request_present" + continue + fi + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would arm auto-merge for ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "merge" "would_arm" "dry_run" + continue + fi + + if gh pr merge -R "${full_repo}" "${pr_number}" --squash --auto >/dev/null 2>&1; then + auto_armed=$((auto_armed + 1)) + echo "Armed auto-merge for ${pr_url}" + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "merge" "armed" "eligible" + else + hard_failures=$((hard_failures + 1)) + echo "Failed to arm auto-merge for ${pr_url}" >&2 + queue_event "${full_repo}" "${pr_number}" "${pr_url}" "merge" "failed" "auto_arm_failed" + fi + done < <(jq -c '.[]' <<< "${prs_json}") +done <<< "${repos}" + +jq -s '.' "${QUEUE_JSONL}" > "${QUEUE_JSON}" +cp "${QUEUE_JSONL}" "${QUEUE_DIR}/latest.jsonl" +cp "${QUEUE_JSON}" "${QUEUE_DIR}/latest.json" +{ + echo "# Delegate Review Queue" + echo + echo "- Timestamp (UTC): ${QUEUE_TS}" + echo "- Delegate mode: ${DELEGATE_MODE}" + echo "- Queue records: $(jq 'length' "${QUEUE_JSON}")" + echo + echo "| Repo | PR | Action | Outcome | Reason |" + echo "|---|---:|---|---|---|" + jq -r '.[] | "| \(.repo) | \(.pr) | \(.action) | \(.outcome) | \(.reason) |"' "${QUEUE_JSON}" +} > "${QUEUE_MD}" +cp "${QUEUE_MD}" "${QUEUE_DIR}/latest.md" + +echo "PR integration loop complete: updated=${updated_branches} delegated=${delegated_approvals} armed=${auto_armed} already_armed=${already_armed} blocked=${blocked} hard_failures=${hard_failures}" +if [[ "${hard_failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-project-sync.sh b/scripts/org-governance-project-sync.sh new file mode 100755 index 0000000..0731472 --- /dev/null +++ b/scripts/org-governance-project-sync.sh @@ -0,0 +1,129 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +DRY_RUN="false" +FAIL_ON_ERROR="true" + +usage() { + cat <<'USAGE' +Usage: org-governance-project-sync.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) + --dry-run Print intended actions only (default: false) + --fail-on-error Exit non-zero if any update fails (default: true) +USAGE +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --fail-on-error) + FAIL_ON_ERROR="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${POLICY_FILE}" ]]; then + echo "Missing policy file: ${POLICY_FILE}" >&2 + exit 1 +fi +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +enabled="$(jq -r '.projectAutomation.enabled // false' "${POLICY_FILE}")" +project_org="$(jq -r '.projectAutomation.org // empty' "${POLICY_FILE}")" +project_number="$(jq -r '.projectAutomation.projectNumber // 0' "${POLICY_FILE}")" +issue_title="$(jq -r '.complianceIssueTitle // "[Governance] CI/CD compliance gaps"' "${POLICY_FILE}")" + +if [[ "${enabled}" != "true" ]]; then + echo "Project sync disabled by policy (.projectAutomation.enabled=false)." + exit 0 +fi +if [[ -z "${project_org}" || "${project_number}" == "0" ]]; then + echo "Project sync enabled but projectAutomation.org/projectAutomation.projectNumber not configured." >&2 + exit 1 +fi + +successes=0 +failures=0 +skipped=0 + +rows="$(jq -c '.[] | select(.compliant == false)' "${REPORT_FILE}")" +if [[ -z "${rows}" ]]; then + echo "No non-compliant repos to sync into project board." + exit 0 +fi + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + full_repo="$(jq -r '.fullRepo // empty' <<< "${row}")" + [[ -z "${full_repo}" ]] && continue + + issue_url="$(gh issue list -R "${full_repo}" --state open --search "\"${issue_title}\" in:title" --json url,title --jq '.[] | select(.title=="'"${issue_title}"'") | .url' | head -n1 || true)" + if [[ -z "${issue_url}" ]]; then + echo "Skipped ${full_repo}: no open compliance issue to add to project." + skipped=$((skipped + 1)) + continue + fi + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would add ${issue_url} to project ${project_org}/${project_number}" + skipped=$((skipped + 1)) + continue + fi + + if gh project item-add "${project_number}" --owner "${project_org}" --url "${issue_url}" >/dev/null 2>&1; then + echo "Added ${issue_url} to project ${project_org}/${project_number}" + successes=$((successes + 1)) + else + # Treat already-present items as non-fatal; gh currently returns generic failure text for duplicates. + if gh project item-list "${project_number}" --owner "${project_org}" --format json 2>/dev/null | jq -e --arg u "${issue_url}" '.items[]? | select(.content.url == $u)' >/dev/null; then + echo "Already present in project ${project_org}/${project_number}: ${issue_url}" + skipped=$((skipped + 1)) + else + echo "Failed to add ${issue_url} to project ${project_org}/${project_number}" >&2 + failures=$((failures + 1)) + fi + fi +done <<< "${rows}" + +echo "Project sync complete: success=${successes} failed=${failures} skipped=${skipped}" +if [[ "${FAIL_ON_ERROR}" == "true" && "${failures}" -gt 0 ]]; then + exit 1 +fi diff --git a/scripts/org-governance-remediate.sh b/scripts/org-governance-remediate.sh new file mode 100755 index 0000000..e5f430e --- /dev/null +++ b/scripts/org-governance-remediate.sh @@ -0,0 +1,431 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +POLICY_FILE="${ROOT_DIR}/.github/org-governance-policy.json" +REPORT_FILE="${ROOT_DIR}/reports/org-governance/latest.json" +AUTO_PR="false" +AUTO_ARM_PR_MERGE="${CHITTY_AUTO_ARM_PR_MERGE:-true}" +DRY_RUN="false" +MAX_PRS=5 +PRS_OPENED=0 +PR_CREATE_SLEEP_SEC="${CHITTY_PR_CREATE_SLEEP_SEC:-0}" + +usage() { + cat <<'EOF' +Usage: org-governance-remediate.sh [options] + +Options: + --policy Policy file + --report Audit report JSON (array) + --auto-pr Open remediation PRs for supported missing files (default: false) + --auto-arm Arm auto-merge on created remediation PRs (default: true) + --dry-run Do not mutate remote repos (default: false) + --max-prs Cap PR count per run (default: 5) +EOF +} + +while [[ $# -gt 0 ]]; do + case "$1" in + --policy) + POLICY_FILE="$2" + shift 2 + ;; + --report) + REPORT_FILE="$2" + shift 2 + ;; + --auto-pr) + AUTO_PR="$2" + shift 2 + ;; + --auto-arm) + AUTO_ARM_PR_MERGE="$2" + shift 2 + ;; + --dry-run) + DRY_RUN="$2" + shift 2 + ;; + --max-prs) + MAX_PRS="$2" + shift 2 + ;; + --help) + usage + exit 0 + ;; + *) + echo "Unknown argument: $1" >&2 + usage + exit 1 + ;; + esac +done + +if [[ ! -f "${REPORT_FILE}" ]]; then + echo "Missing report file: ${REPORT_FILE}" >&2 + exit 1 +fi + +if ! command -v gh >/dev/null 2>&1; then + echo "gh CLI required" >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq required" >&2 + exit 1 +fi + +ISSUE_TITLE="$(jq -r '.complianceIssueTitle // "[Governance] CI/CD compliance gaps"' "${POLICY_FILE}")" +ISSUE_LABELS_JSON="$(jq -c '.issueManagement.labels // []' "${POLICY_FILE}")" +ISSUE_MILESTONE_TITLE="$(jq -r '.issueManagement.milestoneTitle // ""' "${POLICY_FILE}")" +BASELINE_DIR="${ROOT_DIR}/templates/governance-baseline" + +ensure_issue_taxonomy() { + local full_repo="$1" + if [[ "${DRY_RUN}" == "true" ]]; then + return + fi + while IFS= read -r label; do + [[ -z "${label}" ]] && continue + gh label create -R "${full_repo}" "${label}" --color "0E8A16" --force >/dev/null 2>&1 || true + done < <(jq -r '.[]' <<< "${ISSUE_LABELS_JSON}") + + if [[ -n "${ISSUE_MILESTONE_TITLE}" ]]; then + local milestone_num + milestone_num="$( + gh api "/repos/${full_repo}/milestones?state=all&per_page=100" 2>/dev/null \ + | jq -r --arg t "${ISSUE_MILESTONE_TITLE}" '.[] | select(.title == $t) | .number' \ + | head -n1 || true + )" + if [[ -z "${milestone_num}" ]]; then + gh api -X POST "/repos/${full_repo}/milestones" -f title="${ISSUE_MILESTONE_TITLE}" >/dev/null 2>&1 || true + fi + fi +} + +apply_issue_taxonomy() { + local full_repo="$1" + local issue_number="$2" + if [[ "${DRY_RUN}" == "true" ]]; then + return + fi + + while IFS= read -r label; do + [[ -z "${label}" ]] && continue + gh issue edit -R "${full_repo}" "${issue_number}" --add-label "${label}" >/dev/null 2>&1 || true + done < <(jq -r '.[]' <<< "${ISSUE_LABELS_JSON}") + + if [[ -n "${ISSUE_MILESTONE_TITLE}" ]]; then + gh issue edit -R "${full_repo}" "${issue_number}" --milestone "${ISSUE_MILESTONE_TITLE}" >/dev/null 2>&1 || true + fi +} + +ensure_issue() { + local full_repo="$1" + local body="$2" + local existing + ensure_issue_taxonomy "${full_repo}" + existing="$(gh issue list -R "${full_repo}" --state open --search "\"${ISSUE_TITLE}\" in:title" --json number,title --jq '.[] | select(.title=="'"${ISSUE_TITLE}"'") | .number' | head -n1 || true)" + + if [[ -n "${existing}" ]]; then + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would comment on issue #${existing} in ${full_repo}" + return + fi + if gh issue comment -R "${full_repo}" "${existing}" --body "${body}" >/dev/null 2>&1; then + apply_issue_taxonomy "${full_repo}" "${existing}" + echo "Updated issue #${existing} in ${full_repo}" + else + echo "Skipped ${full_repo}: unable to update issue (possibly disabled)." >&2 + return + fi + else + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would create issue in ${full_repo}: ${ISSUE_TITLE}" + return + fi + if gh issue create -R "${full_repo}" --title "${ISSUE_TITLE}" --body "${body}" >/dev/null 2>&1; then + new_issue="$(gh issue list -R "${full_repo}" --state open --search "\"${ISSUE_TITLE}\" in:title" --json number,title --jq '.[] | select(.title=="'"${ISSUE_TITLE}"'") | .number' | head -n1 || true)" + if [[ -n "${new_issue}" ]]; then + apply_issue_taxonomy "${full_repo}" "${new_issue}" + fi + echo "Created issue in ${full_repo}: ${ISSUE_TITLE}" + else + echo "Skipped ${full_repo}: unable to create issue (possibly disabled)." >&2 + return + fi + fi +} + +close_issue_if_open() { + local full_repo="$1" + local existing + existing="$(gh issue list -R "${full_repo}" --state open --search "\"${ISSUE_TITLE}\" in:title" --json number,title --jq '.[] | select(.title=="'"${ISSUE_TITLE}"'") | .number' | head -n1 || true)" + if [[ -z "${existing}" ]]; then + return + fi + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would close issue #${existing} in ${full_repo}" + return + fi + gh issue comment -R "${full_repo}" "${existing}" --body "Compliance loop: repository is now compliant. Closing." >/dev/null 2>&1 || true + if gh issue close -R "${full_repo}" "${existing}" >/dev/null 2>&1; then + echo "Closed compliance issue #${existing} in ${full_repo}" + else + echo "Skipped closing issue in ${full_repo}: issue operations unavailable." >&2 + fi +} + +copy_template_if_supported() { + local missing_file="$1" + local work_dir="$2" + local copied=1 + + if [[ -f "${BASELINE_DIR}/${missing_file}" ]]; then + mkdir -p "$(dirname "${work_dir}/${missing_file}")" + cp "${BASELINE_DIR}/${missing_file}" "${work_dir}/${missing_file}" + if [[ "${missing_file}" == scripts/* ]]; then + chmod +x "${work_dir}/${missing_file}" + fi + copied=0 + fi + return "${copied}" +} + +open_remediation_pr() { + local full_repo="$1" + local default_branch="$2" + local missing_files_json="$3" + local missing_triggers_json="$4" + local missing_patterns_json="$5" + + if [[ "${AUTO_PR}" != "true" ]]; then + return + fi + if [[ "${PRS_OPENED}" -ge "${MAX_PRS}" ]]; then + echo "PR limit reached (${MAX_PRS}), skipping PR for ${full_repo}" + return + fi + + local pr_title="chore(governance): add CI/CD governance baseline" + local existing_pr + existing_pr="$(gh pr list -R "${full_repo}" --state open --search "\"${pr_title}\" in:title" --json number,title --jq '.[] | select(.title=="'"${pr_title}"'") | .number' | head -n1 || true)" + if [[ -n "${existing_pr}" ]]; then + echo "PR already open in ${full_repo}: #${existing_pr}" + return + fi + + local work_dir + work_dir="$(mktemp -d)" + trap 'rm -rf "${work_dir}"' RETURN + + if ! gh repo clone "${full_repo}" "${work_dir}" -- --depth 1 >/dev/null 2>&1; then + echo "Skipped PR create in ${full_repo}: unable to clone repository." >&2 + return + fi + pushd "${work_dir}" >/dev/null + local branch_name="automation/governance-baseline" + if ! git checkout -B "${branch_name}" "origin/${default_branch}" >/dev/null 2>&1; then + echo "Skipped PR create in ${full_repo}: default branch origin/${default_branch} not found." >&2 + popd >/dev/null + return + fi + git config user.name "chitty-governance-bot" + git config user.email "automation@chitty.cc" + git config commit.gpgsign false + + local touched=false + while IFS= read -r missing_file; do + [[ -z "${missing_file}" ]] && continue + if copy_template_if_supported "${missing_file}" "${work_dir}"; then + touched=true + fi + done < <(jq -r '.[]' <<< "${missing_files_json}") + + # If any workflow trigger checks fail, refresh that workflow from baseline template if available. + while IFS= read -r missing_trigger; do + [[ -z "${missing_trigger}" ]] && continue + workflow_path="${missing_trigger%%:*}" + if [[ -f "${BASELINE_DIR}/${workflow_path}" ]]; then + mkdir -p "$(dirname "${workflow_path}")" + cp "${BASELINE_DIR}/${workflow_path}" "${workflow_path}" + touched=true + fi + done < <(jq -r '.[]' <<< "${missing_triggers_json}") + + # Keep boundary docs synchronized even when they exist but fail required patterns. + if bash "${ROOT_DIR}/scripts/stamp-discovery-links.sh" "${work_dir}" >/dev/null; then + if [[ -n "$(git status --porcelain -- CHITTY.md CHARTER.md docs/PERSISTENT_BRIEF.md 2>/dev/null || true)" ]]; then + touched=true + fi + fi + + # If audit surfaced boundary pattern drift and no concrete file edits were produced, + # force a baseline copy for those docs when templates exist. + while IFS= read -r missing_pattern; do + [[ -z "${missing_pattern}" ]] && continue + pattern_file="${missing_pattern%%:*}" + case "${pattern_file}" in + CHITTY.md|CHARTER.md|docs/PERSISTENT_BRIEF.md) + if [[ -f "${BASELINE_DIR}/${pattern_file}" ]]; then + mkdir -p "$(dirname "${work_dir}/${pattern_file}")" + cp "${BASELINE_DIR}/${pattern_file}" "${work_dir}/${pattern_file}" + touched=true + fi + ;; + esac + done < <(jq -r '.[]' <<< "${missing_patterns_json}") + + if [[ "${touched}" != "true" ]]; then + echo "No supported auto-fixes for ${full_repo}; issue-only remediation applied." + popd >/dev/null + return + fi + + if [[ -z "$(git status --porcelain)" ]]; then + popd >/dev/null + echo "No file changes produced for ${full_repo}" + return + fi + + if [[ "${DRY_RUN}" == "true" ]]; then + echo "[DRY-RUN] Would open remediation PR in ${full_repo}" + popd >/dev/null + return + fi + + git add . + git -c commit.gpgsign=false commit -m "${pr_title}" >/dev/null + if ! git push -u origin "${branch_name}" >/dev/null 2>&1; then + if ! git push -u origin "${branch_name}" --force-with-lease >/dev/null 2>&1; then + # Existing remote automation branch can diverge without an open PR; fallback to a unique branch. + branch_name="automation/governance-baseline-$(date +%s)-$RANDOM" + git checkout -B "${branch_name}" >/dev/null + if ! git push -u origin "${branch_name}" >/dev/null 2>&1; then + echo "Skipped PR create in ${full_repo}: unable to push automation branch." >&2 + popd >/dev/null + return + fi + fi + fi + + local pr_created=false + local pr_attempt=0 + local pr_error="" + local created_pr_url="" + while [[ "${pr_created}" != "true" && "${pr_attempt}" -lt 3 ]]; do + pr_attempt=$((pr_attempt + 1)) + pr_error="" + if pr_error="$(gh pr create \ + --repo "${full_repo}" \ + --base "${default_branch}" \ + --head "${branch_name}" \ + --title "${pr_title}" \ + --body "Automated governance baseline remediation from org control loop." 2>&1)"; then + created_pr_url="$(tail -n1 <<< "${pr_error}")" + pr_created=true + break + fi + + # Back off and retry when GitHub abuse/rate guards trigger. + if grep -qi "submitted too quickly" <<< "${pr_error}"; then + if [[ "${pr_attempt}" -lt 3 ]]; then + sleep_time=$((pr_attempt * 20)) + echo "PR create throttled for ${full_repo}; retrying in ${sleep_time}s..." >&2 + sleep "${sleep_time}" + continue + fi + echo "Skipped PR create in ${full_repo}: retries exhausted after GitHub throttle." >&2 + popd >/dev/null + return + fi + + echo "Skipped PR create in ${full_repo}: GitHub rejected request (rate/abuse guard)." >&2 + popd >/dev/null + return + done + + if [[ "${pr_created}" != "true" ]]; then + echo "Skipped PR create in ${full_repo}: retries exhausted." >&2 + popd >/dev/null + return + fi + + PRS_OPENED=$((PRS_OPENED + 1)) + if [[ -z "${created_pr_url}" ]]; then + created_pr_url="$(gh pr list -R "${full_repo}" --head "${branch_name}" --state open --json url --jq '.[0].url' 2>/dev/null || true)" + fi + if [[ "${AUTO_ARM_PR_MERGE}" == "true" && -n "${created_pr_url}" ]]; then + if gh pr merge -R "${full_repo}" "${created_pr_url}" --squash --auto >/dev/null 2>&1; then + echo "Armed auto-merge for ${created_pr_url}" + else + echo "Could not auto-arm merge for ${created_pr_url}; will retry in integration loop." >&2 + fi + fi + if [[ "${PR_CREATE_SLEEP_SEC}" =~ ^[0-9]+$ ]] && [[ "${PR_CREATE_SLEEP_SEC}" -gt 0 ]]; then + sleep "${PR_CREATE_SLEEP_SEC}" + fi + popd >/dev/null + echo "Opened remediation PR in ${full_repo}" +} + +rows="$(jq -c '.[]' "${REPORT_FILE}")" +if [[ -z "${rows}" ]]; then + echo "No rows in report." + exit 0 +fi + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + full_repo="$(jq -r '.fullRepo' <<< "${row}")" + compliant="$(jq -r '.compliant' <<< "${row}")" + default_branch="$(jq -r '.defaultBranch' <<< "${row}")" + score="$(jq -r '.score' <<< "${row}")" + missing_files_json="$(jq -c '.missingFiles // []' <<< "${row}")" + missing_patterns_json="$(jq -c '.missingPatterns // []' <<< "${row}")" + missing_triggers_json="$(jq -c '.missingTriggers // []' <<< "${row}")" + missing_status_checks_json="$(jq -c '.missingStatusChecks // []' <<< "${row}")" + missing_repo_settings_json="$(jq -c '.missingRepoSettings // []' <<< "${row}")" + branch_protection="$(jq -r '.branchProtection' <<< "${row}")" + + if [[ -z "${full_repo}" || "${full_repo}" == "null" ]]; then + echo "Skipping row with missing fullRepo field." >&2 + continue + fi + if [[ -z "${default_branch}" || "${default_branch}" == "null" ]]; then + default_branch="main" + fi + + if [[ "${compliant}" == "true" ]]; then + close_issue_if_open "${full_repo}" + continue + fi + + body=$( + cat <&2 +} + +assert_contains() { + local haystack="$1" + local needle="$2" + local label="$3" + if grep -Fq "${needle}" <<< "${haystack}"; then + pass "${label}" + else + fail "${label} (missing: ${needle})" + fi +} + +assert_file_contains() { + local file="$1" + local needle="$2" + local label="$3" + if grep -Fq "${needle}" "${file}"; then + pass "${label}" + else + fail "${label} (missing: ${needle} in ${file})" + fi +} + +file_hash() { + local file="$1" + if command -v shasum >/dev/null 2>&1; then + shasum -a 256 "${file}" | awk '{print $1}' + return + fi + sha256sum "${file}" | awk '{print $1}' +} + +init_git_repo() { + local path="$1" + mkdir -p "${path}" + pushd "${path}" >/dev/null + git init -q + git checkout -B main >/dev/null 2>&1 + git config user.name "test" + git config user.email "test@example.com" + git config commit.gpgsign false + git add . + git -c commit.gpgsign=false commit -q -m "initial" + popd >/dev/null +} + +echo "== Test 1: stamp-discovery-links handles missing frontmatter and is idempotent ==" +STAMP_FIXTURE="${TMP_DIR}/stamp-fixture" +mkdir -p "${STAMP_FIXTURE}/docs" +cat > "${STAMP_FIXTURE}/CHITTY.md" <<'EOF' +# CHITTY + +Legacy summary +EOF +cat > "${STAMP_FIXTURE}/CHARTER.md" <<'EOF' +--- +name: Legacy Charter +--- +# CHARTER +EOF +cat > "${STAMP_FIXTURE}/docs/PERSISTENT_BRIEF.md" <<'EOF' +# Persistent Brief + +Legacy text. +EOF + +bash "${ROOT_DIR}/scripts/stamp-discovery-links.sh" "${STAMP_FIXTURE}" >/dev/null + +assert_file_contains "${STAMP_FIXTURE}/CHITTY.md" "context_brief: chittycontext://persistent-brief" "CHITTY gets context_brief frontmatter" +assert_file_contains "${STAMP_FIXTURE}/CHITTY.md" "chitty:discovery-links:start" "CHITTY gets discovery block" +assert_file_contains "${STAMP_FIXTURE}/CHARTER.md" "not an authority source" "CHARTER includes non-authority marker" +assert_file_contains "${STAMP_FIXTURE}/docs/PERSISTENT_BRIEF.md" "chitty:persistent-brief-anchors:start" "PERSISTENT_BRIEF gets anchors block" + +first_hash="$(cat "${STAMP_FIXTURE}/CHITTY.md" "${STAMP_FIXTURE}/CHARTER.md" "${STAMP_FIXTURE}/docs/PERSISTENT_BRIEF.md" | file_hash /dev/stdin)" +bash "${ROOT_DIR}/scripts/stamp-discovery-links.sh" "${STAMP_FIXTURE}" >/dev/null +second_hash="$(cat "${STAMP_FIXTURE}/CHITTY.md" "${STAMP_FIXTURE}/CHARTER.md" "${STAMP_FIXTURE}/docs/PERSISTENT_BRIEF.md" | file_hash /dev/stdin)" +if [[ "${first_hash}" == "${second_hash}" ]]; then + pass "stamp-discovery-links is idempotent for baseline boundary docs" +else + fail "stamp-discovery-links changed files on second identical run" +fi + +echo "== Test 2: org-governance-remediate handles clone failure, drift-only PR path, and null arrays ==" +FAKE_BIN="${TMP_DIR}/bin" +FAKE_REPOS="${TMP_DIR}/fake-repos" +mkdir -p "${FAKE_BIN}" "${FAKE_REPOS}" +export GH_FAKE_REPOS_DIR="${FAKE_REPOS}" +export GH_FAKE_LOG="${TMP_DIR}/gh.log" +touch "${GH_FAKE_LOG}" + +cat > "${FAKE_BIN}/gh" <<'EOF' +#!/usr/bin/env bash +set -euo pipefail +echo "gh $*" >> "${GH_FAKE_LOG}" + +cmd="${1:-}" +shift || true + +case "${cmd}" in + label) + exit 0 + ;; + issue) + sub="${1:-}" + shift || true + case "${sub}" in + list) + exit 0 + ;; + create|comment|edit|close) + exit 0 + ;; + *) + echo "unsupported gh issue subcommand: ${sub}" >&2 + exit 1 + ;; + esac + ;; + api) + # Milestone lookups in ensure_issue_taxonomy. + echo "[]" + exit 0 + ;; + pr) + sub="${1:-}" + shift || true + case "${sub}" in + list) + exit 0 + ;; + create) + repo="" + while [[ $# -gt 0 ]]; do + case "$1" in + --repo) + repo="${2:-}" + shift 2 + ;; + *) + shift + ;; + esac + done + + state_dir="${GH_FAKE_STATE_DIR:-/tmp}" + mkdir -p "${state_dir}" + counter_file="${state_dir}/pr-create-${repo//\//__}.count" + count=0 + if [[ -f "${counter_file}" ]]; then + count="$(cat "${counter_file}")" + fi + count=$((count + 1)) + printf '%s' "${count}" > "${counter_file}" + + case "${repo}" in + Org/repo-throttle-ok) + if [[ "${count}" -lt 3 ]]; then + echo "GraphQL: pull request creation submitted too quickly" >&2 + exit 1 + fi + echo "https://example.invalid/pr/throttle-ok" + exit 0 + ;; + Org/repo-throttle-fail) + echo "GraphQL: pull request creation submitted too quickly" >&2 + exit 1 + ;; + *) + echo "https://example.invalid/pr/1" + exit 0 + ;; + esac + ;; + merge) + exit 0 + ;; + *) + echo "unsupported gh pr subcommand: ${sub}" >&2 + exit 1 + ;; + esac + ;; + repo) + sub="${1:-}" + shift || true + case "${sub}" in + clone) + full_repo="${1:-}" + dest="${2:-}" + src="${GH_FAKE_REPOS_DIR}/${full_repo//\//__}" + if [[ ! -d "${src}/.git" ]]; then + echo "repo not found: ${full_repo}" >&2 + exit 1 + fi + git clone -q "${src}" "${dest}" + exit 0 + ;; + *) + echo "unsupported gh repo subcommand: ${sub}" >&2 + exit 1 + ;; + esac + ;; + *) + echo "unsupported gh command: ${cmd}" >&2 + exit 1 + ;; +esac +EOF +chmod +x "${FAKE_BIN}/gh" + +cat > "${FAKE_BIN}/sleep" <<'EOF' +#!/usr/bin/env bash +set -euo pipefail +echo "sleep $*" >> "${GH_FAKE_LOG}" +exit 0 +EOF +chmod +x "${FAKE_BIN}/sleep" + +# Repo with drifted docs (should produce dry-run PR path via stamp). +DRIFT_REPO="${FAKE_REPOS}/Org__repo-drift" +mkdir -p "${DRIFT_REPO}/docs" +cat > "${DRIFT_REPO}/CHITTY.md" <<'EOF' +# CHITTY +Old format +EOF +cat > "${DRIFT_REPO}/CHARTER.md" <<'EOF' +# CHARTER +Old format +EOF +cat > "${DRIFT_REPO}/docs/PERSISTENT_BRIEF.md" <<'EOF' +# Persistent Brief +Old format +EOF +init_git_repo "${DRIFT_REPO}" + +# Repo with null arrays and no boundary files (should not crash; issue-only path). +NULL_REPO="${FAKE_REPOS}/Org__repo-null" +mkdir -p "${NULL_REPO}/src" +cat > "${NULL_REPO}/src/main.txt" <<'EOF' +placeholder +EOF +init_git_repo "${NULL_REPO}" + +REPORT_PATH="${TMP_DIR}/report.json" +cat > "${REPORT_PATH}" <<'EOF' +[ + { + "fullRepo": "Org/repo-missing", + "compliant": false, + "defaultBranch": "main", + "score": 0, + "missingFiles": [], + "missingPatterns": [], + "missingTriggers": [], + "missingStatusChecks": [], + "missingRepoSettings": [], + "branchProtection": false + }, + { + "fullRepo": "Org/repo-drift", + "compliant": false, + "defaultBranch": "main", + "score": 50, + "missingFiles": [], + "missingPatterns": ["CHITTY.md:context_brief:"], + "missingTriggers": [], + "missingStatusChecks": [], + "missingRepoSettings": [], + "branchProtection": true + }, + { + "fullRepo": "Org/repo-null", + "compliant": false, + "defaultBranch": "main", + "score": 10, + "missingFiles": null, + "missingPatterns": null, + "missingTriggers": null, + "missingStatusChecks": null, + "missingRepoSettings": null, + "branchProtection": true + } +] +EOF + +set +e +remediate_output="$( + PATH="${FAKE_BIN}:$PATH" \ + CHITTY_DISPATCH_STRICT=false \ + CHITTY_LOCAL_AGENT_DISPATCH=false \ + bash "${ROOT_DIR}/scripts/org-governance-remediate.sh" \ + --policy "${ROOT_DIR}/.github/org-governance-policy.json" \ + --report "${REPORT_PATH}" \ + --auto-pr true \ + --dry-run true \ + --max-prs 20 2>&1 +)" +remediate_status=$? +set -e + +if [[ "${remediate_status}" -eq 0 ]]; then + pass "org-governance-remediate exits successfully in dry-run pressure test" +else + fail "org-governance-remediate failed in pressure test (status=${remediate_status})" +fi + +assert_contains "${remediate_output}" "Skipped PR create in Org/repo-missing: unable to clone repository." "clone failure does not abort loop" +assert_contains "${remediate_output}" "[DRY-RUN] Would open remediation PR in Org/repo-drift" "drift-only repo enters PR remediation path" +assert_contains "${remediate_output}" "No supported auto-fixes for Org/repo-null; issue-only remediation applied." "null-array row handled without crash" + +echo "== Test 3: org-governance-remediate retries GitHub throttle and handles retry exhaustion ==" +export GH_FAKE_STATE_DIR="${TMP_DIR}/gh-state" +mkdir -p "${GH_FAKE_STATE_DIR}" + +THROTTLE_OK_REPO="${FAKE_REPOS}/Org__repo-throttle-ok" +mkdir -p "${THROTTLE_OK_REPO}/docs" +cat > "${THROTTLE_OK_REPO}/CHITTY.md" <<'EOF' +# CHITTY +Old format +EOF +cat > "${THROTTLE_OK_REPO}/CHARTER.md" <<'EOF' +# CHARTER +Old format +EOF +cat > "${THROTTLE_OK_REPO}/docs/PERSISTENT_BRIEF.md" <<'EOF' +# Persistent Brief +Old format +EOF +init_git_repo "${THROTTLE_OK_REPO}" + +THROTTLE_FAIL_REPO="${FAKE_REPOS}/Org__repo-throttle-fail" +mkdir -p "${THROTTLE_FAIL_REPO}/docs" +cat > "${THROTTLE_FAIL_REPO}/CHITTY.md" <<'EOF' +# CHITTY +Old format +EOF +cat > "${THROTTLE_FAIL_REPO}/CHARTER.md" <<'EOF' +# CHARTER +Old format +EOF +cat > "${THROTTLE_FAIL_REPO}/docs/PERSISTENT_BRIEF.md" <<'EOF' +# Persistent Brief +Old format +EOF +init_git_repo "${THROTTLE_FAIL_REPO}" + +THROTTLE_REPORT="${TMP_DIR}/report-throttle.json" +cat > "${THROTTLE_REPORT}" <<'EOF' +[ + { + "fullRepo": "Org/repo-throttle-ok", + "compliant": false, + "defaultBranch": "main", + "score": 60, + "missingFiles": [], + "missingPatterns": ["CHITTY.md:context_brief:"], + "missingTriggers": [], + "missingStatusChecks": [], + "missingRepoSettings": [], + "branchProtection": true + }, + { + "fullRepo": "Org/repo-throttle-fail", + "compliant": false, + "defaultBranch": "main", + "score": 50, + "missingFiles": [], + "missingPatterns": ["CHARTER.md:context_brief:"], + "missingTriggers": [], + "missingStatusChecks": [], + "missingRepoSettings": [], + "branchProtection": true + } +] +EOF + +set +e +throttle_output="$( + PATH="${FAKE_BIN}:$PATH" \ + CHITTY_DISPATCH_STRICT=false \ + CHITTY_LOCAL_AGENT_DISPATCH=false \ + CHITTY_AUTO_ARM_PR_MERGE=false \ + bash "${ROOT_DIR}/scripts/org-governance-remediate.sh" \ + --policy "${ROOT_DIR}/.github/org-governance-policy.json" \ + --report "${THROTTLE_REPORT}" \ + --auto-pr true \ + --max-prs 20 2>&1 +)" +throttle_status=$? +set -e + +if [[ "${throttle_status}" -eq 0 ]]; then + pass "throttle scenario exits successfully" +else + fail "throttle scenario failed (status=${throttle_status})" +fi + +assert_contains "${throttle_output}" "PR create throttled for Org/repo-throttle-ok; retrying in 20s..." "throttle retry #1 observed" +assert_contains "${throttle_output}" "PR create throttled for Org/repo-throttle-ok; retrying in 40s..." "throttle retry #2 observed" +assert_contains "${throttle_output}" "Opened remediation PR in Org/repo-throttle-ok" "throttle repo eventually opens PR" +assert_contains "${throttle_output}" "Skipped PR create in Org/repo-throttle-fail: retries exhausted after GitHub throttle." "retry exhaustion is handled" + +echo "== Summary ==" +echo "Passed: ${PASS_COUNT}" +echo "Failed: ${FAIL_COUNT}" + +if [[ "${FAIL_COUNT}" -ne 0 ]]; then + exit 1 +fi diff --git a/scripts/seed-kv.sh b/scripts/seed-kv.sh new file mode 100644 index 0000000..0705685 --- /dev/null +++ b/scripts/seed-kv.sh @@ -0,0 +1,37 @@ +#!/usr/bin/env bash +set -euo pipefail + +# Seed KV allowlists and rate limits for chittycommand +# Usage: +# scripts/seed-kv.sh +# +# Optional environment variables: +# TOKEN_SHA256_LIST JSON array of sha256 hex token hashes (e.g., '["abc123..."]') +# ALLOWLIST_JSON JSON array of allowlist patterns (default: '["op://ChittyOS/*"]') +# SUBJECT_ALLOWLIST JSON array of subjects (default: '["svc:bridge-service"]') +# CRED_RATE_LIMIT Integer per-minute limit (default: 12) +# DISCOVER_RATE_LIMIT Integer per-minute limit (default: 60) + +NS_ID=${1:-} +if [ -z "$NS_ID" ]; then + echo "Usage: $0 " >&2 + exit 1 +fi + +ALLOWLIST_JSON=${ALLOWLIST_JSON:-'["op://ChittyOS/*"]'} +SUBJECT_ALLOWLIST=${SUBJECT_ALLOWLIST:-'["svc:bridge-service"]'} +CRED_RATE_LIMIT=${CRED_RATE_LIMIT:-12} +DISCOVER_RATE_LIMIT=${DISCOVER_RATE_LIMIT:-60} + +echo "Seeding COMMAND_KV namespace: $NS_ID" + +wrangler kv key put --namespace-id "$NS_ID" credentials:allowlist "$ALLOWLIST_JSON" +wrangler kv key put --namespace-id "$NS_ID" credentials:subject_allowlist "$SUBJECT_ALLOWLIST" +wrangler kv key put --namespace-id "$NS_ID" credentials:rate_limit "$CRED_RATE_LIMIT" +wrangler kv key put --namespace-id "$NS_ID" discover:rate_limit "$DISCOVER_RATE_LIMIT" + +if [ -n "${TOKEN_SHA256_LIST:-}" ]; then + wrangler kv key put --namespace-id "$NS_ID" credentials:token_allowlist "$TOKEN_SHA256_LIST" +fi + +echo "KV seed complete." diff --git a/scripts/stamp-discovery-links.sh b/scripts/stamp-discovery-links.sh new file mode 100755 index 0000000..aab3026 --- /dev/null +++ b/scripts/stamp-discovery-links.sh @@ -0,0 +1,139 @@ +#!/usr/bin/env bash +set -euo pipefail + +ROOT_DIR="${1:-.}" + +DISCOVERY_BLOCK=' +## Persistent Context + +- **Working memory brief**: [docs/PERSISTENT_BRIEF.md](docs/PERSISTENT_BRIEF.md) +- **Canonical governance**: `chittycanon://gov/governance` +- **TY/VY/RY framework**: `chittycanon://gov/governance#three-aspects-framework` +- **Context model**: `chittycanon://docs/tech/spec/context-schema` +- **Session governance genes**: `chittycanon://specs/chittydna-session-governance` +- **Governance DNA / earned authority**: `chittycanon://gov/governance#written-to-chittydna` + +This section is a persistent discovery hint for humans and agents. It is not an authority source. +' + +BRIEF_ANCHORS_BLOCK=' +## Discovery Anchors + +- TY/VY/RY framework: `chittycanon://gov/governance#three-aspects-framework` +- Session genes: `chittycanon://specs/chittydna-session-governance` +- Governance DNA: `chittycanon://gov/governance#written-to-chittydna` +' + +ensure_frontmatter_refs() { + local file="$1" + local tmp + local end_line + + grep -q '^context_brief:' "$file" && return 0 + tmp="$(mktemp)" + + if [[ "$(head -n1 "$file" || true)" == "---" ]]; then + end_line="$(awk 'NR>1 && $0=="---" {print NR; exit}' "$file")" + [[ -n "${end_line:-}" ]] || return 0 + { + head -n $((end_line - 1)) "$file" + cat <<'YAML' +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance +YAML + tail -n +"$end_line" "$file" + } > "$tmp" + mv "$tmp" "$file" + return 0 + fi + + { + cat <<'YAML' +--- +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance +--- + +YAML + cat "$file" + } > "$tmp" + mv "$tmp" "$file" +} + +upsert_discovery_block() { + local file="$1" + local tmp + tmp="$(mktemp)" + + if grep -q '' "$file"; then + perl -0777 -pe "s@.*?@${DISCOVERY_BLOCK}@s" "$file" > "$tmp" + mv "$tmp" "$file" + return 0 + fi + + if grep -q '^# ' "$file"; then + inserted=false + while IFS= read -r line || [[ -n "$line" ]]; do + printf '%s\n' "$line" >> "$tmp" + if [[ "${inserted}" == "false" && "$line" == \#\ * ]]; then + printf '\n%s\n\n' "$DISCOVERY_BLOCK" >> "$tmp" + inserted=true + fi + done < "$file" + if [[ "${inserted}" == "false" ]]; then + printf '\n%s\n' "$DISCOVERY_BLOCK" >> "$tmp" + fi + mv "$tmp" "$file" + else + { + cat "$file" + printf "\n%s\n" "$DISCOVERY_BLOCK" + } > "$tmp" + mv "$tmp" "$file" + fi +} + +upsert_brief_anchors() { + local file="$1" + local tmp + tmp="$(mktemp)" + + if grep -q '' "$file"; then + perl -0777 -pe "s@.*?@${BRIEF_ANCHORS_BLOCK}@s" "$file" > "$tmp" + mv "$tmp" "$file" + return 0 + fi + + if grep -q '^## Discovery Anchors' "$file"; then + # Leave existing anchors untouched when they already exist. + return 0 + fi + + { + cat "$file" + printf "\n%s\n" "$BRIEF_ANCHORS_BLOCK" + } > "$tmp" + mv "$tmp" "$file" +} + +count=0 +while IFS= read -r file; do + ensure_frontmatter_refs "$file" + upsert_discovery_block "$file" + count=$((count + 1)) + echo "Stamped: $file" +done < <(find "$ROOT_DIR" -type f \( -name 'CHITTY.md' -o -name 'CHARTER.md' \) | sort) + +while IFS= read -r file; do + upsert_brief_anchors "$file" + count=$((count + 1)) + echo "Stamped: $file" +done < <(find "$ROOT_DIR" -type f -path '*/docs/PERSISTENT_BRIEF.md' | sort) + +echo "Updated $count files." diff --git a/src/index.ts b/src/index.ts index 19c955f..1d1160e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -59,8 +59,9 @@ const app = new Hono<{ Bindings: Env; Variables: AuthVariables }>(); // CORS for frontend app.use('*', cors({ origin: ['https://app.command.chitty.cc', 'https://cmd.chitty.cc', 'https://command.mychitty.com', 'https://chittycommand-ui.pages.dev', 'http://localhost:5173'], - allowMethods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH'], + allowMethods: ['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'OPTIONS'], allowHeaders: ['Content-Type', 'Authorization'], + credentials: true, })); // Global error handler — never leak internal details diff --git a/src/lib/beacon.ts b/src/lib/beacon.ts new file mode 100644 index 0000000..1391072 --- /dev/null +++ b/src/lib/beacon.ts @@ -0,0 +1,39 @@ +import type { Env } from '../index'; + +export async function sendBeacon(env: Env) { + try { + if (!env.CHITTYREGISTER_URL) return; + const url = `${env.CHITTYREGISTER_URL.replace(/\/$/, '')}/v1/beacon`; + const payload = { + name: 'ChittyCommand', + version: '0.1.0', + environment: env.ENVIRONMENT || 'production', + canonicalUri: 'chittycanon://core/services/chittycommand', + timestamp: new Date().toISOString(), + }; + const headers: Record = { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }; + if (env.CHITTY_CONNECT_TOKEN) headers['Authorization'] = `Bearer ${env.CHITTY_CONNECT_TOKEN}`; + const res = await fetch(url, { method: 'POST', headers, body: JSON.stringify(payload) }); + const ok = res.ok; + const now = new Date().toISOString(); + await env.COMMAND_KV.put('register:last_beacon_at', now); + await env.COMMAND_KV.put('register:last_beacon_status', ok ? 'ok' : `http_${res.status}`); + + // Also emit beacon to ChittyConnect if configured (topology tracking) + if (env.CHITTYCONNECT_URL) { + try { + const cu = `${env.CHITTYCONNECT_URL.replace(/\/$/, '')}/v1/beacon`; + const ch = { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' } as Record; + if (env.CHITTY_CONNECT_TOKEN) ch['Authorization'] = `Bearer ${env.CHITTY_CONNECT_TOKEN}`; + const cres = await fetch(cu, { method: 'POST', headers: ch, body: JSON.stringify(payload) }); + await env.COMMAND_KV.put('connect:last_beacon_at', now); + await env.COMMAND_KV.put('connect:last_beacon_status', cres.ok ? 'ok' : `http_${cres.status}`); + } catch { + await env.COMMAND_KV.put('connect:last_beacon_status', 'error'); + } + } + } catch (e) { + // Best-effort; record failure without throwing + await env.COMMAND_KV.put('register:last_beacon_status', 'error'); + } +} diff --git a/src/lib/integrations.ts b/src/lib/integrations.ts index ba58b00..8b4c161 100644 --- a/src/lib/integrations.ts +++ b/src/lib/integrations.ts @@ -72,6 +72,28 @@ export function ledgerClient(env: Env) { return await res.json() as Record[]; } catch { return []; } }, + + /** Get facts for a case (if supported) */ + getFactsForCase: async (caseId: string): Promise[]> => { + try { + const res = await fetch(`${baseUrl}/api/cases/${encodeURIComponent(caseId)}/facts`, { + headers: { 'X-Source-Service': 'chittycommand' }, + }); + if (!res.ok) return []; + return await res.json() as Record[]; + } catch { return []; } + }, + + /** Get contradictions for a case (if supported) */ + getContradictionsForCase: async (caseId: string): Promise[]> => { + try { + const res = await fetch(`${baseUrl}/api/cases/${encodeURIComponent(caseId)}/contradictions`, { + headers: { 'X-Source-Service': 'chittycommand' }, + }); + if (!res.ok) return []; + return await res.json() as Record[]; + } catch { return []; } + }, }; } @@ -293,12 +315,26 @@ export function connectClient(env: Env) { return { /** Discover a service URL by name */ discover: async (serviceName: string): Promise => { + const key = `connect:discover:${encodeURIComponent(serviceName)}`; + // KV cache (5 minutes) + try { + const cached = await env.COMMAND_KV.get(key); + if (cached) { + try { + const obj = JSON.parse(cached) as { url?: string }; + if (obj?.url) return obj.url; + } catch { /* ignore */ } + } + } catch { /* ignore */ } + try { - const res = await fetch(`${baseUrl}/api/discover/${serviceName}`, { + const res = await fetch(`${baseUrl}/api/discover/${encodeURIComponent(serviceName)}`, { headers: { 'X-Source-Service': 'chittycommand' }, }); if (!res.ok) return null; const data = await res.json() as { url: string }; + // Store in KV with TTL + try { await env.COMMAND_KV.put(key, JSON.stringify({ url: data.url }), { expirationTtl: 300 }); } catch { /* ignore */ } return data.url; } catch { return null; } }, diff --git a/src/lib/validators.ts b/src/lib/validators.ts index 95299b2..6b64b2d 100644 --- a/src/lib/validators.ts +++ b/src/lib/validators.ts @@ -238,6 +238,14 @@ export const claimNamespaceSchema = z.object({ .regex(/^[a-z][a-z0-9._-]*$/, 'Must start with a letter; only lowercase letters, numbers, dots, hyphens, underscores'), }); +// ── Context (persona/tags/label) ──────────────────────────── + +export const contextUpdateSchema = z.object({ + persona: z.string().min(1).max(100).optional(), + label: z.string().min(1).max(100).optional(), + tags: z.array(z.string().min(1).max(50)).max(20).optional(), +}); + // ── Chat ──────────────────────────────────────────────────── export const chatRequestSchema = z.object({ diff --git a/src/middleware/auth.ts b/src/middleware/auth.ts index abd6eb6..57f5a41 100644 --- a/src/middleware/auth.ts +++ b/src/middleware/auth.ts @@ -117,6 +117,53 @@ export async function mcpAuthMiddleware(c: Context<{ Bindings: Env; Variables: A } const token = authHeader.slice(7); + const authUrl = c.env.CHITTYAUTH_URL; + if (authUrl) { + try { + const res = await fetch(`${authUrl}/v1/tokens/validate`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': `Bearer ${token}`, + 'X-Source-Service': 'chittycommand', + }, + body: JSON.stringify({ token }), + }); + if (res.ok) { + const identity = await res.json() as { + valid?: boolean; + user_id?: string; + chittyId?: string; + scopes?: string[] | string; + scope?: string[] | string; + }; + + const rawScopes = identity.scopes ?? identity.scope ?? []; + const normalizedScopes = Array.isArray(rawScopes) + ? rawScopes.filter((s): s is string => typeof s === 'string') + : typeof rawScopes === 'string' + ? rawScopes.split(/[,\s]+/).filter(Boolean) + : []; + const hasMcpScope = normalizedScopes.some( + (s) => s === 'mcp' || s.startsWith('mcp:') || s === 'admin' || s === '*' + ); + const isValid = identity.valid === true || normalizedScopes.length > 0; + + if (isValid && (hasMcpScope || normalizedScopes.length === 0)) { + c.set('userId', identity.user_id || identity.chittyId || 'mcp-client'); + c.set('scopes', normalizedScopes.length ? normalizedScopes : ['mcp']); + return next(); + } + + if (isValid) { + return c.json({ error: 'Insufficient MCP scope' }, 403); + } + } + } catch { + // Fall through to legacy shared-token auth for backward compatibility. + } + } + const validToken = await c.env.COMMAND_KV.get('mcp:service_token'); if (!validToken || token !== validToken) { diff --git a/src/routes/auth.ts b/src/routes/auth.ts index 8bcf0cb..6f5990e 100644 --- a/src/routes/auth.ts +++ b/src/routes/auth.ts @@ -238,8 +238,8 @@ const loginPage = ` if (!res.ok) { throw new Error(data.error || 'Login failed'); } - localStorage.setItem('cc_token', data.token); - localStorage.setItem('cc_user', data.user_id); + localStorage.setItem('chittycommand_token', data.token); + localStorage.setItem('chittycommand_user', JSON.stringify({ user_id: data.user_id, scopes: data.scopes || ['admin'] })); successEl.textContent = 'Signed in. Redirecting...'; successEl.style.display = 'block'; setTimeout(() => { window.location.href = '/'; }, 500); diff --git a/src/routes/bridge.ts b/src/routes/bridge.ts deleted file mode 100644 index bf6e711..0000000 --- a/src/routes/bridge.ts +++ /dev/null @@ -1,783 +0,0 @@ -import { Hono } from 'hono'; -import type { Env } from '../index'; -import type { AuthVariables } from '../middleware/auth'; -import { getDb } from '../lib/db'; -import { ledgerClient, financeClient, plaidClient, mercuryClient, connectClient, booksClient, assetsClient, scrapeClient } from '../lib/integrations'; -import { recordActionSchema, exchangeTokenSchema, recordBookTransactionSchema, submitEvidenceSchema, courtDocketScrapeSchema } from '../lib/validators'; - -export const bridgeRoutes = new Hono<{ Bindings: Env; Variables: AuthVariables }>(); - -// ── ChittyLedger Sync ──────────────────────────────────────── - -/** Push all unsynced documents to ChittyLedger as evidence */ -bridgeRoutes.post('/ledger/sync-documents', async (c) => { - const ledger = ledgerClient(c.env); - if (!ledger) return c.json({ error: 'ChittyLedger not configured' }, 503); - - const sql = getDb(c.env); - const unsynced = await sql` - SELECT * FROM cc_documents - WHERE processing_status = 'pending' - AND (metadata->>'ledger_evidence_id') IS NULL - ORDER BY created_at ASC - LIMIT 50 - `; - - let synced = 0; - for (const doc of unsynced) { - const evidence = await ledger.createEvidence({ - filename: doc.filename || 'unknown', - fileType: doc.doc_type || 'upload', - description: `Uploaded via ChittyCommand: ${doc.filename}`, - evidenceTier: 'BUSINESS_RECORDS', - }); - - if (evidence?.id) { - await sql` - UPDATE cc_documents SET - metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ ledger_evidence_id: evidence.id })}::jsonb, - processing_status = 'synced' - WHERE id = ${doc.id} - `; - synced++; - } - } - - return c.json({ total: unsynced.length, synced, message: `Synced ${synced} documents to ChittyLedger` }); -}); - -/** Push disputes to ChittyLedger as cases */ -bridgeRoutes.post('/ledger/sync-disputes', async (c) => { - const ledger = ledgerClient(c.env); - if (!ledger) return c.json({ error: 'ChittyLedger not configured' }, 503); - - const sql = getDb(c.env); - const unsynced = await sql` - SELECT * FROM cc_disputes - WHERE (metadata->>'ledger_case_id') IS NULL - ORDER BY created_at ASC - `; - - let synced = 0; - for (const dispute of unsynced) { - const caseResult = await ledger.createCase({ - caseNumber: `CC-DISPUTE-${(dispute.id as string).slice(0, 8)}`, - title: dispute.title as string, - caseType: 'CIVIL', - description: dispute.description as string || undefined, - }); - - if (caseResult?.id) { - await sql` - UPDATE cc_disputes SET - metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ ledger_case_id: caseResult.id })}::jsonb - WHERE id = ${dispute.id} - `; - synced++; - } - } - - return c.json({ total: unsynced.length, synced, message: `Synced ${synced} disputes to ChittyLedger` }); -}); - -/** Record an action in ChittyLedger chain of custody */ -bridgeRoutes.post('/ledger/record-action', async (c) => { - const ledger = ledgerClient(c.env); - if (!ledger) return c.json({ error: 'ChittyLedger not configured' }, 503); - - const parsed = recordActionSchema.safeParse(await c.req.json()); - if (!parsed.success) return c.json({ error: 'Invalid request', details: parsed.error.issues }, 400); - - const body = parsed.data; - const result = await ledger.addCustodyEntry({ - evidenceId: body.evidence_id, - action: body.action, - performedBy: 'chittycommand', - location: 'ChittyCommand Dashboard', - notes: body.notes, - }); - - return c.json({ recorded: !!result }); -}); - -// ── ChittyFinance Sync ─────────────────────────────────────── - -/** Pull accounts from ChittyFinance into cc_accounts */ -bridgeRoutes.post('/finance/sync-accounts', async (c) => { - const finance = financeClient(c.env); - if (!finance) return c.json({ error: 'ChittyFinance not configured' }, 503); - - const accounts = await finance.getAccounts(); - if (!accounts) return c.json({ error: 'Failed to fetch accounts from ChittyFinance' }, 502); - - const sql = getDb(c.env); - let created = 0; - let updated = 0; - - for (const acct of accounts) { - const [existing] = await sql` - SELECT id FROM cc_accounts WHERE source_id = ${acct.id} AND source = 'chittyfinance' - `; - - if (existing) { - await sql` - UPDATE cc_accounts SET - current_balance = ${acct.balance}, - last_synced_at = NOW(), - updated_at = NOW() - WHERE id = ${existing.id} - `; - updated++; - } else { - const typeMap: Record = { - checking: 'checking', savings: 'savings', credit: 'credit_card', - }; - await sql` - INSERT INTO cc_accounts (source, source_id, account_name, account_type, institution, current_balance, last_synced_at) - VALUES ('chittyfinance', ${acct.id}, ${acct.name}, ${typeMap[acct.type] || acct.type}, ${acct.institution}, ${acct.balance}, NOW()) - `; - created++; - } - } - - return c.json({ fetched: accounts.length, created, updated }); -}); - -/** Pull transactions from ChittyFinance into cc_transactions */ -bridgeRoutes.post('/finance/sync-transactions', async (c) => { - const finance = financeClient(c.env); - if (!finance) return c.json({ error: 'ChittyFinance not configured' }, 503); - - const sql = getDb(c.env); - - // Get all accounts sourced from chittyfinance - const accounts = await sql` - SELECT id, source_id FROM cc_accounts WHERE source = 'chittyfinance' - `; - - let totalImported = 0; - - for (const acct of accounts) { - // Get last synced transaction date - const [latest] = await sql` - SELECT MAX(tx_date) as last_date FROM cc_transactions WHERE account_id = ${acct.id} - `; - const since = latest?.last_date || '2024-01-01'; - - const txns = await finance.getTransactions(acct.source_id as string, since as string); - if (!txns) continue; - - for (const tx of txns) { - // Dedup by source_id - const [exists] = await sql` - SELECT id FROM cc_transactions WHERE source_id = ${tx.id} AND source = 'chittyfinance' - `; - if (exists) continue; - - await sql` - INSERT INTO cc_transactions (account_id, source, source_id, amount, direction, description, category, counterparty, tx_date) - VALUES (${acct.id}, 'chittyfinance', ${tx.id}, ${Math.abs(tx.amount)}, ${tx.direction}, ${tx.description}, ${tx.category || null}, ${tx.counterparty || null}, ${tx.date}) - `; - totalImported++; - } - } - - return c.json({ accounts_checked: accounts.length, transactions_imported: totalImported }); -}); - -// ── Plaid ──────────────────────────────────────────────────── - -/** Create a Plaid Link token for the frontend */ -bridgeRoutes.post('/plaid/link-token', async (c) => { - const plaid = plaidClient(c.env); - if (!plaid) return c.json({ error: 'Plaid not configured' }, 503); - - const userId = c.get('userId') || 'anonymous'; - const result = await plaid.createLinkToken(userId); - if (!result) return c.json({ error: 'Failed to create link token' }, 502); - - return c.json(result); -}); - -/** Exchange public token from Plaid Link and store the linked item */ -bridgeRoutes.post('/plaid/exchange-token', async (c) => { - const plaid = plaidClient(c.env); - if (!plaid) return c.json({ error: 'Plaid not configured' }, 503); - - const parsed = exchangeTokenSchema.safeParse(await c.req.json()); - if (!parsed.success) return c.json({ error: 'public_token required' }, 400); - const { public_token } = parsed.data; - - const result = await plaid.exchangePublicToken(public_token); - if (!result) return c.json({ error: 'Token exchange failed' }, 502); - - const sql = getDb(c.env); - - // Store the access token securely in KV (not in the DB) - await c.env.COMMAND_KV.put(`plaid:access_token:${result.item_id}`, result.access_token); - - // Fetch accounts for this item and upsert into cc_accounts - const acctResult = await plaid.getAccounts(result.access_token); - let created = 0; - - if (acctResult?.accounts) { - for (const acct of acctResult.accounts) { - const [existing] = await sql` - SELECT id FROM cc_accounts WHERE source_id = ${acct.account_id} AND source = 'plaid' - `; - if (existing) continue; - - const typeMap: Record = { - depository: 'checking', credit: 'credit_card', loan: 'loan', investment: 'investment', - }; - await sql` - INSERT INTO cc_accounts (source, source_id, account_name, account_type, institution, current_balance, last_synced_at, metadata) - VALUES ('plaid', ${acct.account_id}, ${acct.name}, ${typeMap[acct.type] || acct.type}, ${'Plaid:' + (acct.official_name || acct.name)}, ${acct.balances.current || 0}, NOW(), ${JSON.stringify({ plaid_item_id: result.item_id, mask: acct.mask, subtype: acct.subtype })}) - `; - created++; - } - } - - return c.json({ item_id: result.item_id, accounts_linked: created }); -}); - -/** Sync transactions from all Plaid-linked accounts */ -bridgeRoutes.post('/plaid/sync-transactions', async (c) => { - const plaid = plaidClient(c.env); - if (!plaid) return c.json({ error: 'Plaid not configured' }, 503); - - const sql = getDb(c.env); - - // Get all Plaid-sourced accounts grouped by item_id - const accounts = await sql` - SELECT id, source_id, metadata FROM cc_accounts WHERE source = 'plaid' - `; - - // Group by plaid_item_id to avoid redundant API calls - const itemIds = new Set(); - const accountMap = new Map(); - for (const acct of accounts) { - const meta = (acct.metadata || {}) as Record; - const itemId = meta.plaid_item_id; - if (!itemId) continue; - itemIds.add(itemId); - if (!accountMap.has(itemId)) accountMap.set(itemId, []); - accountMap.get(itemId)!.push({ dbId: acct.id as string, sourceId: acct.source_id as string }); - } - - let totalAdded = 0; - - for (const itemId of itemIds) { - const accessToken = await c.env.COMMAND_KV.get(`plaid:access_token:${itemId}`); - if (!accessToken) continue; - - // Get cursor from KV for incremental sync - const cursor = await c.env.COMMAND_KV.get(`plaid:cursor:${itemId}`) || undefined; - let hasMore = true; - let currentCursor = cursor; - - while (hasMore) { - const result = await plaid.syncTransactions(accessToken, currentCursor); - if (!result) break; - - const itemAccounts = accountMap.get(itemId) || []; - - for (const tx of result.added) { - // Find the matching cc_account - const match = itemAccounts.find((a) => a.sourceId === tx.account_id); - if (!match) continue; - - // Dedup by source_id - const [exists] = await sql` - SELECT id FROM cc_transactions WHERE source_id = ${tx.transaction_id} AND source = 'plaid' - `; - if (exists) continue; - - // Plaid: positive amount = money leaving account (outflow), negative = inflow - const direction = tx.amount > 0 ? 'outflow' : 'inflow'; - await sql` - INSERT INTO cc_transactions (account_id, source, source_id, amount, direction, description, category, counterparty, tx_date) - VALUES (${match.dbId}, 'plaid', ${tx.transaction_id}, ${Math.abs(tx.amount)}, ${direction}, ${tx.name}, ${tx.category?.[0] || null}, ${tx.merchant_name || null}, ${tx.date}) - `; - totalAdded++; - } - - currentCursor = result.next_cursor; - hasMore = result.has_more; - } - - // Persist cursor for next incremental sync - if (currentCursor) { - await c.env.COMMAND_KV.put(`plaid:cursor:${itemId}`, currentCursor); - } - } - - return c.json({ items_checked: itemIds.size, accounts: accounts.length, transactions_added: totalAdded }); -}); - -/** Refresh balances from Plaid */ -bridgeRoutes.post('/plaid/sync-balances', async (c) => { - const plaid = plaidClient(c.env); - if (!plaid) return c.json({ error: 'Plaid not configured' }, 503); - - const sql = getDb(c.env); - const accounts = await sql` - SELECT id, source_id, metadata FROM cc_accounts WHERE source = 'plaid' - `; - - const itemIds = new Set(); - for (const acct of accounts) { - const meta = (acct.metadata || {}) as Record; - if (meta.plaid_item_id) itemIds.add(meta.plaid_item_id); - } - - let updated = 0; - for (const itemId of itemIds) { - const accessToken = await c.env.COMMAND_KV.get(`plaid:access_token:${itemId}`); - if (!accessToken) continue; - - const result = await plaid.getBalances(accessToken); - if (!result?.accounts) continue; - - for (const acct of result.accounts) { - await sql` - UPDATE cc_accounts SET - current_balance = ${acct.balances.current || 0}, - last_synced_at = NOW(), - updated_at = NOW() - WHERE source_id = ${acct.account_id} AND source = 'plaid' - `; - updated++; - } - } - - return c.json({ items_checked: itemIds.size, accounts_updated: updated }); -}); - -// ── Mercury ───────────────────────────────────────────────── - -interface MercuryOrg { - slug: string; - opRef: string; -} - -/** Refresh Mercury tokens from ChittyConnect/1Password into KV */ -bridgeRoutes.post('/mercury/refresh-tokens', async (c) => { - const connect = connectClient(c.env); - const orgsJson = await c.env.COMMAND_KV.get('mercury:orgs'); - if (!orgsJson) return c.json({ error: 'No mercury:orgs configured in KV' }, 404); - - const orgs: MercuryOrg[] = JSON.parse(orgsJson); - let refreshed = 0; - let failed = 0; - - for (const org of orgs) { - try { - let token: string | null = null; - if (connect) { - const res = await fetch(`${c.env.CHITTYCONNECT_URL}/api/credentials/${encodeURIComponent(org.opRef)}`, { - headers: { 'X-Source-Service': 'chittycommand' }, - signal: AbortSignal.timeout(5000), - }); - if (res.ok) { - const data = await res.json() as { value: string }; - token = data.value; - } - } - if (token) { - await c.env.COMMAND_KV.put(`mercury:token:${org.slug}`, token); - refreshed++; - } else { - const cached = await c.env.COMMAND_KV.get(`mercury:token:${org.slug}`); - if (cached) { - console.log(`[mercury] Using cached token for ${org.slug}`); - } else { - failed++; - console.error(`[mercury] No token available for ${org.slug}`); - } - } - } catch (err) { - failed++; - console.error(`[mercury] Token refresh failed for ${org.slug}:`, err); - } - } - - return c.json({ orgs: orgs.length, refreshed, failed }); -}); - -/** Sync accounts from all Mercury orgs */ -bridgeRoutes.post('/mercury/sync-accounts', async (c) => { - const orgsJson = await c.env.COMMAND_KV.get('mercury:orgs'); - if (!orgsJson) return c.json({ error: 'No mercury:orgs configured in KV' }, 404); - - const orgs: MercuryOrg[] = JSON.parse(orgsJson); - const sql = getDb(c.env); - let totalCreated = 0; - let totalUpdated = 0; - const errors: string[] = []; - - for (const org of orgs) { - const token = await c.env.COMMAND_KV.get(`mercury:token:${org.slug}`); - if (!token) { - errors.push(`${org.slug}: no token`); - continue; - } - - const mercury = mercuryClient(token); - const result = await mercury.getAccounts(); - if (!result?.accounts) { - errors.push(`${org.slug}: API call failed`); - continue; - } - - for (const acct of result.accounts) { - if (acct.status !== 'active') continue; - - const [existing] = await sql` - SELECT id FROM cc_accounts WHERE source_id = ${acct.id} AND source = 'mercury' - `; - - const typeMap: Record = { mercury: 'checking', savings: 'savings' }; - const accountType = typeMap[acct.kind] || 'checking'; - - if (existing) { - await sql` - UPDATE cc_accounts SET - current_balance = ${acct.currentBalance}, - last_synced_at = NOW(), - updated_at = NOW() - WHERE id = ${existing.id} - `; - totalUpdated++; - } else { - await sql` - INSERT INTO cc_accounts (source, source_id, account_name, account_type, institution, current_balance, last_synced_at, metadata) - VALUES ('mercury', ${acct.id}, ${acct.name}, ${accountType}, ${'Mercury'}, ${acct.currentBalance}, NOW(), - ${JSON.stringify({ mercury_org: org.slug, mercury_kind: acct.kind, mercury_status: acct.status })}::jsonb) - `; - totalCreated++; - } - } - } - - return c.json({ orgs: orgs.length, created: totalCreated, updated: totalUpdated, errors }); -}); - -/** Sync transactions from all Mercury accounts */ -bridgeRoutes.post('/mercury/sync-transactions', async (c) => { - const sql = getDb(c.env); - - const accounts = await sql` - SELECT id, source_id, metadata FROM cc_accounts WHERE source = 'mercury' - `; - - const orgAccounts = new Map(); - for (const acct of accounts) { - const meta = (acct.metadata || {}) as Record; - const org = meta.mercury_org; - if (!org) continue; - if (!orgAccounts.has(org)) orgAccounts.set(org, []); - orgAccounts.get(org)!.push({ dbId: acct.id as string, sourceId: acct.source_id as string }); - } - - let totalAdded = 0; - const errors: string[] = []; - - for (const [orgSlug, accts] of orgAccounts) { - const token = await c.env.COMMAND_KV.get(`mercury:token:${orgSlug}`); - if (!token) { - errors.push(`${orgSlug}: no token`); - continue; - } - - const mercury = mercuryClient(token); - - for (const acct of accts) { - const cursor = await c.env.COMMAND_KV.get(`mercury:cursor:${acct.sourceId}`); - const start = cursor || '2024-01-01'; - - const result = await mercury.getTransactions(acct.sourceId, { start, limit: 500 }); - if (!result?.transactions) continue; - - const txIds = result.transactions.map((tx) => tx.id); - const existingRows = txIds.length > 0 - ? await sql`SELECT source_id FROM cc_transactions WHERE source = 'mercury' AND source_id = ANY(${txIds})` - : []; - const existingIds = new Set(existingRows.map((r: any) => r.source_id)); - - for (const tx of result.transactions) { - if (existingIds.has(tx.id)) continue; - if (tx.status === 'cancelled') continue; - - const direction = tx.amount >= 0 ? 'inflow' : 'outflow'; - const counterparty = tx.counterpartyNickname || tx.counterpartyName || null; - const description = tx.externalMemo || tx.bankDescription || tx.counterpartyName; - const txDate = tx.postedAt ? tx.postedAt.split('T')[0] : tx.createdAt.split('T')[0]; - - await sql` - INSERT INTO cc_transactions (account_id, source, source_id, amount, direction, description, counterparty, tx_date, posted_at, metadata) - VALUES (${acct.dbId}, 'mercury', ${tx.id}, ${Math.abs(tx.amount)}, ${direction}, ${description}, ${counterparty}, ${txDate}, - ${tx.postedAt || null}, ${JSON.stringify({ mercury_kind: tx.kind, mercury_status: tx.status })}::jsonb) - ON CONFLICT DO NOTHING - `; - totalAdded++; - } - - if (result.transactions.length > 0) { - const latestDate = result.transactions - .map((tx) => tx.postedAt || tx.createdAt) - .sort() - .pop(); - if (latestDate) { - await c.env.COMMAND_KV.put(`mercury:cursor:${acct.sourceId}`, latestDate.split('T')[0]); - } - } - } - } - - return c.json({ accounts: accounts.length, transactions_added: totalAdded, errors }); -}); - -// ── ChittyBooks ───────────────────────────────────────────── - -/** Record a transaction in ChittyBooks for bookkeeping */ -bridgeRoutes.post('/books/record-transaction', async (c) => { - const books = booksClient(c.env); - if (!books) return c.json({ error: 'ChittyBooks not configured' }, 503); - - const parsed = recordBookTransactionSchema.safeParse(await c.req.json()); - if (!parsed.success) return c.json({ error: 'Validation failed', issues: parsed.error.issues }, 400); - const body = parsed.data; - - const result = await books.recordTransaction(body); - if (!result) return c.json({ error: 'Failed to record transaction in ChittyBooks' }, 502); - - const sql = getDb(c.env); - await sql` - INSERT INTO cc_actions_log (action_type, target_type, description, request_payload, response_payload, status) - VALUES ('books_record', 'transaction', ${body.description}, ${JSON.stringify(body)}::jsonb, ${JSON.stringify(result)}::jsonb, 'completed') - `; - - return c.json({ recorded: true, books_result: result }); -}); - -/** Get ChittyBooks financial summary */ -bridgeRoutes.get('/books/summary', async (c) => { - const books = booksClient(c.env); - if (!books) return c.json({ error: 'ChittyBooks not configured' }, 503); - - const summary = await books.getSummary(); - if (!summary) return c.json({ error: 'Failed to fetch summary from ChittyBooks' }, 502); - - return c.json(summary); -}); - - -// ── ChittyAssets ──────────────────────────────────────────── - -/** Sync property/asset data from ChittyAssets into cc_properties */ -bridgeRoutes.post('/assets/sync-properties', async (c) => { - const assets = assetsClient(c.env); - if (!assets) return c.json({ error: 'ChittyAssets not configured' }, 503); - - const assetList = await assets.getAssets(); - if (!assetList) return c.json({ error: 'Failed to fetch assets from ChittyAssets' }, 502); - - const sql = getDb(c.env); - let created = 0; - let updated = 0; - - for (const asset of assetList) { - if (!asset.address) continue; - - const [existing] = await sql` - SELECT id FROM cc_properties WHERE address = ${asset.address as string} AND unit = ${(asset.unit as string) || null} - `; - - if (existing) { - await sql` - UPDATE cc_properties SET - metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ chittyassets_id: asset.id, last_synced: new Date().toISOString() })}::jsonb, - updated_at = NOW() - WHERE id = ${existing.id} - `; - updated++; - } else { - await sql` - INSERT INTO cc_properties (address, unit, property_type, metadata) - VALUES (${asset.address as string}, ${(asset.unit as string) || null}, ${(asset.propertyType as string) || null}, - ${JSON.stringify({ chittyassets_id: asset.id, source: 'chittyassets' })}::jsonb) - `; - created++; - } - } - - return c.json({ fetched: assetList.length, created, updated }); -}); - -/** Push an action result to ChittyAssets evidence ledger */ -bridgeRoutes.post('/assets/submit-evidence', async (c) => { - const assets = assetsClient(c.env); - if (!assets) return c.json({ error: 'ChittyAssets not configured' }, 503); - - const parsed = submitEvidenceSchema.safeParse(await c.req.json()); - if (!parsed.success) return c.json({ error: 'Validation failed', issues: parsed.error.issues }, 400); - const body = parsed.data; - - const result = await assets.submitEvidence({ - evidenceType: body.evidenceType, - data: body.data, - metadata: { ...body.metadata, submissionSource: 'ChittyCommand' }, - }); - - if (!result) return c.json({ error: 'Failed to submit evidence to ChittyAssets' }, 502); - - const sql = getDb(c.env); - await sql` - INSERT INTO cc_actions_log (action_type, target_type, description, request_payload, response_payload, status) - VALUES ('assets_evidence', 'evidence', ${body.evidenceType}, ${JSON.stringify(body)}::jsonb, ${JSON.stringify(result)}::jsonb, 'completed') - `; - - return c.json({ submitted: true, chittyId: result.chittyId, trustScore: result.trustScore }); -}); - -// ── ChittyScrape ───────────────────────────────────────────── - -/** Trigger court docket scrape */ -bridgeRoutes.post('/scrape/court-docket', async (c) => { - const scrape = scrapeClient(c.env); - if (!scrape) return c.json({ error: 'ChittyScrape not configured' }, 503); - - const token = await c.env.COMMAND_KV.get('scrape:service_token'); - if (!token) return c.json({ error: 'Scrape service token not configured' }, 503); - - const parsed = courtDocketScrapeSchema.safeParse(await c.req.json()); - if (!parsed.success) return c.json({ error: 'Validation failed', issues: parsed.error.issues }, 400); - const targetCase = parsed.data.caseNumber || '2024D007847'; - - const result = await scrape.scrapeCourtDocket(targetCase, token); - - const sql = getDb(c.env); - await sql`INSERT INTO cc_sync_log (source, sync_type, status, records_synced, error_message) - VALUES ('court_docket', 'scrape', ${result?.success ? 'success' : 'error'}, ${result?.data?.entries?.length || 0}, ${result?.error || null})`; - - if (result?.success && result.data) { - for (const entry of result.data.entries) { - await sql` - INSERT INTO cc_legal_deadlines (case_ref, case_system, deadline_type, title, description, deadline_date, metadata) - VALUES (${targetCase}, 'cook_county_circuit', 'docket_entry', ${entry.description?.slice(0, 500) || 'Docket entry'}, ${entry.description || null}, ${entry.date || new Date().toISOString()}, ${{ filedBy: entry.filedBy, scraped: true }}::jsonb) - ON CONFLICT DO NOTHING - `; - } - - if (result.data.nextHearing) { - await sql` - INSERT INTO cc_legal_deadlines (case_ref, case_system, deadline_type, title, deadline_date, urgency_score, metadata) - VALUES (${targetCase}, 'cook_county_circuit', 'hearing', ${'Next Hearing: ' + targetCase}, ${result.data.nextHearing}, 90, ${{ scraped: true }}::jsonb) - ON CONFLICT DO NOTHING - `; - } - } - - return c.json({ source: 'court_docket', result }); -}); - -/** Trigger Cook County tax scrape for all properties */ -bridgeRoutes.post('/scrape/cook-county-tax', async (c) => { - const scrape = scrapeClient(c.env); - if (!scrape) return c.json({ error: 'ChittyScrape not configured' }, 503); - - const token = await c.env.COMMAND_KV.get('scrape:service_token'); - if (!token) return c.json({ error: 'Scrape service token not configured' }, 503); - - const sql = getDb(c.env); - const properties = await sql`SELECT id, address, unit, tax_pin, metadata FROM cc_properties WHERE tax_pin IS NOT NULL`; - - const results = []; - for (const prop of properties) { - const result = await scrape.scrapeCookCountyTax(prop.tax_pin as string, token); - results.push({ pin: prop.tax_pin, result }); - - if (result?.success && result.data) { - await sql` - UPDATE cc_properties SET - annual_tax = ${result.data.totalTax}, - metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ tax_year: result.data.taxYear, tax_installments: result.data.installments, last_tax_scrape: new Date().toISOString() })}::jsonb, - updated_at = NOW() - WHERE id = ${prop.id} - `; - } - - await sql`INSERT INTO cc_sync_log (source, sync_type, status, records_synced, error_message) - VALUES ('cook_county_tax', 'scrape', ${result?.success ? 'success' : 'error'}, ${result?.success ? 1 : 0}, ${result?.error || null})`; - } - - return c.json({ properties_scraped: properties.length, results }); -}); - -/** Trigger Mr. Cooper scrape */ -bridgeRoutes.post('/scrape/mr-cooper', async (c) => { - const scrape = scrapeClient(c.env); - if (!scrape) return c.json({ error: 'ChittyScrape not configured' }, 503); - - const token = await c.env.COMMAND_KV.get('scrape:service_token'); - if (!token) return c.json({ error: 'Scrape service token not configured' }, 503); - - const result = await scrape.scrapeMrCooper('addison', token); - - const sql = getDb(c.env); - await sql`INSERT INTO cc_sync_log (source, sync_type, status, records_synced, error_message) - VALUES ('mr_cooper', 'scrape', ${result?.success ? 'success' : 'error'}, ${result?.success ? 1 : 0}, ${result?.error || null})`; - - if (result?.success && result.data) { - await sql` - UPDATE cc_obligations SET - amount_due = ${result.data.monthlyPayment}, - metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ - mortgage_balance: result.data.currentBalance, - escrow_balance: result.data.escrowBalance, - interest_rate: result.data.interestRate, - payoff_amount: result.data.payoffAmount, - last_scrape: new Date().toISOString(), - })}::jsonb, - updated_at = NOW() - WHERE payee ILIKE '%Mr. Cooper%' AND payee ILIKE '%Addison%' - `; - } - - return c.json({ source: 'mr_cooper', result }); -}); - -// ── Cross-Service Status ───────────────────────────────────── - -/** Health check all connected services */ -bridgeRoutes.get('/status', async (c) => { - const services = [ - { name: 'chittyauth', url: c.env.CHITTYAUTH_URL }, - { name: 'chittyledger', url: c.env.CHITTYLEDGER_URL }, - { name: 'chittyfinance', url: c.env.CHITTYFINANCE_URL }, - { name: 'chittycharge', url: c.env.CHITTYCHARGE_URL }, - { name: 'chittyconnect', url: c.env.CHITTYCONNECT_URL }, - { name: 'plaid', url: c.env.PLAID_CLIENT_ID ? `https://${c.env.PLAID_ENV || 'sandbox'}.plaid.com` : undefined }, - { name: 'chittybooks', url: c.env.CHITTYBOOKS_URL }, - { name: 'chittyassets', url: c.env.CHITTYASSETS_URL }, - { name: 'mercury', url: 'https://api.mercury.com' }, - { name: 'chittyscrape', url: c.env.CHITTYSCRAPE_URL }, - ]; - - const results = await Promise.all( - services.map(async (svc) => { - if (!svc.url) return { name: svc.name, status: 'not_configured' }; - try { - const res = await fetch(`${svc.url}/health`, { signal: AbortSignal.timeout(3000) }); - const data = await res.json().catch(() => ({})) as Record; - return { name: svc.name, status: res.ok ? 'ok' : 'error', code: res.status, ...data }; - } catch (err) { - return { name: svc.name, status: 'unreachable', error: String(err) }; - } - }) - ); - - const healthy = results.filter((r) => r.status === 'ok').length; - return c.json({ services: results, healthy, total: services.length }); -}); diff --git a/src/routes/connect.ts b/src/routes/connect.ts new file mode 100644 index 0000000..b1f9914 --- /dev/null +++ b/src/routes/connect.ts @@ -0,0 +1,50 @@ +import { Hono } from 'hono'; +import type { Env } from '../index'; +import type { AuthVariables } from '../middleware/auth'; +import { connectClient } from '../lib/integrations'; + +export const connectRoutes = new Hono<{ Bindings: Env; Variables: AuthVariables }>(); + +connectRoutes.get('/connect/status', async (c) => { + const url = c.env.CHITTYCONNECT_URL; + if (!url) return c.json({ status: 'not_configured' }); + try { + const res = await fetch(`${url}/health`, { signal: AbortSignal.timeout(3000) }); + const data = await res.json().catch(() => ({})) as Record; + return c.json({ status: res.ok ? 'ok' : 'error', code: res.status, ...data }); + } catch (err) { + return c.json({ status: 'unreachable', error: String(err) }); + } +}); + +connectRoutes.post('/connect/discover', async (c) => { + const body = await c.req.json().catch(() => ({})); + const service = (body?.service as string | undefined)?.trim(); + if (!service) return c.json({ error: 'Missing field: service' }, 400); + // Simple per-minute rate limit (KV-configurable). Subject: userId or token hash. + const authHeader = c.req.header('Authorization') || ''; + const token = authHeader.startsWith('Bearer ') ? authHeader.slice(7) : ''; + const userId = c.get('userId') || 'anonymous'; + const subject = userId === 'bridge-service' ? 'svc:bridge-service' : `usr:${userId}`; + const rateRaw = await c.env.COMMAND_KV.get('discover:rate_limit'); + const limit = rateRaw ? Math.max(1, parseInt(rateRaw)) : 60; // default 60/min + async function sha256Hex(input: string): Promise { + const data = new TextEncoder().encode(input); + const hash = await crypto.subtle.digest('SHA-256', data); + return Array.from(new Uint8Array(hash)).map(b => b.toString(16).padStart(2, '0')).join(''); + } + const tokenHash = token ? await sha256Hex(token) : ''; + const now = Math.floor(Date.now() / 1000); + const windowKey = `rate:discover:${tokenHash || subject}:${Math.floor(now / 60)}`; + const existing = await c.env.COMMAND_KV.get(windowKey); + const count = existing ? parseInt(existing) || 0 : 0; + if (count >= limit) { + return c.json({ error: 'Rate limit exceeded' }, 429); + } + await c.env.COMMAND_KV.put(windowKey, String(count + 1), { expirationTtl: 70 }); + const client = connectClient(c.env); + if (!client) return c.json({ error: 'ChittyConnect not configured' }, 503); + const url = await client.discover(service); + if (!url) return c.json({ error: 'Service not found' }, 404); + return c.json({ service, url }); +}); diff --git a/src/routes/context.ts b/src/routes/context.ts new file mode 100644 index 0000000..92b758c --- /dev/null +++ b/src/routes/context.ts @@ -0,0 +1,87 @@ +import { Hono } from 'hono'; +import type { Env } from '../index'; +import { z } from 'zod'; +import { contextUpdateSchema } from '../lib/validators'; + +export const contextRoutes = new Hono<{ Bindings: Env }>(); + +type StoredContext = { + label?: string | null; + persona?: string | null; + tags?: string[]; + updated_at: string; +}; + +function ensureScopes(scopes: unknown, required: string[]): boolean { + if (!Array.isArray(scopes)) return false; + return required.some((r) => (scopes as string[]).includes(r)); +} + +// Get current user's context +contextRoutes.get('/context', async (c) => { + // @ts-expect-error app-level variables + const userId = c.get('userId') as string | undefined; + if (!userId) return c.json({ error: 'Unauthorized' }, 401); + const key = `context:user:${userId}`; + const raw = await c.env.COMMAND_KV.get(key); + const payload: StoredContext | null = raw ? JSON.parse(raw) : null; + return c.json({ userId, ...(payload || { label: null, persona: null, tags: [], updated_at: null }) }); +}); + +// Update current user's context (admin or mcp permitted) +contextRoutes.post('/context', async (c) => { + // @ts-expect-error app-level variables + const userId = c.get('userId') as string | undefined; + // @ts-expect-error app-level variables + const scopes = (c.get('scopes') as string[] | undefined) || []; + if (!userId) return c.json({ error: 'Unauthorized' }, 401); + if (!ensureScopes(scopes, ['admin', 'mcp'])) { + return c.json({ error: 'Forbidden' }, 403); + } + const body = await c.req.json().catch(() => ({})); + const parsed = contextUpdateSchema.safeParse(body); + if (!parsed.success) { + return c.json({ error: 'Invalid payload', issues: parsed.error.issues }, 400); + } + const now = new Date().toISOString(); + const key = `context:user:${userId}`; + const currentRaw = await c.env.COMMAND_KV.get(key); + const current: StoredContext = currentRaw ? JSON.parse(currentRaw) : { updated_at: now }; + const next: StoredContext = { + label: parsed.data.label ?? current.label ?? null, + persona: parsed.data.persona ?? current.persona ?? null, + tags: parsed.data.tags ?? current.tags ?? [], + updated_at: now, + }; + await c.env.COMMAND_KV.put(key, JSON.stringify(next)); + return c.json({ userId, ...next }); +}); + +// Global context (admin only) for shared clients like MCP +contextRoutes.get('/context/global', async (c) => { + const raw = await c.env.COMMAND_KV.get('context:global'); + const payload: StoredContext | null = raw ? JSON.parse(raw) : null; + return c.json({ scope: 'global', ...(payload || { label: null, persona: null, tags: [], updated_at: null }) }); +}); + +contextRoutes.post('/context/global', async (c) => { + // @ts-expect-error app-level variables + const scopes = (c.get('scopes') as string[] | undefined) || []; + if (!ensureScopes(scopes, ['admin'])) return c.json({ error: 'Forbidden' }, 403); + const body = await c.req.json().catch(() => ({})); + const parsed = contextUpdateSchema.safeParse(body); + if (!parsed.success) { + return c.json({ error: 'Invalid payload', issues: parsed.error.issues }, 400); + } + const now = new Date().toISOString(); + const currentRaw = await c.env.COMMAND_KV.get('context:global'); + const current: StoredContext = currentRaw ? JSON.parse(currentRaw) : { updated_at: now }; + const next: StoredContext = { + label: parsed.data.label ?? current.label ?? null, + persona: parsed.data.persona ?? current.persona ?? null, + tags: parsed.data.tags ?? current.tags ?? [], + updated_at: now, + }; + await c.env.COMMAND_KV.put('context:global', JSON.stringify(next)); + return c.json({ scope: 'global', ...next }); +}); diff --git a/src/routes/ledger.ts b/src/routes/ledger.ts new file mode 100644 index 0000000..80e6fe9 --- /dev/null +++ b/src/routes/ledger.ts @@ -0,0 +1,31 @@ +import { Hono } from 'hono'; +import type { Env } from '../index'; +import { ledgerClient } from '../lib/integrations'; + +export const ledgerRoutes = new Hono<{ Bindings: Env }>(); + +// GET /api/v1/ledger/evidence?case_id=... +ledgerRoutes.get('/ledger/evidence', async (c) => { + const caseId = c.req.query('case_id'); + if (!caseId) return c.json({ error: 'Missing query param: case_id' }, 400); + const ledger = ledgerClient(c.env); + if (!ledger) return c.json({ error: 'ChittyLedger not configured' }, 503); + const items = await ledger.getEvidenceByCase(caseId); + return c.json({ case_id: caseId, evidence: items }); +}); + +// POST /api/v1/ledger/record-custody { evidence_id, action, notes? } +ledgerRoutes.post('/ledger/record-custody', async (c) => { + const body = await c.req.json().catch(() => ({})); + const evidenceId = String((body?.evidence_id ?? '')).trim(); + const action = String((body?.action ?? '')).trim(); + const notes = (body?.notes as string | undefined) || undefined; + if (!evidenceId || !action) return c.json({ error: 'Missing fields: evidence_id, action' }, 400); + // @ts-expect-error app-level vars + const userId = (c.get('userId') as string | undefined) || 'api-client'; + const ledger = ledgerClient(c.env); + if (!ledger) return c.json({ error: 'ChittyLedger not configured' }, 503); + const result = await ledger.addCustodyEntry({ evidenceId, action, performedBy: userId, notes }); + return c.json({ ok: !!result, result }); +}); + diff --git a/src/routes/mcp.ts b/src/routes/mcp.ts index 06755c0..52cf77d 100644 --- a/src/routes/mcp.ts +++ b/src/routes/mcp.ts @@ -1,5 +1,6 @@ import { Hono } from 'hono'; import type { Env } from '../index'; +import type { AuthVariables } from '../middleware/auth'; import { getDb, typedRows } from '../lib/db'; import type { NeonQueryFunction } from '@neondatabase/serverless'; @@ -7,10 +8,10 @@ import type { NeonQueryFunction } from '@neondatabase/serverless'; * MCP (Model Context Protocol) server for ChittyCommand. * * Implements JSON-RPC 2.0 over HTTP (Streamable HTTP transport). - * Provides 6 tools for querying financial state from Claude Code sessions. + * Provides 28 tools across 8 domains for Claude Code sessions. */ -export const mcpRoutes = new Hono<{ Bindings: Env }>(); +export const mcpRoutes = new Hono<{ Bindings: Env; Variables: AuthVariables }>(); const SERVER_INFO = { name: 'chittycommand-mcp', @@ -18,6 +19,66 @@ const SERVER_INFO = { }; const TOOLS = [ + { + name: 'get_canon_info', + description: 'Return canonical service metadata (name, version, environment, registry info).', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'get_registry_status', + description: 'Return ChittyRegister status including last beacon timestamp and status.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'get_schema_refs', + description: 'Lightweight schema references: endpoints and db_tables.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'whoami', + description: 'Identify the current MCP client identity and environment.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'get_context_summary', + description: 'Return active context/persona if available (server-side).', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'ledger_stats', + description: 'Summarize ledger linkage and service health.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'ledger_get_evidence', + description: 'List evidence for a given case_id from ChittyLedger.', + inputSchema: { type: 'object' as const, properties: { case_id: { type: 'string', description: 'Ledger case ID' } }, required: ['case_id'] }, + }, + { + name: 'ledger_record_custody', + description: 'Record a custody entry for an evidence_id.', + inputSchema: { type: 'object' as const, properties: { evidence_id: { type: 'string' }, action: { type: 'string' }, notes: { type: 'string' } }, required: ['evidence_id','action'] }, + }, + { + name: 'ledger_facts', + description: 'List case facts from ChittyLedger if supported.', + inputSchema: { type: 'object' as const, properties: { case_id: { type: 'string' } }, required: ['case_id'] }, + }, + { + name: 'ledger_contradictions', + description: 'List case contradictions from ChittyLedger if supported.', + inputSchema: { type: 'object' as const, properties: { case_id: { type: 'string' } }, required: ['case_id'] }, + }, + { + name: 'ledger_create_case_for_dispute', + description: 'Create/link a Ledger case for a dispute and store ledger_case_id.', + inputSchema: { type: 'object' as const, properties: { dispute_id: { type: 'string' } }, required: ['dispute_id'] }, + }, + { + name: 'ledger_link_case_for_dispute', + description: 'Link an existing Ledger case to a dispute by storing ledger_case_id.', + inputSchema: { type: 'object' as const, properties: { dispute_id: { type: 'string' }, case_id: { type: 'string' } }, required: ['dispute_id','case_id'] }, + }, { name: 'query_obligations', description: 'List financial obligations (bills, payments, taxes). Filter by status, category, or urgency.', @@ -45,7 +106,7 @@ const TOOLS = [ }, { name: 'query_disputes', - description: 'List active disputes (Xfinity, HOA, Fox Rental, etc). Shows status, amounts, next actions.', + description: 'List active disputes. Filter by status. Shows counterparty, amounts, priority, and next actions.', inputSchema: { type: 'object' as const, properties: { @@ -76,13 +137,68 @@ const TOOLS = [ description: 'Get 90-day cash flow projections with confidence scores. Shows when money gets tight.', inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, }, + { + name: 'connect_discover', + description: 'Resolve a service URL via ChittyConnect discovery.', + inputSchema: { type: 'object' as const, properties: { service: { type: 'string', description: 'Service name to discover' } }, required: ['service'] }, + }, + { + name: 'chittychat_list_projects', + description: 'List projects from ChittyChat data API (if configured).', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'chittychat_list_tasks', + description: 'List tasks; optionally filter by project_id.', + inputSchema: { type: 'object' as const, properties: { project_id: { type: 'string', description: 'Project ID to filter' } }, required: [] as string[] }, + }, + { + name: 'chittychat_get_task', + description: 'Get a single task by ID.', + inputSchema: { type: 'object' as const, properties: { id: { type: 'string' } }, required: ['id'] }, + }, + { + name: 'schema_list_types', + description: 'List available schema types from ChittySchema.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, + { + name: 'schema_get', + description: 'Get a schema by type from ChittySchema.', + inputSchema: { type: 'object' as const, properties: { type: { type: 'string' } }, required: ['type'] }, + }, + { + name: 'schema_validate', + description: 'Validate data against a schema type via ChittySchema.', + inputSchema: { type: 'object' as const, properties: { type: { type: 'string' }, data: { type: 'object' } }, required: ['type','data'] }, + }, + { + name: 'schema_drift', + description: 'Detect schema drift between service and canonical schema.', + inputSchema: { type: 'object' as const, properties: { service: { type: 'string' }, version: { type: 'string' }, schema: { type: 'object' } }, required: ['service','schema'] }, + }, + { + name: 'cert_verify', + description: 'Verify a certificate via ChittyCertify.', + inputSchema: { type: 'object' as const, properties: { certificate_id: { type: 'string' } }, required: ['certificate_id'] }, + }, + { + name: 'register_requirements', + description: 'Fetch ChittyRegister compliance requirements schema.', + inputSchema: { type: 'object' as const, properties: {}, required: [] as string[] }, + }, ]; // MCP endpoint — handles JSON-RPC 2.0 requests mcpRoutes.post('/', async (c) => { - const body = await c.req.json() as { jsonrpc: string; id?: string | number; method: string; params?: Record }; + let body: { jsonrpc: string; id?: string | number | null; method?: string; params?: Record }; + try { + body = await c.req.json(); + } catch { + return c.json({ jsonrpc: '2.0', id: null, error: { code: -32700, message: 'Parse error' } }, 400); + } - if (body.jsonrpc !== '2.0') { + if (body.jsonrpc !== '2.0' || typeof body.method !== 'string') { return c.json({ jsonrpc: '2.0', id: body.id ?? null, error: { code: -32600, message: 'Invalid Request: must be JSON-RPC 2.0' } }); } @@ -112,14 +228,12 @@ mcpRoutes.post('/', async (c) => { const args = (params?.arguments || {}) as Record; try { const sql = getDb(c.env); - const result = await executeTool(sql, toolName, args); - return c.json({ - jsonrpc: '2.0', - id, - result: { - content: [{ type: 'text', text: typeof result === 'string' ? result : JSON.stringify(result, null, 2) }], - }, - }); + const userId = c.get('userId'); + const scopes = c.get('scopes'); + const result = await executeTool(c.env, sql, toolName, args, { userId, scopes }); + const content = [{ type: 'text' as const, text: typeof result === 'string' ? result : JSON.stringify(result, null, 2) }]; + + return c.json({ jsonrpc: '2.0', id, result: { content } }); } catch (err: unknown) { const message = err instanceof Error ? err.message : 'Unknown error'; return c.json({ @@ -157,8 +271,166 @@ interface ProjectionRow { confidence: string; } -async function executeTool(sql: NeonQueryFunction, toolName: string, args: Record): Promise { +interface CallerContext { userId: string; scopes: string[] } + +async function executeTool(env: Env, sql: NeonQueryFunction, toolName: string, args: Record, caller: CallerContext): Promise { switch (toolName) { + case 'get_canon_info': { + const name = 'ChittyCommand'; + const version = '0.1.0'; + const environment = env.ENVIRONMENT || 'production'; + const registered_with = env.CHITTYREGISTER_URL || null; + const service_id = await env.COMMAND_KV.get('register:service_id'); + const last_beacon_at = await env.COMMAND_KV.get('register:last_beacon_at'); + const last_status = await env.COMMAND_KV.get('register:last_beacon_status'); + return { name, version, environment, canonicalUri: 'chittycanon://core/services/chittycommand', registered_with, registration: { service_id, last_beacon_at, last_status } }; + } + + case 'get_registry_status': { + const last_beacon_at = await env.COMMAND_KV.get('register:last_beacon_at'); + const last_status = await env.COMMAND_KV.get('register:last_beacon_status'); + return { last_beacon_at, last_status }; + } + + case 'get_schema_refs': { + return { + schemaVersion: '0.1.0', + endpoints: ['/api/dashboard', '/api/accounts', '/api/obligations', '/api/disputes', '/api/recommendations', '/api/cashflow'], + db_tables: ['cc_accounts','cc_obligations','cc_transactions','cc_recommendations','cc_cashflow_projections','cc_disputes','cc_dispute_correspondence','cc_legal_deadlines','cc_documents','cc_actions_log','cc_sync_log','cc_properties'], + }; + } + + case 'whoami': { + return { client: caller.userId, scopes: caller.scopes }; + } + + case 'get_context_summary': { + // Prefer a dedicated context for the caller, then global + let raw = await env.COMMAND_KV.get(`context:user:${caller.userId}`); + if (!raw) raw = await env.COMMAND_KV.get('context:global'); + if (!raw) return { label: null, persona: null, tags: [], updated_at: null }; + let payload: { label?: string | null; persona?: string | null; tags?: string[]; updated_at?: string }; + try { + payload = JSON.parse(raw); + } catch { + return { label: null, persona: null, tags: [], updated_at: null, parse_error: true }; + } + return { label: payload.label ?? null, persona: payload.persona ?? null, tags: payload.tags ?? [], updated_at: payload.updated_at ?? null }; + } + case 'ledger_stats': { + let documentsLinked = 0; + let disputesLinked = 0; + try { + const [docsRow] = await sql`SELECT COUNT(*) AS c FROM cc_documents WHERE metadata ? 'ledger_evidence_id'`; + const [disputesRow] = await sql`SELECT COUNT(*) AS c FROM cc_disputes WHERE metadata ? 'ledger_case_id'`; + documentsLinked = parseInt(docsRow?.c ?? '0'); + disputesLinked = parseInt(disputesRow?.c ?? '0'); + } catch { + // Schema may not support metadata jsonb queries yet + } + let health: { status: string; code?: number } = { status: 'not_configured' }; + if (env.CHITTYLEDGER_URL) { + try { + const res = await fetch(`${env.CHITTYLEDGER_URL}/health`, { signal: AbortSignal.timeout(3000) }); + health = { status: res.ok ? 'ok' : 'error', code: res.status }; + } catch { + health = { status: 'unreachable' }; + } + } + return { + documents_linked: documentsLinked, + disputes_linked: disputesLinked, + service: health, + }; + } + + case 'ledger_get_evidence': { + const caseId = String(args.case_id || '').trim(); + if (!caseId) throw new Error('Missing argument: case_id'); + if (!env.CHITTYLEDGER_URL) return { error: 'ChittyLedger not configured' }; + try { + const qs = new URLSearchParams({ caseId }).toString(); + const res = await fetch(`${env.CHITTYLEDGER_URL}/api/evidence?${qs}`, { headers: { 'X-Source-Service': 'chittycommand' } }); + if (!res.ok) return { error: 'Failed to fetch evidence', code: res.status }; + const items = await res.json(); + return { case_id: caseId, evidence: items }; + } catch (err) { + return { error: String(err) }; + } + } + + case 'ledger_record_custody': { + const evidenceId = String(args.evidence_id || '').trim(); + const action = String(args.action || '').trim(); + const notes = args.notes ? String(args.notes) : undefined; + if (!evidenceId || !action) throw new Error('Missing arguments: evidence_id, action'); + if (!env.CHITTYLEDGER_URL) return { error: 'ChittyLedger not configured' }; + try { + const payload = { evidenceId, action, performedBy: 'mcp-client', ...(notes ? { notes } : {}) }; + const res = await fetch(`${env.CHITTYLEDGER_URL}/api/evidence/${encodeURIComponent(evidenceId)}/custody`, { + method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, body: JSON.stringify(payload) + }); + if (!res.ok) return { error: 'Failed to record custody', code: res.status }; + const data = await res.json(); + return { ok: true, result: data }; + } catch (err) { + return { error: String(err) }; + } + } + + case 'ledger_facts': { + const caseId = String(args.case_id || '').trim(); + if (!caseId) throw new Error('Missing argument: case_id'); + if (!env.CHITTYLEDGER_URL) return { facts: [] }; + try { + const res = await fetch(`${env.CHITTYLEDGER_URL}/api/cases/${encodeURIComponent(caseId)}/facts`, { headers: { 'X-Source-Service': 'chittycommand' } }); + if (!res.ok) return { facts: [] }; + return { case_id: caseId, facts: await res.json() }; + } catch { return { facts: [] }; } + } + + case 'ledger_contradictions': { + const caseId = String(args.case_id || '').trim(); + if (!caseId) throw new Error('Missing argument: case_id'); + if (!env.CHITTYLEDGER_URL) return { contradictions: [] }; + try { + const res = await fetch(`${env.CHITTYLEDGER_URL}/api/cases/${encodeURIComponent(caseId)}/contradictions`, { headers: { 'X-Source-Service': 'chittycommand' } }); + if (!res.ok) return { contradictions: [] }; + return { case_id: caseId, contradictions: await res.json() }; + } catch { return { contradictions: [] }; } + } + + case 'ledger_create_case_for_dispute': { + const disputeId = String(args.dispute_id || '').trim(); + if (!disputeId) throw new Error('Missing argument: dispute_id'); + if (!env.CHITTYLEDGER_URL) return { error: 'ChittyLedger not configured' }; + const rows = await sql`SELECT id, title, dispute_type, description, metadata FROM cc_disputes WHERE id = ${disputeId}`; + if (rows.length === 0) throw new Error('Dispute not found'); + const d = rows[0] as any; + const metadata = (d.metadata as any) || {}; + if (metadata.ledger_case_id) return { dispute_id: disputeId, case_id: metadata.ledger_case_id, linked: true }; + try { + const payload = { caseNumber: `CC-DISPUTE-${String(d.id).slice(0,8)}`, title: String(d.title), caseType: 'CIVIL', description: d.description || undefined }; + const res = await fetch(`${env.CHITTYLEDGER_URL}/api/cases`, { + method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, body: JSON.stringify(payload) + }); + if (!res.ok) return { error: 'Failed to create case', code: res.status }; + const data = await res.json() as { id: string }; + await sql`UPDATE cc_disputes SET metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ ledger_case_id: data.id })}::jsonb WHERE id = ${disputeId}`; + return { dispute_id: disputeId, case_id: data.id, linked: true }; + } catch (err) { + return { error: String(err) }; + } + } + + case 'ledger_link_case_for_dispute': { + const disputeId = String(args.dispute_id || '').trim(); + const caseId = String(args.case_id || '').trim(); + if (!disputeId || !caseId) throw new Error('Missing arguments: dispute_id, case_id'); + const updated = await sql`UPDATE cc_disputes SET metadata = COALESCE(metadata, '{}'::jsonb) || ${JSON.stringify({ ledger_case_id: caseId })}::jsonb WHERE id = ${disputeId} RETURNING id`; + if (updated.length === 0) throw new Error(`Dispute not found: ${disputeId}`); + return { dispute_id: disputeId, case_id: caseId, linked: true }; + } case 'query_obligations': { const status = args.status || null; const category = args.category || null; @@ -281,6 +553,142 @@ async function executeTool(sql: NeonQueryFunction, toolName: strin }; } + case 'connect_discover': { + const service = String(args.service || '').trim(); + if (!service) throw new Error('Missing argument: service'); + const baseUrl = env.CHITTYCONNECT_URL; + if (!baseUrl) return { error: 'ChittyConnect not configured' }; + const key = `connect:discover:${service}`; + try { + const cached = await env.COMMAND_KV.get(key); + if (cached) { + try { const obj = JSON.parse(cached) as { url?: string }; if (obj?.url) return { service, url: obj.url, cached: true }; } catch {} + } + } catch {} + try { + const res = await fetch(`${baseUrl}/api/discover/${encodeURIComponent(service)}`, { + headers: { 'X-Source-Service': 'chittycommand' }, + signal: AbortSignal.timeout(3000), + }); + if (!res.ok) return { error: `Service not found`, code: res.status }; + const data = await res.json() as { url: string }; + try { await env.COMMAND_KV.put(key, JSON.stringify({ url: data.url }), { expirationTtl: 300 }); } catch {} + return { service, url: data.url }; + } catch (err) { + return { error: String(err) }; + } + } + + case 'chittychat_list_projects': { + const base = env.CHITTYCHAT_DATA_API; + if (!base) return { error: 'ChittyChat data API not configured' }; + try { + const res = await fetch(`${base}/projects`, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to list projects', code: res.status }; + const data = await res.json(); + return { projects: data }; + } catch (err) { return { error: String(err) }; } + } + + case 'chittychat_list_tasks': { + const base = env.CHITTYCHAT_DATA_API; + if (!base) return { error: 'ChittyChat data API not configured' }; + const pid = args.project_id ? String(args.project_id) : ''; + try { + const url = pid ? `${base}/projects/${encodeURIComponent(pid)}/tasks` : `${base}/tasks`; + const res = await fetch(url, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to list tasks', code: res.status }; + const data = await res.json(); + return { tasks: data }; + } catch (err) { return { error: String(err) }; } + } + + case 'chittychat_get_task': { + const base = env.CHITTYCHAT_DATA_API; + if (!base) return { error: 'ChittyChat data API not configured' }; + const id = String(args.id || '').trim(); + if (!id) throw new Error('Missing argument: id'); + try { + const res = await fetch(`${base}/tasks/${encodeURIComponent(id)}`, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to fetch task', code: res.status }; + const data = await res.json(); + return { task: data }; + } catch (err) { return { error: String(err) }; } + } + + case 'schema_list_types': { + const base = env.CHITTYSCHEMA_URL || 'https://schema.chitty.cc'; + try { + const res = await fetch(`${base}/api/v1/schemas`, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to list schema types', code: res.status }; + return { types: await res.json() }; + } catch (err) { return { error: String(err) }; } + } + + case 'schema_get': { + const base = env.CHITTYSCHEMA_URL || 'https://schema.chitty.cc'; + const t = String(args.type || '').trim(); + if (!t) throw new Error('Missing argument: type'); + try { + const res = await fetch(`${base}/api/v1/schemas/${encodeURIComponent(t)}`, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to get schema', code: res.status }; + return { type: t, schema: await res.json() }; + } catch (err) { return { error: String(err) }; } + } + + case 'schema_validate': { + const base = env.CHITTYSCHEMA_URL || 'https://schema.chitty.cc'; + const t = String(args.type || '').trim(); + const data = (args.data ?? {}) as Record; + if (!t) throw new Error('Missing argument: type'); + try { + const res = await fetch(`${base}/api/v1/validate`, { + method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, + body: JSON.stringify({ type: t, data }), signal: AbortSignal.timeout(5000) + }); + const out = await res.json().catch(() => ({})); + return res.ok ? { valid: true, result: out } : { valid: false, result: out, code: res.status }; + } catch (err) { return { error: String(err) }; } + } + + case 'schema_drift': { + const base = env.CHITTYSCHEMA_URL || 'https://schema.chitty.cc'; + const service = String(args.service || 'chittycommand'); + const version = String(args.version || '0.1.0'); + const schema = (args.schema ?? {}) as Record; + try { + const res = await fetch(`${base}/api/v1/drift`, { + method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, + body: JSON.stringify({ service, version, schema }), signal: AbortSignal.timeout(5000) + }); + const out = await res.json().catch(() => ({})); + return res.ok ? { drift: out } : { error: 'Drift check failed', code: res.status, result: out }; + } catch (err) { return { error: String(err) }; } + } + + case 'cert_verify': { + const base = env.CHITTYCERT_URL || 'https://cert.chitty.cc'; + const certificate_id = String(args.certificate_id || '').trim(); + if (!certificate_id) throw new Error('Missing argument: certificate_id'); + try { + const res = await fetch(`${base}/api/v1/verify`, { + method: 'POST', headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, + body: JSON.stringify({ certificate_id }), signal: AbortSignal.timeout(5000) + }); + const out = await res.json().catch(() => ({})); + return res.ok ? { valid: true, certificate: out } : { valid: false, result: out, code: res.status }; + } catch (err) { return { error: String(err) }; } + } + + case 'register_requirements': { + const base = env.CHITTYREGISTER_URL || 'https://register.chitty.cc'; + try { + const res = await fetch(`${base}/api/v1/requirements`, { headers: { 'X-Source-Service': 'chittycommand' }, signal: AbortSignal.timeout(5000) }); + if (!res.ok) return { error: 'Failed to fetch requirements', code: res.status }; + return { requirements: await res.json() }; + } catch (err) { return { error: String(err) }; } + } + default: throw new Error(`Unknown tool: ${toolName}`); } diff --git a/src/routes/meta.ts b/src/routes/meta.ts new file mode 100644 index 0000000..d335eb0 --- /dev/null +++ b/src/routes/meta.ts @@ -0,0 +1,126 @@ +import { Hono } from 'hono'; +import type { ContentfulStatusCode } from 'hono/utils/http-status'; +import type { Env } from '../index'; +import type { AuthVariables } from '../middleware/auth'; + +export const metaPublicRoutes = new Hono<{ Bindings: Env }>(); +export const metaRoutes = new Hono<{ Bindings: Env; Variables: AuthVariables }>(); + +// Public: Canon info and lightweight schema refs +metaPublicRoutes.get('/canon', async (c) => { + const env = c.env; + const canonicalUri = 'chittycanon://core/services/chittycommand'; + const serviceId = await env.COMMAND_KV.get('register:service_id'); + const lastBeaconAt = await env.COMMAND_KV.get('register:last_beacon_at'); + const lastBeaconStatus = await env.COMMAND_KV.get('register:last_beacon_status'); + return c.json({ + name: 'ChittyCommand', + version: '0.1.0', + environment: env.ENVIRONMENT || 'production', + canonicalUri, + namespace: 'chittycanon://core/services', + tier: 5, + registered_with: env.CHITTYREGISTER_URL || null, + registration: { service_id: serviceId || null, last_beacon_at: lastBeaconAt || null, last_status: lastBeaconStatus || null }, + }); +}); + +metaPublicRoutes.get('/schema', (c) => { + // Lightweight schema refs + canonical links (ChittySchema) + return c.json({ + schemaVersion: '0.1.0', + generatedAt: new Date().toISOString(), + endpoints: [ + '/api/dashboard', + '/api/accounts', + '/api/obligations', + '/api/disputes', + '/api/recommendations', + '/api/cashflow', + ], + db_tables: [ + 'cc_accounts', + 'cc_obligations', + 'cc_transactions', + 'cc_recommendations', + 'cc_cashflow_projections', + 'cc_disputes', + 'cc_dispute_correspondence', + 'cc_legal_deadlines', + 'cc_documents', + 'cc_actions_log', + 'cc_sync_log', + 'cc_properties', + ], + canonicalRefs: { + chittyschema_base: 'https://schema.chitty.cc/api/v1', + list_schemas: 'https://schema.chitty.cc/api/v1/schemas', + get_schema: 'https://schema.chitty.cc/api/v1/schemas/{type}', + validate: 'https://schema.chitty.cc/api/v1/validate', + drift: 'https://schema.chitty.cc/api/v1/drift', + catalog_repo: 'https://github.com/chittyfoundation/chittyschema', + }, + notes: 'Zod schemas are used server-side; canonical JSON Schemas are governed by chittyfoundation/chittyschema.', + }); +}); + +metaPublicRoutes.get('/beacon', async (c) => { + const regAt = await c.env.COMMAND_KV.get('register:last_beacon_at'); + const regSt = await c.env.COMMAND_KV.get('register:last_beacon_status'); + const conAt = await c.env.COMMAND_KV.get('connect:last_beacon_at'); + const conSt = await c.env.COMMAND_KV.get('connect:last_beacon_status'); + return c.json({ + register: { last_beacon_at: regAt || null, last_status: regSt || null }, + connect: { last_beacon_at: conAt || null, last_status: conSt || null }, + }); +}); + +// Certificate verification passthrough (public) +metaPublicRoutes.post('/cert/verify', async (c) => { + try { + const body = await c.req.json().catch(() => ({})); + const certificateId = String(body?.certificate_id || '').trim(); + if (!certificateId) return c.json({ error: 'Missing field: certificate_id' }, 400); + const base = c.env.CHITTYCERT_URL || 'https://cert.chitty.cc'; + const res = await fetch(`${base}/api/v1/verify`, { + method: 'POST', + headers: { 'Content-Type': 'application/json', 'X-Source-Service': 'chittycommand' }, + body: JSON.stringify({ certificate_id: certificateId }), + }); + const out = await res.json().catch(() => ({})); + if (!res.ok) return c.json({ valid: false, result: out, code: res.status }, res.status as ContentfulStatusCode); + return c.json(out); + } catch (err) { + console.error('[cert/verify] upstream request failed:', err); + return c.json({ error: 'Certificate verification failed' }, 500); + } +}); + +// Certificate fetch (public) +metaPublicRoutes.get('/cert/:id', async (c) => { + const id = c.req.param('id'); + if (!id) return c.json({ error: 'Missing certificate id' }, 400); + try { + const base = c.env.CHITTYCERT_URL || 'https://cert.chitty.cc'; + const res = await fetch(`${base}/api/v1/certificate/${encodeURIComponent(id)}`); + const out = await res.json().catch(() => ({})); + if (!res.ok) return c.json({ error: 'Not found', code: res.status, result: out }, res.status as ContentfulStatusCode); + return c.json(out); + } catch (err) { + console.error('[cert/:id] upstream request failed:', err); + return c.json({ error: 'Certificate fetch failed' }, 500); + } +}); + +// Authenticated: identity resolution +metaRoutes.get('/whoami', (c) => { + const userId = c.get('userId') as string | undefined; + const scopes = (c.get('scopes') as string[] | undefined) || []; + if (!userId) return c.json({ error: 'Unauthorized' }, 401); + return c.json({ + userId, + subjectUri: `chittyid://users/${userId}`, + scopes, + environment: c.env.ENVIRONMENT || 'production', + }); +}); diff --git a/src/routes/token-management.ts b/src/routes/token-management.ts new file mode 100644 index 0000000..c857dc0 --- /dev/null +++ b/src/routes/token-management.ts @@ -0,0 +1,174 @@ +import { Hono } from 'hono'; +import type { Env } from '../index'; + +export const tokenManagementRoutes = new Hono<{ Bindings: Env }>(); + +const LEGACY_TOKEN_KEYS = [ + 'mcp:service_token', + 'bridge:service_token', + 'scrape:service_token', +] as const; + +type LegacyTokenKey = (typeof LEGACY_TOKEN_KEYS)[number]; + +function parseBearerToken(header: string | undefined): string | null { + if (!header) return null; + if (!header.startsWith('Bearer ')) return null; + const token = header.slice(7).trim(); + return token || null; +} + +function isAdmin(scopes: unknown): boolean { + if (!Array.isArray(scopes)) return false; + const s = scopes.filter((v): v is string => typeof v === 'string'); + return s.includes('admin') || s.includes('admin:*') || s.includes('chittycommand:admin'); +} + +function createRandomHex(bytes = 32): string { + const arr = crypto.getRandomValues(new Uint8Array(bytes)); + return Array.from(arr).map((b) => b.toString(16).padStart(2, '0')).join(''); +} + +async function parseUpstreamBody(res: Response): Promise { + const text = await res.text(); + if (!text) return {}; + try { + return JSON.parse(text) as unknown; + } catch { + return { raw: text }; + } +} + +function getAuthBase(env: Env): string { + return env.CHITTYAUTH_URL || 'https://auth.chitty.cc'; +} + +function ensureAdminScope(c: { get: (name: string) => unknown }) { + const scopes = (c.get('scopes') as string[] | undefined) || []; + return isAdmin(scopes); +} + +tokenManagementRoutes.get('/tokens/overview', async (c) => { + if (!ensureAdminScope(c)) return c.json({ error: 'Forbidden' }, 403); + + const authBase = getAuthBase(c.env); + const legacy = await Promise.all( + LEGACY_TOKEN_KEYS.map(async (key) => { + const value = await c.env.COMMAND_KV.get(key); + return { + key, + configured: Boolean(value), + preview: value ? `${value.slice(0, 6)}...${value.slice(-4)}` : null, + }; + }), + ); + + let authStatus: 'ok' | 'error' = 'error'; + let authCode: number | null = null; + try { + const res = await fetch(`${authBase}/health`, { signal: AbortSignal.timeout(2500) }); + authCode = res.status; + authStatus = res.ok ? 'ok' : 'error'; + } catch { + authStatus = 'error'; + } + + return c.json({ + chittyauth: { + base_url: authBase, + status: authStatus, + health_code: authCode, + }, + legacy, + }); +}); + +tokenManagementRoutes.post('/tokens/legacy/rotate', async (c) => { + if (!ensureAdminScope(c)) return c.json({ error: 'Forbidden' }, 403); + + const body = await c.req.json().catch(() => ({})); + const key = String((body as { key?: string })?.key || '') as LegacyTokenKey; + if (!LEGACY_TOKEN_KEYS.includes(key)) { + return c.json({ error: 'Invalid token key', allowed: LEGACY_TOKEN_KEYS }, 400); + } + + const token = createRandomHex(32); + await c.env.COMMAND_KV.put(key, token); + + return c.json({ + key, + token, + rotated_at: new Date().toISOString(), + }); +}); + +tokenManagementRoutes.post('/tokens/chittyauth/provision', async (c) => { + if (!ensureAdminScope(c)) return c.json({ error: 'Forbidden' }, 403); + + const body = await c.req.json().catch(() => ({})) as { admin_token?: string; payload?: Record }; + const adminToken = (body.admin_token || '').trim() || parseBearerToken(c.req.header('Authorization')) || ''; + if (!adminToken) return c.json({ error: 'Missing admin token' }, 400); + + const payload = (body.payload && typeof body.payload === 'object') ? body.payload : {}; + const authBase = getAuthBase(c.env); + const res = await fetch(`${authBase}/v1/tokens/provision`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': `Bearer ${adminToken}`, + 'X-Source-Service': 'chittycommand', + }, + body: JSON.stringify(payload), + signal: AbortSignal.timeout(5000), + }); + + const result = await parseUpstreamBody(res); + return c.json({ ok: res.ok, status: res.status, result }); +}); + +tokenManagementRoutes.post('/tokens/chittyauth/validate', async (c) => { + if (!ensureAdminScope(c)) return c.json({ error: 'Forbidden' }, 403); + + const body = await c.req.json().catch(() => ({})) as { token?: string }; + const token = (body.token || '').trim(); + if (!token) return c.json({ error: 'Missing token' }, 400); + + const authBase = getAuthBase(c.env); + const res = await fetch(`${authBase}/v1/tokens/validate`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': `Bearer ${token}`, + 'X-Source-Service': 'chittycommand', + }, + body: JSON.stringify({ token }), + signal: AbortSignal.timeout(5000), + }); + + const result = await parseUpstreamBody(res); + return c.json({ ok: res.ok, status: res.status, result }); +}); + +tokenManagementRoutes.post('/tokens/chittyauth/revoke', async (c) => { + if (!ensureAdminScope(c)) return c.json({ error: 'Forbidden' }, 403); + + const body = await c.req.json().catch(() => ({})) as { admin_token?: string; payload?: Record }; + const adminToken = (body.admin_token || '').trim() || parseBearerToken(c.req.header('Authorization')) || ''; + if (!adminToken) return c.json({ error: 'Missing admin token' }, 400); + + const payload = (body.payload && typeof body.payload === 'object') ? body.payload : {}; + const authBase = getAuthBase(c.env); + const res = await fetch(`${authBase}/v1/tokens/revoke`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + 'Authorization': `Bearer ${adminToken}`, + 'X-Source-Service': 'chittycommand', + }, + body: JSON.stringify(payload), + signal: AbortSignal.timeout(5000), + }); + + const result = await parseUpstreamBody(res); + return c.json({ ok: res.ok, status: res.status, result }); +}); diff --git a/templates/governance-baseline/.chittyconnect.yml b/templates/governance-baseline/.chittyconnect.yml new file mode 100644 index 0000000..75c24aa --- /dev/null +++ b/templates/governance-baseline/.chittyconnect.yml @@ -0,0 +1,21 @@ +onboarding: + provisions: + chitty_id: required + service_token: required + certificate: required + trust_chain: required + context_consciousness: + enabled: true + session_binding: required + chittydna: + enabled: true + identity_lineage: required + memorycloude: + enabled: true + memory_policy: required + synthetic_entity: + type: person + classification: synthetic + authority_scope: least_privilege + access_scope: explicit_scopes_only + actor_binding: required diff --git a/templates/governance-baseline/.github/ISSUE_TEMPLATE/config.yml b/templates/governance-baseline/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..8f2907b --- /dev/null +++ b/templates/governance-baseline/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: false +contact_links: + - name: Governance triage + url: https://github.com/chittyos/chittycommand/issues/new?template=governance-exception.yml + about: Use the governance exception template for bypass requests. diff --git a/templates/governance-baseline/.github/ISSUE_TEMPLATE/governance-exception.yml b/templates/governance-baseline/.github/ISSUE_TEMPLATE/governance-exception.yml new file mode 100644 index 0000000..a90cac6 --- /dev/null +++ b/templates/governance-baseline/.github/ISSUE_TEMPLATE/governance-exception.yml @@ -0,0 +1,39 @@ +name: Governance Exception Request +description: Request a temporary exception to governance automation controls. +title: "[Governance Exception] " +labels: + - governance + - exception-request +body: + - type: input + id: repository + attributes: + label: Repository + description: Repository impacted by this exception. + placeholder: CHITTYOS/example-repo + validations: + required: true + - type: textarea + id: scope + attributes: + label: Scope and duration + description: Exact control to bypass, start date, and expiry date. + placeholder: "Bypass required status checks for release hotfix until 2026-03-10" + validations: + required: true + - type: textarea + id: risk + attributes: + label: Risk and mitigation + description: Risks introduced and compensating controls. + validations: + required: true + - type: checkboxes + id: attestations + attributes: + label: Attestations + options: + - label: I confirm this request is temporary and time-bounded. + required: true + - label: I confirm this request has rollback and remediation steps. + required: true diff --git a/templates/governance-baseline/.github/allowed-workflow-secrets.txt b/templates/governance-baseline/.github/allowed-workflow-secrets.txt new file mode 100644 index 0000000..199a713 --- /dev/null +++ b/templates/governance-baseline/.github/allowed-workflow-secrets.txt @@ -0,0 +1,7 @@ +CHITTYCONNECT_API_KEY +GITHUB_TOKEN +ORG_AUTOMATION_TOKEN +CHITTY_GATEWAY_TOKEN +CHITTY_AGENT_TOKEN +OP_SERVICE_ACCOUNT_TOKEN +CHITTYCONNECT_BROKER_TOKEN diff --git a/templates/governance-baseline/.github/release.yml b/templates/governance-baseline/.github/release.yml new file mode 100644 index 0000000..6dc5584 --- /dev/null +++ b/templates/governance-baseline/.github/release.yml @@ -0,0 +1,17 @@ +changelog: + categories: + - title: "Features" + labels: + - "feature" + - "enhancement" + - title: "Fixes" + labels: + - "bug" + - "fix" + - title: "Maintenance" + labels: + - "chore" + - "dependencies" + exclude: + labels: + - "skip-changelog" diff --git a/templates/governance-baseline/.github/secret-catalog.json b/templates/governance-baseline/.github/secret-catalog.json new file mode 100644 index 0000000..bb7b9c5 --- /dev/null +++ b/templates/governance-baseline/.github/secret-catalog.json @@ -0,0 +1,29 @@ +{ + "vault": "ChittyOS", + "secrets": [ + { + "name": "ORG_AUTOMATION_TOKEN", + "op_ref": "op://ChittyOS/GitHub Automation Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTYCONNECT_BROKER_TOKEN", + "op_ref": "op://ChittyOS/ChittyConnect Broker Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTY_GATEWAY_TOKEN", + "op_ref": "op://ChittyOS/ChittyGateway API Token/token", + "rotation_days": 30, + "owner": "platform-security" + }, + { + "name": "CHITTY_AGENT_TOKEN", + "op_ref": "op://ChittyOS/ChittyAgent Orchestrator Token/token", + "rotation_days": 30, + "owner": "platform-security" + } + ] +} diff --git a/templates/governance-baseline/.github/workflows/adversarial-review.yml b/templates/governance-baseline/.github/workflows/adversarial-review.yml new file mode 100644 index 0000000..721d9e0 --- /dev/null +++ b/templates/governance-baseline/.github/workflows/adversarial-review.yml @@ -0,0 +1,64 @@ +name: Adversarial Review Orchestrator + +on: + pull_request_target: + types: [opened, reopened, synchronize, ready_for_review] + +permissions: + contents: read + pull-requests: write + issues: write + +jobs: + orchestrate: + runs-on: ubuntu-latest + env: + REQUEST_REVIEWERS: ${{ vars.CHITTY_REQUEST_REVIEWERS || 'coderabbitai' }} + REVIEW_TAG_SEQUENCE: ${{ vars.CHITTY_REVIEW_TAG_SEQUENCE || '@coderabbitai review||@copilot review||@codex review||@claude review' }} + steps: + - name: Request Reviewer Agents + uses: actions/github-script@v7 + with: + script: | + const reviewers = (process.env.REQUEST_REVIEWERS || "") + .split(",") + .map((v) => v.trim()) + .filter(Boolean); + const succeeded = []; + const failed = []; + for (const reviewer of reviewers) { + try { + await github.rest.pulls.requestReviewers({ + owner: context.repo.owner, + repo: context.repo.repo, + pull_number: context.payload.pull_request.number, + reviewers: [reviewer] + }); + succeeded.push(reviewer); + } catch (error) { + failed.push(`${reviewer}: ${error.message}`); + } + } + core.info(`Requested reviewers success: ${succeeded.join(", ") || "none"}`); + if (failed.length > 0) { + core.warning(`Reviewer request failures: ${failed.join(" | ")}`); + } + - name: Trigger Bot Review Comments (Sequenced) + uses: actions/github-script@v7 + with: + script: | + const sequence = (process.env.REVIEW_TAG_SEQUENCE || "") + .split("||") + .map((v) => v.trim()) + .filter(Boolean); + const lines = []; + sequence.forEach((tag, index) => { + lines.push(`${index + 1}. ${tag}`); + }); + lines.push("Adversarial review request: evaluate security, policy bypass paths, regression risk, and merge-gating bypass attempts."); + await github.rest.issues.createComment({ + owner: context.repo.owner, + repo: context.repo.repo, + issue_number: context.payload.pull_request.number, + body: lines.join("\n") + }); diff --git a/templates/governance-baseline/.github/workflows/governance-gates.yml b/templates/governance-baseline/.github/workflows/governance-gates.yml new file mode 100644 index 0000000..a5bb376 --- /dev/null +++ b/templates/governance-baseline/.github/workflows/governance-gates.yml @@ -0,0 +1,46 @@ +name: Governance Gates + +on: + pull_request: + push: + branches: [ main ] + +jobs: + gates: + uses: ./.github/workflows/reusable-governance-gates.yml + secrets: inherit + + notify-org-control-loop: + needs: gates + runs-on: ubuntu-latest + permissions: + contents: read + env: + CONTROL_REPO: ${{ vars.CHITTY_GOVERNANCE_CONTROL_REPO || 'CHITTYOS/chittycommand' }} + DISPATCH_TOKEN: ${{ secrets.CHITTY_GOVERNANCE_DISPATCH_TOKEN }} + SOURCE_REPO: ${{ github.repository }} + SOURCE_EVENT: ${{ github.event_name }} + SOURCE_REF: ${{ github.ref }} + SOURCE_SHA: ${{ github.sha }} + SOURCE_PR: ${{ github.event.pull_request.number || '' }} + steps: + - name: Dispatch Governance Signal + shell: bash + run: | + set -euo pipefail + if [[ -z "${DISPATCH_TOKEN:-}" ]]; then + echo "CHITTY_GOVERNANCE_DISPATCH_TOKEN not configured; skipping dispatch." + exit 0 + fi + payload="$(jq -nc \ + --arg source_repo "${SOURCE_REPO}" \ + --arg source_event "${SOURCE_EVENT}" \ + --arg source_ref "${SOURCE_REF}" \ + --arg source_sha "${SOURCE_SHA}" \ + --arg source_pr "${SOURCE_PR}" \ + '{event_type:"governance-signal", client_payload:{source_repo:$source_repo,source_event:$source_event,source_ref:$source_ref,source_sha:$source_sha,source_pr:($source_pr|if .=="" then null else tonumber end)}}')" + curl -fsS -X POST "https://api.github.com/repos/${CONTROL_REPO}/dispatches" \ + -H "Authorization: Bearer ${DISPATCH_TOKEN}" \ + -H "Accept: application/vnd.github+json" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + -d "${payload}" >/dev/null diff --git a/templates/governance-baseline/.github/workflows/identity-context-onboarding.yml b/templates/governance-baseline/.github/workflows/identity-context-onboarding.yml new file mode 100644 index 0000000..81e996c --- /dev/null +++ b/templates/governance-baseline/.github/workflows/identity-context-onboarding.yml @@ -0,0 +1,17 @@ +name: Identity & Context Onboarding Gate + +on: + pull_request: + push: + branches: [ main ] + +jobs: + identity-onboarding: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Validate ChittyID Context Onboarding + shell: bash + run: | + set -euo pipefail + bash scripts/check-chitty-onboarding.sh .chittyconnect.yml diff --git a/templates/governance-baseline/.github/workflows/onepassword-rotation-audit.yml b/templates/governance-baseline/.github/workflows/onepassword-rotation-audit.yml new file mode 100644 index 0000000..55435a7 --- /dev/null +++ b/templates/governance-baseline/.github/workflows/onepassword-rotation-audit.yml @@ -0,0 +1,56 @@ +name: 1Password Rotation Audit + +on: + workflow_dispatch: + schedule: + - cron: "25 3 * * *" + +permissions: + contents: read + issues: write + +jobs: + audit: + runs-on: ubuntu-latest + env: + GH_TOKEN: ${{ secrets.ORG_AUTOMATION_TOKEN }} + OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} + steps: + - uses: actions/checkout@v4 + - name: Validate required secrets + shell: bash + run: | + set -euo pipefail + [[ -n "${GH_TOKEN:-}" ]] || { echo "Missing ORG_AUTOMATION_TOKEN"; exit 1; } + [[ -n "${OP_SERVICE_ACCOUNT_TOKEN:-}" ]] || { echo "Missing OP_SERVICE_ACCOUNT_TOKEN"; exit 1; } + - name: Install 1Password CLI + uses: 1password/install-cli-action@v1 + - name: Run rotation audit + id: rotation + shell: bash + run: | + set -euo pipefail + mkdir -p reports/secret-rotation + if bash scripts/onepassword-rotation-audit.sh .github/secret-catalog.json reports/secret-rotation; then + echo "status=pass" >> "$GITHUB_OUTPUT" + else + echo "status=fail" >> "$GITHUB_OUTPUT" + fi + - name: Upload rotation report + uses: actions/upload-artifact@v4 + with: + name: onepassword-rotation-report + path: reports/secret-rotation + - name: Open or update rotation issue on failure + if: ${{ steps.rotation.outputs.status == 'fail' }} + shell: bash + run: | + set -euo pipefail + title="[Security] 1Password rotation policy violations" + body="$(cat reports/secret-rotation/latest.md)" + existing="$(gh issue list --state open --search "\"${title}\" in:title" --json number,title --jq '.[] | select(.title=="'"${title}"'") | .number' | head -n1 || true)" + if [[ -n "${existing}" ]]; then + gh issue comment "${existing}" --body "${body}" >/dev/null + else + gh issue create --title "${title}" --body "${body}" >/dev/null + fi diff --git a/templates/governance-baseline/.github/workflows/reusable-governance-gates.yml b/templates/governance-baseline/.github/workflows/reusable-governance-gates.yml new file mode 100644 index 0000000..5ebc75c --- /dev/null +++ b/templates/governance-baseline/.github/workflows/reusable-governance-gates.yml @@ -0,0 +1,96 @@ +name: Reusable Governance Gates + +on: + workflow_call: + inputs: + run_dependency_audit: + required: false + type: boolean + default: true + +permissions: + contents: read + +jobs: + workflow-secret-policy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Enforce Workflow Secret Allowlist + shell: bash + run: | + set -euo pipefail + secrets_in_use="$(grep -RhoE 'secrets\.[A-Za-z_][A-Za-z0-9_]*' .github/workflows \ + | sed -E 's/.*secrets\.([A-Za-z_][A-Za-z0-9_]*).*/\1/' \ + | sort -u || true)" + + if [[ -z "${secrets_in_use}" ]]; then + echo "No workflow secrets in use." + exit 0 + fi + + if [[ ! -f .github/allowed-workflow-secrets.txt ]]; then + echo "Missing .github/allowed-workflow-secrets.txt" + exit 1 + fi + + disallowed=0 + while IFS= read -r secret_name; do + [[ -z "${secret_name}" ]] && continue + if ! grep -qx "${secret_name}" .github/allowed-workflow-secrets.txt; then + echo "Disallowed workflow secret reference: ${secret_name}" + disallowed=1 + fi + done <<< "${secrets_in_use}" + + if [[ "${disallowed}" -ne 0 ]]; then + echo "Workflow secret policy check failed." + exit 1 + fi + + secret-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Install Gitleaks + shell: bash + run: | + set -euo pipefail + GL_VERSION="8.30.0" + curl -sSL "https://github.com/gitleaks/gitleaks/releases/download/v${GL_VERSION}/gitleaks_${GL_VERSION}_linux_x64.tar.gz" -o /tmp/gitleaks.tgz + tar -xzf /tmp/gitleaks.tgz -C /tmp gitleaks + /tmp/gitleaks version + - name: Scan Git History + run: /tmp/gitleaks git --config .gitleaks.toml --redact --log-opts="--all" --exit-code 1 + + dependency-audit: + if: ${{ inputs.run_dependency_audit }} + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Detect lockfile + id: lockfile + shell: bash + run: | + set -euo pipefail + if [[ -f package-lock.json ]]; then + echo "present=true" >> "$GITHUB_OUTPUT" + else + echo "present=false" >> "$GITHUB_OUTPUT" + fi + - uses: actions/setup-node@v4 + if: ${{ steps.lockfile.outputs.present == 'true' }} + with: + node-version: "20" + cache: npm + - name: Install + if: ${{ steps.lockfile.outputs.present == 'true' }} + run: npm ci + - name: Dependency Audit (High+) + if: ${{ steps.lockfile.outputs.present == 'true' }} + run: npm audit --audit-level=high + - name: Skip Dependency Audit (no package-lock.json) + if: ${{ steps.lockfile.outputs.present != 'true' }} + run: echo "No package-lock.json found; skipping dependency audit." diff --git a/templates/governance-baseline/.gitleaks.toml b/templates/governance-baseline/.gitleaks.toml new file mode 100644 index 0000000..1d01f3e --- /dev/null +++ b/templates/governance-baseline/.gitleaks.toml @@ -0,0 +1,12 @@ +title = "chittycommand-gitleaks-config" + +[allowlist] +description = "Known test/example files with non-production credential-like strings" +paths = [ + '''_ext/chittyid/chittycontext\.config\.js''', + '''_ext/chittyid/monitoring/scripts/setup-monitoring\.sh''', + '''_ext/chittyid/test-security\.sh''', + '''_ext/chittyid/tests/integration/chittyrouter-gateway\.test\.js''', + '''_ext/chittyid/tests/penetration/bypass-attempts\.test\.js''', + '''_ext/chittyops/project-awareness/test/qa-integration-tests\.js''', +] diff --git a/templates/governance-baseline/CHARTER.md b/templates/governance-baseline/CHARTER.md new file mode 100644 index 0000000..042e39e --- /dev/null +++ b/templates/governance-baseline/CHARTER.md @@ -0,0 +1,28 @@ +--- +name: Project +status: draft +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance +--- + +# CHARTER + + +## Persistent Context + +- **Working memory brief**: [docs/PERSISTENT_BRIEF.md](docs/PERSISTENT_BRIEF.md) +- **Canonical governance**: `chittycanon://gov/governance` +- **TY/VY/RY framework**: `chittycanon://gov/governance#three-aspects-framework` +- **Context model**: `chittycanon://docs/tech/spec/context-schema` +- **Session governance genes**: `chittycanon://specs/chittydna-session-governance` +- **Governance DNA / earned authority**: `chittycanon://gov/governance#written-to-chittydna` + +This section is a persistent discovery hint for humans and agents. It is not an authority source. + + +## Charter + +Baseline charter. Replace with repository-specific intent, boundaries, and authority. diff --git a/templates/governance-baseline/CHITTY.md b/templates/governance-baseline/CHITTY.md new file mode 100644 index 0000000..76e102c --- /dev/null +++ b/templates/governance-baseline/CHITTY.md @@ -0,0 +1,28 @@ +--- +name: Project +status: draft +context_brief: chittycontext://persistent-brief +discovery_refs: + - chittycanon://gov/governance + - chittycanon://docs/tech/spec/context-schema + - chittycanon://specs/chittydna-session-governance +--- + +# CHITTY + + +## Persistent Context + +- **Working memory brief**: [docs/PERSISTENT_BRIEF.md](docs/PERSISTENT_BRIEF.md) +- **Canonical governance**: `chittycanon://gov/governance` +- **TY/VY/RY framework**: `chittycanon://gov/governance#three-aspects-framework` +- **Context model**: `chittycanon://docs/tech/spec/context-schema` +- **Session governance genes**: `chittycanon://specs/chittydna-session-governance` +- **Governance DNA / earned authority**: `chittycanon://gov/governance#written-to-chittydna` + +This section is a persistent discovery hint for humans and agents. It is not an authority source. + + +## Summary + +Baseline one-pager. Replace with repository-specific content. diff --git a/templates/governance-baseline/docs/PERSISTENT_BRIEF.md b/templates/governance-baseline/docs/PERSISTENT_BRIEF.md new file mode 100644 index 0000000..dc112c5 --- /dev/null +++ b/templates/governance-baseline/docs/PERSISTENT_BRIEF.md @@ -0,0 +1,15 @@ +# Persistent Brief + +This file keeps a durable, model-agnostic summary of project intent and guardrails. + +## Discovery Anchors + +- TY/VY/RY framework: `chittycanon://gov/governance#three-aspects-framework` +- Context schema: `chittycanon://docs/tech/spec/context-schema` +- Session genes: `chittycanon://specs/chittydna-session-governance` +- Governance DNA: `chittycanon://gov/governance#written-to-chittydna` + +## Notes + +- Update this brief first when intent or architecture changes materially. +- Keep it concise and link outward to authoritative specs. diff --git a/templates/governance-baseline/scripts/check-chitty-onboarding.sh b/templates/governance-baseline/scripts/check-chitty-onboarding.sh new file mode 100755 index 0000000..bac1398 --- /dev/null +++ b/templates/governance-baseline/scripts/check-chitty-onboarding.sh @@ -0,0 +1,42 @@ +#!/usr/bin/env bash +set -euo pipefail + +TARGET_FILE="${1:-.chittyconnect.yml}" + +if [[ ! -f "${TARGET_FILE}" ]]; then + echo "Missing required onboarding file: ${TARGET_FILE}" >&2 + exit 1 +fi + +required_patterns=( + "onboarding:" + "provisions:" + "chitty_id:" + "service_token:" + "certificate:" + "trust_chain:" + "context_consciousness:" + "chittydna:" + "memorycloude:" + "synthetic_entity:" + "type:" + "classification:" + "authority_scope:" + "access_scope:" + "actor_binding:" +) + +missing=0 +for pattern in "${required_patterns[@]}"; do + if ! grep -Eq "^[[:space:]-]*${pattern}[[:space:]]*" "${TARGET_FILE}"; then + echo "Missing onboarding key pattern: ${pattern}" >&2 + missing=1 + fi +done + +if [[ "${missing}" -ne 0 ]]; then + echo "ChittyID context onboarding policy check failed." >&2 + exit 1 +fi + +echo "ChittyID context onboarding policy check passed." diff --git a/templates/governance-baseline/scripts/onepassword-rotation-audit.sh b/templates/governance-baseline/scripts/onepassword-rotation-audit.sh new file mode 100755 index 0000000..2cba149 --- /dev/null +++ b/templates/governance-baseline/scripts/onepassword-rotation-audit.sh @@ -0,0 +1,114 @@ +#!/usr/bin/env bash +set -euo pipefail + +CATALOG_FILE="${1:-.github/secret-catalog.json}" +OUT_DIR="${2:-reports/secret-rotation}" + +if ! command -v op >/dev/null 2>&1; then + echo "1Password CLI (op) is required." >&2 + exit 1 +fi +if ! command -v jq >/dev/null 2>&1; then + echo "jq is required." >&2 + exit 1 +fi + +if [[ ! -f "${CATALOG_FILE}" ]]; then + echo "Missing secret catalog: ${CATALOG_FILE}" >&2 + exit 1 +fi + +mkdir -p "${OUT_DIR}" +timestamp="$(date -u +%Y%m%dT%H%M%SZ)" +json_path="${OUT_DIR}/rotation-${timestamp}.json" +md_path="${OUT_DIR}/rotation-${timestamp}.md" + +rows='[]' +stale_count=0 +total=0 + +while IFS= read -r row; do + [[ -z "${row}" ]] && continue + total=$((total + 1)) + name="$(jq -r '.name' <<< "${row}")" + op_ref="$(jq -r '.op_ref' <<< "${row}")" + rotation_days="$(jq -r '.rotation_days' <<< "${row}")" + owner="$(jq -r '.owner // "unknown"' <<< "${row}")" + + item_ref="${op_ref%/*}" + item_json="$(op item get "${item_ref}" --format json 2>/dev/null || true)" + if [[ -z "${item_json}" ]]; then + rows="$(jq -c --arg name "${name}" --arg owner "${owner}" \ + '. + [{"name":$name,"owner":$owner,"status":"missing","age_days":null,"rotation_days":null}]' <<< "${rows}")" + stale_count=$((stale_count + 1)) + continue + fi + + updated_at="$(jq -r '.updated_at // .created_at // empty' <<< "${item_json}")" + if [[ -z "${updated_at}" ]]; then + rows="$(jq -c --arg name "${name}" --arg owner "${owner}" \ + '. + [{"name":$name,"owner":$owner,"status":"unknown_age","age_days":null,"rotation_days":null}]' <<< "${rows}")" + stale_count=$((stale_count + 1)) + continue + fi + + age_days="$( + python3 - <<'PY' "${updated_at}" +from datetime import datetime, timezone +import sys +v=sys.argv[1] +if v.endswith('Z'): + v=v[:-1] + '+00:00' +d=datetime.fromisoformat(v) +if d.tzinfo is None: + d=d.replace(tzinfo=timezone.utc) +now=datetime.now(timezone.utc) +print((now-d).days) +PY + )" + + status="ok" + if [[ "${age_days}" -ge "${rotation_days}" ]]; then + status="stale" + stale_count=$((stale_count + 1)) + fi + + rows="$(jq -c \ + --arg name "${name}" \ + --arg owner "${owner}" \ + --arg status "${status}" \ + --argjson age_days "${age_days}" \ + --argjson rotation_days "${rotation_days}" \ + '. + [{"name":$name,"owner":$owner,"status":$status,"age_days":$age_days,"rotation_days":$rotation_days}]' <<< "${rows}")" +done < <(jq -c '.secrets[]' "${CATALOG_FILE}") + +jq -nc \ + --arg timestamp "${timestamp}" \ + --arg catalog "${CATALOG_FILE}" \ + --argjson total "${total}" \ + --argjson stale "${stale_count}" \ + --argjson entries "${rows}" \ + '{timestamp:$timestamp,catalog:$catalog,total:$total,stale:$stale,entries:$entries}' > "${json_path}" +cp "${json_path}" "${OUT_DIR}/latest.json" + +{ + echo "# 1Password Rotation Audit" + echo + echo "- Timestamp: ${timestamp}" + echo "- Catalog: ${CATALOG_FILE}" + echo "- Secrets audited: ${total}" + echo "- Non-compliant (stale/missing): ${stale_count}" + echo + echo "| Name | Owner | Status | Age (days) | Rotation window (days) |" + echo "|---|---|---|---:|---:|" + jq -r '.entries[] | "| \(.name) | \(.owner) | \(.status) | \(.age_days // "n/a") | \(.rotation_days // "n/a") |"' "${json_path}" +} > "${md_path}" +cp "${md_path}" "${OUT_DIR}/latest.md" + +echo "Wrote ${json_path}" +echo "Wrote ${md_path}" + +if [[ "${stale_count}" -gt 0 ]]; then + echo "Rotation audit failed: ${stale_count} secret(s) out of policy." >&2 + exit 2 +fi diff --git a/tests/mcp.test.ts b/tests/mcp.test.ts new file mode 100644 index 0000000..6a8b063 --- /dev/null +++ b/tests/mcp.test.ts @@ -0,0 +1,269 @@ +/** + * MCP server tests — JSON-RPC 2.0 protocol, tool listing, success/error paths, + * and defensive parsing. Uses a minimal Hono app with a mocked Env binding so + * no real database or external services are required. + */ +import { describe, it, expect, vi } from 'vitest'; +import { Hono } from 'hono'; +import type { Env } from '../src/index'; +import { mcpAuthMiddleware } from '../src/middleware/auth'; + +// Mock the db module before importing routes that depend on it +vi.mock('../src/lib/db', () => ({ + getDb: vi.fn(() => { + // Return a mock sql tagged-template that resolves to an empty array + const sql = vi.fn().mockResolvedValue([]); + return sql; + }), + typedRows: (rows: readonly Record[]): T[] => + rows as unknown as T[], +})); + +import { mcpRoutes } from '../src/routes/mcp'; + +// Partial mock of Cloudflare bindings — only the fields exercised by the MCP handler. +type MockEnv = Pick & Partial; + +// --------------------------------------------------------------------------- +// Minimal Env mock — only the bindings exercised by the MCP handler under test +// --------------------------------------------------------------------------- +function makeMockEnv(overrides: Partial = {}): MockEnv { + return { + ENVIRONMENT: 'test', + COMMAND_KV: { + get: vi.fn().mockResolvedValue(null), + put: vi.fn().mockResolvedValue(undefined), + } as unknown as KVNamespace, + ...overrides, + }; +} + +// --------------------------------------------------------------------------- +// Helper — build a minimal Hono app that exposes the MCP routes. +// --------------------------------------------------------------------------- +function buildApp(envOverrides: Partial = {}) { + const app = new Hono<{ Bindings: Env }>(); + const env = makeMockEnv(envOverrides); + + // Wire the same auth middleware as production — dev bypass sets userId/scopes + // automatically when ENVIRONMENT !== 'production' (mock uses 'test'). + app.use('/mcp/*', mcpAuthMiddleware); + app.route('/mcp', mcpRoutes); + + async function post(body: unknown) { + const req = new Request('http://localhost/mcp', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify(body), + }); + return app.fetch(req, env as unknown as Env); + } + + async function postRaw(body: string) { + const req = new Request('http://localhost/mcp', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body, + }); + return app.fetch(req, env as unknown as Env); + } + + async function get() { + const req = new Request('http://localhost/mcp', { method: 'GET' }); + return app.fetch(req, env as unknown as Env); + } + + return { post, postRaw, get, env }; +} + +// --------------------------------------------------------------------------- +// JSON-RPC 2.0 protocol conformance +// --------------------------------------------------------------------------- +describe('MCP — JSON-RPC protocol', () => { + it('responds to initialize with protocolVersion and serverInfo', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 1, method: 'initialize', params: {} }); + expect(res.status).toBe(200); + const json = await res.json() as Record; + expect(json.jsonrpc).toBe('2.0'); + expect(json.id).toBe(1); + const result = json.result as Record; + expect(result.protocolVersion).toBeDefined(); + const serverInfo = result.serverInfo as Record; + expect(serverInfo.name).toBe('chittycommand-mcp'); + }); + + it('returns 204 with no body for notifications/initialized', async () => { + const { post } = buildApp(); + // Notifications have no id per JSON-RPC 2.0 spec + const res = await post({ jsonrpc: '2.0', method: 'notifications/initialized' }); + expect(res.status).toBe(204); + const text = await res.text(); + expect(text).toBe(''); + }); + + it('returns -32600 for non-2.0 JSON-RPC version', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '1.0', id: 2, method: 'initialize' }); + const json = await res.json() as Record; + const error = json.error as Record; + expect(error.code).toBe(-32600); + }); + + it('returns -32601 for unknown method', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 3, method: 'not_a_real_method' }); + const json = await res.json() as Record; + const error = json.error as Record; + expect(error.code).toBe(-32601); + }); + + it('echoes request id in all responses', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 'abc-123', method: 'tools/list' }); + const json = await res.json() as Record; + expect(json.id).toBe('abc-123'); + }); +}); + +// --------------------------------------------------------------------------- +// tools/list +// --------------------------------------------------------------------------- +describe('MCP — tools/list', () => { + it('returns an array of tools', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 1, method: 'tools/list' }); + const json = await res.json() as Record; + const result = json.result as Record; + const tools = result.tools as unknown[]; + expect(Array.isArray(tools)).toBe(true); + expect(tools.length).toBeGreaterThanOrEqual(1); + }); + + it('exposes at least 28 tools', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 1, method: 'tools/list' }); + const json = await res.json() as Record; + const result = json.result as Record; + const tools = result.tools as unknown[]; + expect(tools.length).toBeGreaterThanOrEqual(28); + }); + + it('each tool has a name and inputSchema', async () => { + const { post } = buildApp(); + const res = await post({ jsonrpc: '2.0', id: 1, method: 'tools/list' }); + const json = await res.json() as Record; + const result = json.result as Record; + const tools = result.tools as Array>; + for (const tool of tools) { + expect(typeof tool.name).toBe('string'); + expect(tool.inputSchema).toBeDefined(); + } + }); +}); + +// --------------------------------------------------------------------------- +// tools/call — success paths (no real DB / external services needed) +// --------------------------------------------------------------------------- +describe('MCP — tools/call success paths', () => { + it('get_schema_refs returns endpoints and db_tables', async () => { + const { post } = buildApp(); + const res = await post({ + jsonrpc: '2.0', id: 1, method: 'tools/call', + params: { name: 'get_schema_refs', arguments: {} }, + }); + const json = await res.json() as Record; + expect(json.error).toBeUndefined(); + const result = json.result as Record; + const content = result.content as Array>; + expect(content[0].type).toBe('text'); + const parsed = JSON.parse(content[0].text as string); + expect(Array.isArray(parsed.endpoints)).toBe(true); + expect(Array.isArray(parsed.db_tables)).toBe(true); + }); + + it('whoami returns client identity', async () => { + const { post } = buildApp(); + const res = await post({ + jsonrpc: '2.0', id: 2, method: 'tools/call', + params: { name: 'whoami', arguments: {} }, + }); + const json = await res.json() as Record; + expect(json.error).toBeUndefined(); + const result = json.result as Record; + const content = result.content as Array>; + expect(content[0].type).toBe('text'); + }); +}); + +// --------------------------------------------------------------------------- +// tools/call — error paths +// --------------------------------------------------------------------------- +describe('MCP — tools/call error paths', () => { + it('returns isError:true for unknown tool name', async () => { + const { post } = buildApp(); + const res = await post({ + jsonrpc: '2.0', id: 1, method: 'tools/call', + params: { name: 'totally_fake_tool', arguments: {} }, + }); + const json = await res.json() as Record; + // Per MCP spec, tool errors surface as result.isError rather than JSON-RPC error + const result = json.result as Record; + expect(result.isError).toBe(true); + }); + + it('returns isError:true when required argument is missing (ledger_get_evidence)', async () => { + const { post } = buildApp(); + // ledger_get_evidence requires case_id; passing empty args triggers the guard + const res = await post({ + jsonrpc: '2.0', id: 2, method: 'tools/call', + params: { name: 'ledger_get_evidence', arguments: {} }, + }); + const json = await res.json() as Record; + const result = json.result as Record; + expect(result.isError).toBe(true); + const content = result.content as Array>; + const text = (content[0].text as string).toLowerCase(); + expect(text).toContain('case_id'); + }); +}); + +// --------------------------------------------------------------------------- +// Defensive parsing +// --------------------------------------------------------------------------- +describe('MCP — defensive parsing', () => { + it('handles completely empty body gracefully', async () => { + const { postRaw } = buildApp(); + const res = await postRaw(''); + expect(res.status).toBe(400); + const json = await res.json() as Record; + expect(json.jsonrpc).toBe('2.0'); + expect(json.id).toBeNull(); + const error = json.error as Record; + expect(error.code).toBe(-32700); + }); + + it('handles non-JSON body without crashing', async () => { + const app = new Hono<{ Bindings: Env }>(); + const env = makeMockEnv(); + app.use('/mcp/*', mcpAuthMiddleware); + app.route('/mcp', mcpRoutes); + const req = new Request('http://localhost/mcp', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: 'not json at all', + }); + const res = await app.fetch(req, env as unknown as Env); + // Hono's req.json() throws on bad JSON; must surface as 4xx/5xx, not an unhandled crash + expect(res.status).toBeGreaterThanOrEqual(400); + }); + + it('GET /mcp returns service health info', async () => { + const { get } = buildApp(); + const res = await get(); + expect(res.status).toBe(200); + const json = await res.json() as Record; + expect(json.service).toBe('chittycommand-mcp'); + expect(json.status).toBe('ok'); + }); +}); diff --git a/ui/public/_headers b/ui/public/_headers new file mode 100644 index 0000000..3258f0e --- /dev/null +++ b/ui/public/_headers @@ -0,0 +1,4 @@ +/* + X-Frame-Options: DENY + X-Content-Type-Options: nosniff + Referrer-Policy: strict-origin-when-cross-origin diff --git a/ui/public/_redirects b/ui/public/_redirects new file mode 100644 index 0000000..ad37e2c --- /dev/null +++ b/ui/public/_redirects @@ -0,0 +1 @@ +/* /index.html 200 diff --git a/ui/src/components/dashboard/DisputesWidget.tsx b/ui/src/components/dashboard/DisputesWidget.tsx index 2820cea..7006c2d 100644 --- a/ui/src/components/dashboard/DisputesWidget.tsx +++ b/ui/src/components/dashboard/DisputesWidget.tsx @@ -1,3 +1,4 @@ +import { Link } from 'react-router-dom'; import { Card } from '../ui/Card'; import { ProgressDots } from '../ui/ProgressDots'; import type { Dispute } from '../../lib/api'; @@ -40,7 +41,7 @@ export function DisputesWidget({ disputes }: Props) {

{formatCurrency(d.amount_at_stake)}

)} {d.next_action && ( - {d.next_action} + {d.next_action} )} diff --git a/ui/src/lib/api.ts b/ui/src/lib/api.ts index 57b9880..ed00a27 100644 --- a/ui/src/lib/api.ts +++ b/ui/src/lib/api.ts @@ -73,6 +73,25 @@ export interface ChatMessage { content: string; } +export interface TokenOverview { + chittyauth: { + base_url: string; + status: 'ok' | 'error'; + health_code: number | null; + }; + legacy: Array<{ + key: 'mcp:service_token' | 'bridge:service_token' | 'scrape:service_token'; + configured: boolean; + preview: string | null; + }>; +} + +export interface TokenActionResponse { + ok: boolean; + status: number; + result: unknown; +} + export const api = { // Dashboard getDashboard: () => request('/dashboard'), @@ -117,17 +136,25 @@ export const api = { // Documents uploadDocument: async (file: File) => { + const token = getToken(); const formData = new FormData(); formData.append('file', file); - const res = await fetch(`${API_BASE}/documents/upload`, { method: 'POST', body: formData }); + const headers: Record = {}; + if (token) headers['Authorization'] = `Bearer ${token}`; + const res = await fetch(`${API_BASE}/documents/upload`, { method: 'POST', headers, body: formData }); + if (res.status === 401) { logout(); throw new Error('Session expired'); } if (!res.ok) throw new Error((await res.json().catch(() => ({}))).error || `HTTP ${res.status}`); return res.json(); }, getDocumentGaps: () => request('/documents/gaps'), uploadBatch: async (files: File[]) => { + const token = getToken(); const formData = new FormData(); for (const file of files) formData.append('files', file); - const res = await fetch(`${API_BASE}/documents/upload/batch`, { method: 'POST', body: formData }); + const headers: Record = {}; + if (token) headers['Authorization'] = `Bearer ${token}`; + const res = await fetch(`${API_BASE}/documents/upload/batch`, { method: 'POST', headers, body: formData }); + if (res.status === 401) { logout(); throw new Error('Session expired'); } if (!res.ok) throw new Error((await res.json().catch(() => ({}))).error || `HTTP ${res.status}`); return res.json() as Promise; }, @@ -235,6 +262,30 @@ export const api = { syncEmailConnection: (id: string) => request<{ status: string }>(`/email-connections/${id}/sync`, { method: 'POST' }), + // Auth management + getTokenOverview: () => + request('/v1/tokens/overview'), + rotateLegacyToken: (key: 'mcp:service_token' | 'bridge:service_token' | 'scrape:service_token') => + request<{ key: string; token: string; rotated_at: string }>('/v1/tokens/legacy/rotate', { + method: 'POST', + body: JSON.stringify({ key }), + }), + provisionChittyAuthToken: (adminToken: string, payload: Record) => + request('/v1/tokens/chittyauth/provision', { + method: 'POST', + body: JSON.stringify({ admin_token: adminToken, payload }), + }), + validateChittyAuthToken: (token: string) => + request('/v1/tokens/chittyauth/validate', { + method: 'POST', + body: JSON.stringify({ token }), + }), + revokeChittyAuthToken: (adminToken: string, payload: Record) => + request('/v1/tokens/chittyauth/revoke', { + method: 'POST', + body: JSON.stringify({ admin_token: adminToken, payload }), + }), + chatStream: async function* ( messages: ChatMessage[], context?: { page?: string; item_id?: string }, diff --git a/vitest.config.ts b/vitest.config.ts new file mode 100644 index 0000000..5ba09c1 --- /dev/null +++ b/vitest.config.ts @@ -0,0 +1,18 @@ +import { defineConfig } from 'vitest/config'; +import path from 'path'; + +export default defineConfig({ + test: { + globals: true, + environment: 'node', + include: ['tests/**/*.test.ts'], + testTimeout: 15000, + pool: 'threads', + maxWorkers: 1, + }, + resolve: { + alias: { + '@': path.resolve(__dirname, 'src'), + }, + }, +}); diff --git a/wrangler.toml b/wrangler.toml index c305484..b22a545 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -19,6 +19,13 @@ CHITTYBOOKS_URL = "https://chittybooks.chitty.cc" CHITTYASSETS_URL = "https://chittyassets.chitty.cc" CHITTYSCRAPE_URL = "https://scrape.chitty.cc" CHITTYROUTER_URL = "https://router.chitty.cc" +# Optional: chittyregister for beacon heartbeats +CHITTYREGISTER_URL = "https://register.chitty.cc" +# Optional: chittychat data API for MCP tools +# CHITTYCHAT_DATA_API = "https://chittychat-api.chitty.cc/api" +# Optional: ChittySchema and ChittyCert endpoints for MCP tools +# CHITTYSCHEMA_URL = "https://schema.chitty.cc" +# CHITTYCERT_URL = "https://cert.chitty.cc" # PLAID_CLIENT_ID and PLAID_SECRET set via `wrangler secret put` # Neon PostgreSQL via Hyperdrive @@ -51,3 +58,7 @@ crons = [ "0 14 * * 1", # Weekly Monday 8 AM CT: Utility scrapers "0 15 1 * *" # Monthly 1st 9 AM CT: Mortgage, property tax ] + +# Production overrides +[env.production.vars] +PLAID_ENV = "production"