Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
74d0600
feat(filesystem): add PageIndex filesystem shell
BukeLy May 25, 2026
574125d
fix(filesystem): add pifs ask and chat commands
BukeLy May 26, 2026
e074bf1
fix(filesystem): package pifs cli entrypoint
BukeLy May 26, 2026
3625a59
fix(filesystem): stream pifs chat by default
BukeLy May 26, 2026
3d62293
fix(filesystem): avoid duplicate pifs chat output
BukeLy May 26, 2026
b9ee711
fix(filesystem): require target-first cat syntax
BukeLy May 26, 2026
5a78131
fix(filesystem): suppress chat input echo while streaming
BukeLy May 26, 2026
144e8ba
feat(pifs): add find maxdepth traversal limit
BukeLy May 26, 2026
06d8553
fix(filesystem): clarify folder path metadata errors
BukeLy May 26, 2026
a80b84d
fix(filesystem): remove session ref aliases from cli output
BukeLy May 26, 2026
b208971
refactor(filesystem): remove reference id concept
BukeLy May 26, 2026
cb1bfb0
fix(filesystem): reuse agent session in pifs chat
BukeLy May 26, 2026
beed216
fix(filesystem): remove chat request started noise
BukeLy May 26, 2026
c12c2de
fix(filesystem): guide structural node reads
BukeLy May 26, 2026
ec96812
fix(filesystem): scope pifs chat identity
BukeLy May 26, 2026
8ae94ad
fix(filesystem): render root folder path correctly
BukeLy May 26, 2026
5c948d0
fix(filesystem): require metadata evidence in chat
BukeLy May 26, 2026
7e70b58
fix(filesystem): show generated metadata in stat
BukeLy May 26, 2026
fc0be1a
fix(filesystem): restore summary vector search in cli
BukeLy May 26, 2026
7c021a7
refactor(filesystem): unify pifs metadata state
BukeLy May 26, 2026
de1992d
refactor(filesystem): make pifs providers configurable
BukeLy May 26, 2026
30830fc
refactor(filesystem): remove pre-release store migrations
BukeLy May 26, 2026
b658735
fix(demo): register all example documents
BukeLy May 26, 2026
c421626
fix(filesystem): constrain pifs agent tool identity
BukeLy May 26, 2026
75acf5d
fix(filesystem): generalize pifs tool identity prompt
BukeLy May 26, 2026
fe1c4ae
fix(filesystem): search workspace topic questions before clarifying
BukeLy May 26, 2026
3519adf
fix(filesystem): preserve sqlite catalog durability
BukeLy May 26, 2026
ad45f96
fix(filesystem): use summary projection for default semantic search
BukeLy May 26, 2026
2297453
fix(filesystem): avoid replaying failed agent runs
BukeLy May 26, 2026
cb9db0b
fix(filesystem): guard summary index dimensions
BukeLy May 26, 2026
9734bf6
fix(filesystem): enforce pifs shell command limits
BukeLy May 26, 2026
70eece5
fix(filesystem): require real grep source lines
BukeLy May 26, 2026
e945372
fix(filesystem): lazy-load pifs import surface
BukeLy May 26, 2026
8e0f295
fix(filesystem): detect ambiguous virtual paths
BukeLy May 26, 2026
112ef99
fix(filesystem): escape sqlite like wildcards
BukeLy May 26, 2026
c86d572
fix(filesystem): preserve pageindex registration errors
BukeLy May 26, 2026
d139181
fix(filesystem): delay register side effects until insert
BukeLy May 26, 2026
7104602
refactor(filesystem): simplify semantic search result fields
BukeLy May 26, 2026
4a158f9
fix(filesystem): label semantic search paths in cli output
BukeLy May 26, 2026
2b69719
feat(filesystem): support space-separated cat node ids
BukeLy May 26, 2026
cd571dd
fix(filesystem): relax structural read limits
BukeLy May 26, 2026
311c7b5
fix(filesystem): preserve lazy filesystem exports
BukeLy May 26, 2026
346eb0a
chore(filesystem): remove uv project files
BukeLy May 26, 2026
c13cb20
ci(codeql): add python analysis job
BukeLy May 26, 2026
0243732
fix(filesystem): clarify agent evidence recovery
BukeLy May 26, 2026
977f596
fix(filesystem): return stable semantic search targets
BukeLy May 26, 2026
4ff184f
feat(filesystem): add pifs workspace default
BukeLy May 27, 2026
a70fc67
chore(filesystem): ignore local pifs artifacts
BukeLy May 27, 2026
21c83b6
fix(filesystem): run pifs from local venv
BukeLy May 27, 2026
8071889
chore(filesystem): remove duplicate pifs cli wrapper
BukeLy May 27, 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
21 changes: 20 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
actions: read

jobs:
analyze:
analyze-actions:
name: Analyze (actions)
runs-on: ubuntu-latest
timeout-minutes: 30
Expand All @@ -32,3 +32,22 @@ jobs:
uses: github/codeql-action/analyze@v4
with:
category: /language:actions

analyze-python:
name: Analyze (python)
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: python
build-mode: none

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: /language:python
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@ __pycache__
.DS_Store
.env*
.venv/
.claude/
.codex/
logs/
examples/pifs_workspace/
examples/Benchmark/
Loading
Loading