Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
66b6363
feat(volition): add conflict ledger and review packets
Kot141078 May 24, 2026
1c50adc
feat(volition): add evidence resolution and attention rebalancing
Kot141078 May 24, 2026
bec4c31
chore(runtime): add observe-only action/reflection hooks
Kot141078 May 24, 2026
7fb9430
test(volition): add conflict governance focused tests
Kot141078 May 24, 2026
c80d515
chore(ci): fix scoped lint checks
Kot141078 May 24, 2026
d1f9135
chore(ci): fix test dependency and SARIF permissions
Kot141078 May 24, 2026
e7206f9
chore(ci): add scheduler test dependency
Kot141078 May 24, 2026
7736e30
chore(ci): add FastAPI test dependency
Kot141078 May 24, 2026
8e3d794
chore(ci): add multipart form dependency
Kot141078 May 24, 2026
6850034
fix(providers): avoid import-time provider discovery
Kot141078 May 24, 2026
38ffebd
fix(memory): support legacy submodule imports
Kot141078 May 24, 2026
0eb650d
fix(memory): add hypothesis store compatibility module
Kot141078 May 24, 2026
7a22606
fix(app): register P2P routes in fallback app
Kot141078 May 24, 2026
cf9b1e3
fix(app): expose docs route in fallback app
Kot141078 May 25, 2026
c79ce16
fix(messaging): stabilize style router output
Kot141078 May 25, 2026
153a554
test(nudges): make outbox expectation explicit
Kot141078 May 25, 2026
5c7b9dc
fix(app): expose ops probe route in fallback app
Kot141078 May 25, 2026
4593a83
fix(app): expose live route in fallback app
Kot141078 May 25, 2026
0fdee87
fix(app): expose proactive routes in fallback app
Kot141078 May 25, 2026
fafcc6a
fix(app): expose ingest CRDT routes in fallback app
Kot141078 May 25, 2026
95a2165
fix(app): expose route inventory in fallback app
Kot141078 May 25, 2026
044436d
fix(memory): add daily cycle compatibility API
Kot141078 May 25, 2026
f291da5
fix(memory): add experience profile compatibility API
Kot141078 May 25, 2026
d2ff86a
fix(memory): add journal compatibility API
Kot141078 May 25, 2026
7d2d577
fix(memory): expose journal event compatibility
Kot141078 May 25, 2026
11ae531
fix(memory): add reflection compatibility API
Kot141078 May 25, 2026
0c61305
fix(memory): add sleep alias compatibility API
Kot141078 May 26, 2026
128a41c
fix(synergy): separate verify_chain SQL clauses
Kot141078 May 26, 2026
df6de81
fix(app): expose portal route in fallback app
Kot141078 May 26, 2026
c934b3e
fix(app): register admin reports in fallback app
Kot141078 May 26, 2026
c601e18
fix(app): expose backup verify route in fallback app
Kot141078 May 26, 2026
41fb232
fix(bootstrap): preserve Windows roots on POSIX
Kot141078 May 26, 2026
991ff06
fix(app): expose chat message route in fallback app
Kot141078 May 26, 2026
42ffb72
fix(chat): preserve Python fences in rewrite
Kot141078 May 26, 2026
25f872e
fix(app): expose CSRF-protected ingest upload route
Kot141078 May 26, 2026
92c1fd5
fix(dag): preserve fanout join context
Kot141078 May 26, 2026
0c6fd15
fix(app): expose replication test route in fallback app
Kot141078 May 26, 2026
dc82a0e
fix(app): expose empathy routes in fallback app
Kot141078 May 26, 2026
3b7a3af
fix(identity): export profile store callables
Kot141078 May 26, 2026
9c63864
fix(app): expose ingest submit fallback route
Kot141078 May 26, 2026
a29cf13
fix(app): expose flashback memory alias in fallback app
Kot141078 May 26, 2026
39b0d45
fix(memory): restore MemoryBus callable API
Kot141078 May 27, 2026
e2cee36
fix(memory): restore JSONL tail reader callable
Kot141078 May 27, 2026
a17c1ae
fix(app): expose metrics UI in fallback app
Kot141078 May 27, 2026
6a80c9f
fix(app): expose ops ingest help in fallback app
Kot141078 May 27, 2026
8079c27
fix(app): expose guarded P2P echo route in fallback app
Kot141078 May 27, 2026
6a1127f
fix(graph): expose submitted run status
Kot141078 May 27, 2026
618ba60
fix(p2p): keep sign formula import-safe without Typer
Kot141078 May 27, 2026
811efa6
fix(app): expose provider status routes in fallback app
Kot141078 May 27, 2026
0c3b2b6
fix(app): expose replication snapshot fallback route
Kot141078 May 27, 2026
eae23b8
fix(app): expose research search fallback route
Kot141078 May 28, 2026
e353a74
fix(app): expose mem hypothesis CRUD fallback route
Kot141078 May 28, 2026
58f582c
fix(app): expose mem KG fallback routes
Kot141078 May 28, 2026
ce2a90c
fix(app): expose mem KG fallback routes
Kot141078 May 28, 2026
65b6e1f
fix(state): restore state path resolver callable
Kot141078 May 28, 2026
904dcf3
fix(synaps): prefer wait for stale write policy
Kot141078 May 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/auto-fix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
permissions:
contents: write
pull-requests: write
security-events: write

jobs:
detector:
Expand Down
34 changes: 33 additions & 1 deletion .github/workflows/ci_ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand All @@ -20,8 +22,38 @@ jobs:
run: |
python -m pip install -U pip
pip install -r requirements.txt || true
- name: Detect changed Python files
id: changed-python
shell: bash
env:
EVENT_NAME: ${{ github.event_name }}
BASE_REF: ${{ github.base_ref }}
BEFORE_SHA: ${{ github.event.before }}
run: |
set -euo pipefail
if [ "$EVENT_NAME" = "pull_request" ] && [ -n "${BASE_REF:-}" ]; then
git fetch --no-tags --prune origin "+refs/heads/${BASE_REF}:refs/remotes/origin/${BASE_REF}"
BASE="origin/${BASE_REF}"
elif [ -n "${BEFORE_SHA:-}" ] && [ "$BEFORE_SHA" != "0000000000000000000000000000000000000000" ] && git cat-file -e "${BEFORE_SHA}^{commit}" 2>/dev/null; then
BASE="${BEFORE_SHA}"
else
BASE="$(git rev-list --max-parents=0 HEAD)"
fi
git diff --name-only -z --diff-filter=ACMR "${BASE}...HEAD" -- "*.py" > changed-python-files.txt
if [ -s changed-python-files.txt ]; then
echo "has_changed_python=true" >> "$GITHUB_OUTPUT"
tr "\0" "\n" < changed-python-files.txt
else
echo "has_changed_python=false" >> "$GITHUB_OUTPUT"
echo "No changed Python files."
fi
- name: Ruff
run: |
python -m pip install ruff
ruff --version
ruff check .
if [ "${{ steps.changed-python.outputs.has_changed_python }}" = "true" ]; then
xargs -0 -r python -m ruff check < changed-python-files.txt
xargs -0 -r python -m ruff format --check < changed-python-files.txt
else
echo "Skipping Ruff: no changed Python files."
fi
Loading
Loading