Skip to content

Commit bfb2a28

Browse files
committed
fix: remove ASCII borders from suggested prompt in quick-install.sh for easier copying
1 parent a0154f2 commit bfb2a28

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

quick-install.sh

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -326,21 +326,19 @@ show_summary() {
326326
echo ""
327327
echo " After opening your IDE, ask the AI to index your project:"
328328
echo ""
329-
echo -e "${YELLOW} ┌─────────────────────────────────────────────────────────────┐${RESET}"
330-
echo -e "${YELLOW}${BLUE}Suggested AI Prompt:${YELLOW}${RESET}"
331-
echo -e "${YELLOW} ├─────────────────────────────────────────────────────────────┤${RESET}"
332-
echo -e "${YELLOW}${RESET} Please use the RagCode MCP tool 'index_workspace' to ${YELLOW}${RESET}"
333-
echo -e "${YELLOW}${RESET} index this project for semantic code search. Provide ${YELLOW}${RESET}"
334-
echo -e "${YELLOW}${RESET} the file_path parameter pointing to any file in this ${YELLOW}${RESET}"
335-
echo -e "${YELLOW}${RESET} workspace. Once indexing completes, I'll be able to use ${YELLOW}${RESET}"
336-
echo -e "${YELLOW}${RESET} search_code, get_function_details, and other tools to ${YELLOW}${RESET}"
337-
echo -e "${YELLOW}${RESET} help you navigate and understand the codebase. ${YELLOW}${RESET}"
338-
echo -e "${YELLOW}${RESET} ${YELLOW}${RESET}"
339-
echo -e "${YELLOW}${RESET} ${GREEN}Note:${RESET} Indexing runs in the background and may take a ${YELLOW}${RESET}"
340-
echo -e "${YELLOW}${RESET} few minutes depending on project size. You can start ${YELLOW}${RESET}"
341-
echo -e "${YELLOW}${RESET} using search immediately - results will improve as ${YELLOW}${RESET}"
342-
echo -e "${YELLOW}${RESET} indexing progresses. ${YELLOW}${RESET}"
343-
echo -e "${YELLOW} └─────────────────────────────────────────────────────────────┘${RESET}"
329+
echo -e " ${BLUE}Suggested AI Prompt:${RESET}"
330+
echo ""
331+
echo " Please use the RagCode MCP tool 'index_workspace' to"
332+
echo " index this project for semantic code search. Provide"
333+
echo " the file_path parameter pointing to any file in this"
334+
echo " workspace. Once indexing completes, I'll be able to use"
335+
echo " search_code, get_function_details, and other tools to"
336+
echo " help you navigate and understand the codebase."
337+
echo ""
338+
echo -e " ${GREEN}Note:${RESET} Indexing runs in the background and may take a"
339+
echo " few minutes depending on project size. You can start"
340+
echo " using search immediately - results will improve as"
341+
echo " indexing progresses."
344342
echo ""
345343
echo -e " ${BLUE}Repeat this for each project you want to work with.${RESET}"
346344
echo ""

0 commit comments

Comments
 (0)