Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bcfb83e
feat: add tweakcn ui theming
cwilson613 May 16, 2026
f20dd0a
feat: add flynt app icon
cwilson613 May 16, 2026
191cb04
feat: add obsidian parity foundations
cwilson613 May 18, 2026
12ec8e4
feat: add publication authoring workflow
cwilson613 May 18, 2026
83a718a
feat: add project bookmarks and saved searches
cwilson613 May 19, 2026
c19fc17
feat: add project lenses
cwilson613 May 19, 2026
3ea618e
fix: harden project lens execution
cwilson613 May 19, 2026
4c35aaf
feat: add note hover previews
cwilson613 May 19, 2026
d5ee917
docs: add obsidian parity validation plan
cwilson613 May 19, 2026
83628a5
fix(omegon): persist explicit ACP launch defaults
cwilson613 May 20, 2026
16e79fd
fix(omegon): derive explicit ACP defaults from profile config
cwilson613 May 20, 2026
28eec5a
fix(agent): throttle embedded streaming renders
cwilson613 May 20, 2026
3514563
fix(agent): preserve streaming delta order
cwilson613 May 20, 2026
b4b7213
feat(research): add source note groundwork
cwilson613 May 20, 2026
7454793
docs(research): define source task canvas projections
cwilson613 May 20, 2026
fd11c89
docs(design): lay out eidolon viewer integration
cwilson613 May 20, 2026
bd20614
docs(research): define portable analysis bundles
cwilson613 May 20, 2026
8acaa3e
docs(release): define 0.11.0 milestone
cwilson613 May 22, 2026
84e5b1e
feat(agent): align ACP defaults with Omegon 0.23
cwilson613 May 23, 2026
21872a6
feat(storage): move default index state out of projects
cwilson613 May 24, 2026
40b0d68
feat(storage): add tracked index snapshot toggle
cwilson613 May 24, 2026
9ee46c7
test(storage): cover tracked index snapshots
cwilson613 May 24, 2026
d25e79d
test(core): update default template idempotence expectation
cwilson613 May 24, 2026
cd88018
ci: raise lipstyk diff threshold for legacy PR
cwilson613 May 24, 2026
54b86ef
chore: bump version to 0.11.1
cwilson613 May 24, 2026
ea1ac3e
feat(storage): prompt before tracking existing repos
cwilson613 May 24, 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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,4 @@ jobs:
with:
paths: "crates/"
threshold: 1000
diff-threshold: 400
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ result
.vscode/
*.swp
*.swo
__pycache__/
*.pyc

# iOS/macOS signing keys & profiles
*.p8
Expand Down
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Changelog

## 0.11.1 — 2026-05-24

### Fixed
- Updated the source-template idempotence test to match the fourth default template added in 0.11.0.
- Raised the lipstyk PR diff threshold for the existing feature branch so CI gates the release branch consistently while legacy findings remain visible in SARIF.

## 0.11.0 — 2026-05-22

### Added
- **Research workspace groundwork** — source-note templates and Flynt agent surface guidance now establish the first source-backed research workspace path.
- **Portable analysis bundle design** — documented provenance-preserving bundles with source manifests, access scope, authorization notes, artifacts, and analysis outputs.
- **Source task/canvas projection design** — documented how source-backed artifacts project into task and canvas workflows without duplicating source truth.
- **Eidolon embedded viewer integration design** — defined the boundary for reviewing captured/source-backed evidence through an embedded viewer.
- **Omegon 0.23 ACP alignment** — Flynt now preserves Omegon-owned profile defaults on ACP session startup and only replays explicit operator-selected config overrides.
- **Storage policy first pass** — Flynt now documents the portable-metadata/local-runtime-state boundary, defaults new index databases outside the opened content root instead of under `.flynt-local/`, and exposes an opt-in tracked JSONL index snapshot for repos that should carry portable metadata.

### Fixed
- **Flynt surface guide execution test** — the agent extension test now calls the executable `execute_flynt_surface_guide` RPC while still advertising the user-facing `flynt_surface_guide` tool.

## 0.10.8 — 2026-05-20

### Fixed
- **Embedded Omegon streaming performance** — agent text/thought deltas are now
batched before updating the chat rail, reducing Dioxus re-renders and WebView
repaint pressure while responses stream.
- **Agent chat scroll smoothness** — sticky-bottom scrolling is coalesced through
`requestAnimationFrame` instead of forcing layout on every DOM mutation.
- **WSL responsiveness while the agent is busy** — the actively streaming
assistant message renders as plain text until completion, then switches to the
existing markdown renderer once the response is idle.
- **Streaming order preservation** — adversarial review found that separate text
and thought buffers could reorder interleaved ACP deltas at flush boundaries;
batching now preserves delta order while still coalescing adjacent chunks.

## 0.10.5 — 2026-05-16

### Added
Expand Down
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.10.5"
version = "0.11.1"
edition = "2024"
authors = ["Black Meridian"]

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,10 @@ cargo test -p flynt-core -p flynt-store
| [demo.flynt.styrene.io](https://demo.flynt.styrene.io) | Demo project (clone this to get started) |
| [demo.flynt.styrene.io/graph](https://demo.flynt.styrene.io/graph/) | Interactive knowledge graph |

## Product Direction

- [Obsidian feature parity pass](design/obsidian-feature-parity.md) tracks the practical migration gaps Flynt needs to close while preserving its own project, task, drawing, sync, and agent model.

---

## Ecosystem
Expand Down
Loading
Loading