feat: add session-workflow skill and TODO.md for multi-session AI development#15
Merged
feat: add session-workflow skill and TODO.md for multi-session AI development#15
Conversation
…elopment Introduces a session-based development pattern that allows complex projects to be built across multiple AI sessions, with any AI able to continue from where the last session stopped. - Add .opencode/skills/session-workflow/SKILL.md: full session start/end protocol, TODO.md format spec, status conventions and examples - Add TODO.md template: phased roadmap with Session Log and handoff notes - Update developer.md: session start/end protocol at top of agent instructions - Update AGENTS.md: session-based development section, session-workflow skill listed - Update README.md: multi-session development section, TODO.md in project structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
TODO.mdas shared statesession-workflowskill with a complete start/end protocol,TODO.mdformat specification, task status conventions, and worked examplesTODO.mdtemplate (8 phases, Session Log table, Notes for Next Session section) so every generated project starts with a clear roadmapdeveloperagent (session start/end protocol at the top of instructions) and documents it inAGENTS.mdandREADME.mdChanges
.opencode/skills/session-workflow/SKILL.mdTODO.md.opencode/agents/developer.mdAGENTS.mdREADME.mdWhy
Large projects cannot be completed in a single AI context window. This pattern makes it practical to build them incrementally: each session reads
TODO.md, picks up one phase, and leaves a clean handoff for the next session — whether that's the same AI or a different one.