Welcome to your new everything-app project! This project was created using CodeGuide CLI and comes with a structured task management system to guide your development process.
The first thing you should do is look at the tasks that have been generated for your project:
codeguide task listThis will show you all the available tasks, organized by status (pending, in_progress, completed).
Choose a task from the list and begin working on it:
codeguide task update <task_id> --status in_progressReplace <task_id> with the actual ID of the task you want to work on.
As you work on tasks, update your progress:
codeguide task update <task_id> "your progress notes"When you complete a task, mark it as completed:
codeguide task update <task_id> --status completedImportant: After completing a task, immediately continue to the next available task. Keep this cycle going until all tasks are completed:
- Complete current task → Mark as completed
- Choose next task → Pick from remaining pending tasks
- Start next task → Set status to in_progress
- Repeat → Continue until no tasks remain
This continuous workflow ensures steady progress and prevents stagnation between tasks.
- Project ID: 30dd46ec-a9b4-4813-8faa-cc3644b9ca90
- Created with: CodeGuide CLI
- Documentation: Check the
documentation/folder for generated project documentation - AI Guidelines: See
AGENTS.mdfor AI development agent guidelines - Tasks Data: See
tasks.jsonfor project task structure and information
- Review Tasks: Always start by reviewing available tasks
- Plan Your Work: Choose tasks that make sense to work on next
- Start Tasks: Use
codeguide task update <task_id> --status in_progressto begin work on a task - Update Progress: Keep your task progress updated as you work
- Complete Tasks: Mark tasks as completed when finished
- Continue to Next Task: After completing a task, immediately start the next available task until all tasks are done
- Generate Documentation: Use
codeguide generatefor new features
Once you've reviewed all the documentation and are ready to start development, you should clean up the project structure:
-
Move essential files to the project root:
# Move documentation folder to project root mv documentation/ ../ # Move AGENTS.md to project root mv AGENTS.md ../ # Move codeguide.json to project root mv codeguide.json ../ # Move tasks.json to project root mv tasks.json ../ # Navigate to the parent directory cd ..
-
Remove the now-empty subdirectory:
# Remove the subdirectory (replace with actual directory name) rmdir <project-subdirectory-name>
-
Delete this instructions.md file:
rm instructions.md
project-root/
├── documentation/ # Project documentation
├── AGENTS.md # AI development guidelines
├── codeguide.json # CodeGuide project configuration
├── tasks.json # Project tasks data
└── (your source code files)
- Cleaner project structure - No unnecessary nested directories
- Better navigation - All files are at the project root
- Professional setup - Matches standard project layouts
- Removes setup artifacts - No temporary instruction files
- Use
codeguide --helpfor general help - Use
codeguide <command> --helpfor command-specific help - Use
codeguide task list --helpfor task management help
This file was generated by CodeGuide CLI on 2025-10-21T14:12:03.469Z