Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9f9777f
refactor: simplify Project Brain to context core
ruzer Aug 26, 2026
7ef52ce
test: skip POSIX mode assertion on Windows
ruzer Aug 26, 2026
3d04828
chore: prepare Project Brain Lite 0.3.0 promotion
ruzer Aug 26, 2026
9cc563e
ci: align Lite checks with main protection
ruzer Aug 26, 2026
6582055
security: audit all dependency scopes
ruzer Aug 26, 2026
9ea16cd
chore: restore Dependabot default labels
ruzer Aug 26, 2026
f9a85e5
fix: preserve repository-owned context bytes
ruzer Sep 1, 2026
03ac9f8
fix: reject invalid utf-8 context without writes
ruzer Sep 1, 2026
5abf755
fix: prevent concurrent context overwrite
ruzer Sep 1, 2026
33454b5
fix: validate context destination identity
ruzer Sep 2, 2026
bea4ccc
feat: add diagnostic metadata
ruzer Sep 2, 2026
91ea2bd
feat: separate generated context categories
ruzer Sep 2, 2026
266d0db
feat: warn on stale generated projection
ruzer Sep 2, 2026
7e4a8a5
feat: warn on invalid artifact roles
ruzer Sep 2, 2026
04b9647
docs: publish domain glossary and authority
ruzer Sep 2, 2026
6e2e15d
docs: define technical decision lifecycle
ruzer Sep 2, 2026
4ff4abf
docs: define local technical tasks
ruzer Sep 2, 2026
1eeea8b
docs: define confirmed technical learnings
ruzer Sep 2, 2026
d7e8943
docs: define technical source boundaries
ruzer Sep 2, 2026
7492d17
docs: formalize integration references
ruzer Sep 2, 2026
a42fe86
feat: warn on incomplete integration references
ruzer Sep 2, 2026
e6b287e
feat: formalize public result contracts
ruzer Sep 2, 2026
ccde78c
test: freeze public api and lite scope
ruzer Sep 2, 2026
51ec479
feat: expose repository inventory mode
ruzer Sep 2, 2026
987141e
test: cover brain as a real process
ruzer Sep 2, 2026
ec31362
test: validate package from a temporary consumer
ruzer Sep 2, 2026
8c5c570
chore: prepare Project Brain Lite 0.3.1
ruzer Sep 2, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
89 changes: 0 additions & 89 deletions .agents/skills/project-brain-maintainer/SKILL.md

This file was deleted.

4 changes: 0 additions & 4 deletions .agents/skills/project-brain-maintainer/agents/openai.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .eslint.devagent.config.mjs

This file was deleted.

10 changes: 5 additions & 5 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
* @ruzer

/.github/ @ruzer
/cli/ @ruzer
/core/ @ruzer
/governance/ @ruzer
/integrations/ @ruzer
/scripts/ @ruzer
/AI_CONTEXT/ @ruzer
/bin/ @ruzer
/schema/ @ruzer
/src/ @ruzer
/templates/ @ruzer
43 changes: 0 additions & 43 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

27 changes: 0 additions & 27 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 5
labels:
- dependencies
- security

- package-ecosystem: github-actions
directory: "/"
Expand Down
22 changes: 0 additions & 22 deletions .github/pull_request_template.md

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: CI

on:
pull_request:
push:
branches:
- main

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read

jobs:
quality-gates:
name: quality-gates (${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 20
- 22
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run check
- if: matrix.node-version == 20
run: npm pack --dry-run

windows:
name: windows (20)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run check
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- name: Dependency review
- name: Review dependency changes
uses: actions/dependency-review-action@v4
with:
fail-on-severity: high
81 changes: 0 additions & 81 deletions .github/workflows/project-brain-ci.yml

This file was deleted.

Loading
Loading