Releases: OurThinkTank/founders-os
Release list
v1.4.0: Pick up from your own checkpoint
v1.4.0: Pick up from your own checkpoint
On a shared team project, "pick up from the last checkpoint" now returns your last checkpoint and handoff instead of whichever teammate checkpointed most recently.
Heads up: a default changed
checkpoint and get_project_history now default to showing only the checkpoints you authored. Previously they returned the team's most recent checkpoint, so on a shared database you could resume a teammate's session by accident. This is backward-compatible at the API level (existing calls still work), but the default result changes for teams. Solo users see no difference. To get the whole team's view, pass author: "anyone".
What's new
authorparameter oncheckpointandget_project_history("me"|"anyone", default"me")."me"scopes to the checkpoints you created;"anyone"returns the team's. Checkpoints are stored at org scope but carry the real author, so this filters oncreated_bywithout changing visibility.created_byis now returned on checkpoint results, so entries are attributable, plus aprevious_checkpoint_authorfield on thecheckpointresponse.- No accidental fallback. If you have no checkpoint of your own for a project yet, you get a clean empty result rather than a teammate's.
What did not change
- Handoff-doc numbering stays team-wide. The per-day
-NNsequence still counts every checkpoint that day across the whole team, so handoff filenames in a shared repo never collide.authoronly affects which checkpoint you resume, never the sequence number.
Upgrade
Make sure your MCP config pins @latest, then fully restart your AI app so it re-resolves:
npx -y @ourthinktank/founders-os@latest
No database migration is required for this release.
v1.3.0: Checkpoints - a queryable timeline for every work session
v1.3.0: Checkpoints - a queryable timeline for every work session
Checkpoints turn the end of a work session into a durable, per-project record you can read back later. Say "checkpoint" (or "wrap up this session") and Founders OS walks the agent through summarizing the session, capturing repo changes as commit links, and storing a structured record, then points the next session at it. No new database entity and no schema migration: checkpoints ride the existing memory store.
Highlights
checkpointtool. The end-of-session bookend toget_session_start. It returns an ordered procedure (summarize, capture repo changes as commit links, store the record, propose follow-up tasks, write the handoff doc), the exact memory call to make, and the previous checkpoint so unfinished items carry forward.get_project_historytool. A chronological, newest-first timeline of a project's checkpoints. It complements semantic recall with a straight "what happened, in order" view. Passkind: "all"to see everything, not just checkpoints.- Session memories carry a
kind.memory_storeandmemory_summarize_and_storenow accept akind(e.g."checkpoint"), which is what the timeline filters on. - Sortable handoff-doc naming. Suggested handoff files now end with a two-digit, per-day sequence:
docs/<project>-session-handoff-YYYY-MM-DD-NN.md.01is the first session that day,02the second, resetting daily, so multiple handoffs on one day sort in true chronological order. Feature docs from the same session share the number so they group together. - Works with or without the cowork plugin. The checkpoint verb is documented in the server instructions and
get_usage_guide, so any Founders OS user gets it.
Improvements
- Smarter version diagnostics.
get_versionand the startup version check now reason correctly about pre-release (rc) versions, so a machine running a release candidate is reported accurately instead of looking out of date.
Maintenance
- Added a prerelease publish workflow and a
RELEASING.mdguide. - Added
glama.json, refreshed README / SECURITY / CODE_OF_CONDUCT for the now-public repo, and expanded the test suite (checkpoint procedure and handoff-naming coverage, rc-aware semver tests).
Upgrade
Make sure your MCP config pins @latest, then fully restart your AI app so it re-resolves:
npx -y @ourthinktank/founders-os@latest
No database migration is required for this release.
FoundersOS initial release
Welcome to FoundersOS.