-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add persistent task management #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
sky-xo
wants to merge
32
commits into
main
Choose a base branch
from
tasks
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
98386ba
docs: design tasks
sky-xo 6b61777
feat(db): add tasks table schema
sky-xo a751856
feat(db): add Task type with Create and Get operations
sky-xo 81db69a
feat(db): add UpdateTask operation with partial updates
sky-xo b5c85cb
feat(db): add ListRootTasks, ListChildTasks, and CountChildren
sky-xo ede0a97
feat(db): add DeleteTask with recursive cascade to children
sky-xo b81519c
feat(cli): add task ID generation with 5-char hex and collision retry
sky-xo 8fe3b1f
feat(cli): add june task command with create/list/update/delete subco…
sky-xo 16211fe
feat(db): add migration for tasks table on existing installations
sky-xo a58df34
test: add task workflow E2E test and update docs
sky-xo a9d7905
docs: update implementation progress - all tasks complete
sky-xo 8cc83b1
docs: add persistent tasks section to README
sky-xo 096f484
fix: address PR review comments for task feature
sky-xo d0a6944
fix: hide deleted tasks from direct ID lookup and use errors.Is
sky-xo 245f654
fix: improve test reliability and add UpdateTask empty title validation
sky-xo 745d444
docs: add June plugin architecture design
sky-xo 2a5b032
docs: fresheyes fixes for plugin design
sky-xo fc4d0c6
docs: add June plugin implementation plan
sky-xo 40d494b
docs: update implementation plan with skill decisions
sky-xo 8daa824
docs: address fresheyes review findings
sky-xo c360455
feat(cli): add --note flag to task create
sky-xo 8a27cc1
feat: add plugin infrastructure for Claude Code
sky-xo 20b9078
feat: add june-skills directory with base skills
sky-xo 23ce27c
feat(skills): add fresheyes review and june tasks to writing-plans
sky-xo db9d3ba
feat(skills): add model selection and june tasks to subagent-driven-d…
sky-xo 01d2ef0
feat(skills): add june task integration to executing-plans
sky-xo 9a201c9
feat: assemble skills from superpowers + june overrides
sky-xo 7b74e9a
docs: add plugin documentation
sky-xo e4d1c25
docs: add plugin follow-up with open questions about task persistence…
sky-xo 92ce02c
docs: add --full flag idea for complete task tree dump
sky-xo 91167c1
feat: add marketplace.json for plugin distribution
sky-xo 27732f7
docs: add marketplace installation instructions to README
sky-xo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| { | ||
| "name": "june", | ||
| "owner": { | ||
| "name": "Sky" | ||
| }, | ||
| "plugins": [ | ||
| { | ||
| "name": "june", | ||
| "source": "./", | ||
| "description": "Task-aware workflow skills with persistent state", | ||
| "version": "1.0.0" | ||
| } | ||
| ] | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "name": "june", | ||
| "description": "Task-aware workflow skills with persistent state", | ||
| "version": "1.0.0" | ||
| } |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| .worktrees/ | ||
| .gocache/ | ||
| .skill-cache/ | ||
|
|
||
| # Test artifacts | ||
| *.test | ||
|
|
||
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion | 🟠 Major
Clarify task scoping behavior.
The statement "Tasks are scoped to the current git repo and branch" is incomplete and potentially misleading. Only task creation and root listing (
june task listwithout an ID) are scoped to the current repo and branch. ID-based operations (june task list <id>,june task update <id>,june task delete <id>) are intentionally global and work across branches, allowing users to maintain task visibility when switching branches.Based on learnings, this design choice enables cross-branch task management.
📝 Suggested clarification
📝 Committable suggestion
🤖 Prompt for AI Agents