Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions conductor-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -392,15 +392,15 @@ case "$ENV_CHOICE" in
echo "πŸ“‹ Next Steps:"
echo ""
echo "1. Open Conductor app:"
echo " ${GREEN}open -a Conductor${NC}"
echo -e " ${GREEN}open -a Conductor${NC}"
echo ""
echo "2. Add this project as a workspace:"
echo " β€’ In Conductor: ${YELLOW}File β†’ Add Workspace${NC}"
echo " β€’ Select directory: ${GREEN}$(pwd)${NC}"
echo -e " β€’ In Conductor: ${YELLOW}File β†’ Add Workspace${NC}"
echo -e " β€’ Select directory: ${GREEN}$(pwd)${NC}"
echo ""
echo "3. Start working with this prompt:"
echo ""
echo " ${YELLOW}\"Check available tasks and start working on the highest priority one.\"${NC}"
echo -e " ${YELLOW}\"Check available tasks and start working on the highest priority one.\"${NC}"
echo ""
echo "πŸ’‘ Pro Tips:"
echo " β€’ Conductor will handle task claiming and worktree setup automatically"
Expand Down Expand Up @@ -454,7 +454,7 @@ case "$ENV_CHOICE" in
else
echo ""
echo "πŸ“‹ To start an agent later:"
echo " ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
echo -e " ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
fi
;;

Expand Down Expand Up @@ -482,13 +482,13 @@ if [ "$ENV_CHOICE" != "1" ]; then
echo " βœ… Specialized roles: ${CONFIGURED_ROLES}"
echo " βœ… Demo tasks ready to claim"
echo ""
echo "${YELLOW}Quick Start Commands:${NC}"
echo " πŸ“‹ View tasks: ${GREEN}cat .conductor/workflow-state.json | jq '.available_tasks'${NC}"
echo " πŸ€– Start agent: ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
echo " πŸ“ Create task: ${GREEN}gh issue create -l 'conductor:task'${NC}"
echo " πŸ”§ Adjust config: ${GREEN}$EDITOR .conductor/config.yaml${NC}"
echo -e "${YELLOW}Quick Start Commands:${NC}"
echo -e " πŸ“‹ View tasks: ${GREEN}cat .conductor/workflow-state.json | jq '.available_tasks'${NC}"
echo -e " πŸ€– Start agent: ${GREEN}bash .conductor/scripts/bootstrap.sh dev${NC}"
echo -e " πŸ“ Create task: ${GREEN}gh issue create -l 'conductor:task'${NC}"
echo -e " πŸ”§ Adjust config: ${GREEN}$EDITOR .conductor/config.yaml${NC}"
echo ""
echo "${YELLOW}Your first PR will automatically get AI code reviews!${NC}"
echo -e "${YELLOW}Your first PR will automatically get AI code reviews!${NC}"
echo ""
echo "πŸ“š Documentation: https://github.com/ryanmac/code-conductor"
echo "πŸ› Report issues: https://github.com/ryanmac/code-conductor/issues"
Expand Down
Loading