-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Add planning-with-files skill from OthmanAdi repository #260
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
Conversation
Added the planning-with-files skill that implements Manus-style context engineering workflow using persistent markdown files for planning, progress tracking, and knowledge storage. Features: - 3-file pattern (task_plan.md, notes.md, deliverable) - Attention manipulation through file-based planning - Error persistence and tracking - Goal tracking with checkboxes - Reduces context stuffing Location: cli-tool/components/skills/workflow-automation/planning-with-files/ Source: https://github.com/OthmanAdi/planning-with-files
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
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.
1 issue found across 4 files
Prompt for AI agents (all issues)
Check if these issues are valid — if so, understand the root cause of each and fix them.
<file name="cli-tool/components/skills/workflow-automation/planning-with-files/examples.md">
<violation number="1" location="cli-tool/components/skills/workflow-automation/planning-with-files/examples.md:19">
P2: Inconsistent checkbox state: Phase 1 has an unchecked box `[ ]` but a completion checkmark `✓`. To match the pattern in Examples 2 and 3, use `[x]` for completed phases.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
| Create a research summary on the benefits of morning exercise. | ||
|
|
||
| ## Phases | ||
| - [ ] Phase 1: Create this plan ✓ |
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.
P2: Inconsistent checkbox state: Phase 1 has an unchecked box [ ] but a completion checkmark ✓. To match the pattern in Examples 2 and 3, use [x] for completed phases.
Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At cli-tool/components/skills/workflow-automation/planning-with-files/examples.md, line 19:
<comment>Inconsistent checkbox state: Phase 1 has an unchecked box `[ ]` but a completion checkmark `✓`. To match the pattern in Examples 2 and 3, use `[x]` for completed phases.</comment>
<file context>
@@ -0,0 +1,202 @@
+Create a research summary on the benefits of morning exercise.
+
+## Phases
+- [ ] Phase 1: Create this plan ✓
+- [ ] Phase 2: Search and gather sources
+- [ ] Phase 3: Synthesize findings
</file context>
| - [ ] Phase 1: Create this plan ✓ | |
| - [x] Phase 1: Create this plan ✓ |
Added the planning-with-files skill that implements Manus-style context engineering
workflow using persistent markdown files for planning, progress tracking, and
knowledge storage.
Features:
Location: cli-tool/components/skills/workflow-automation/planning-with-files/
Source: https://github.com/OthmanAdi/planning-with-files
Summary by cubic
Adds a new “planning-with-files” skill that uses persistent markdown files for plans, notes, and deliverables to structure complex work and reduce context stuffing. Helps track progress, capture errors, and keep goals in focus across multi-step tasks.
Written for commit 93ae63a. Summary will update on new commits.