You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Build the JSON request with jq to handle escaping
36
-
jq -n \
37
-
--arg model "claude-sonnet-4-20250514" \
38
-
--arg prompt "You are a web developer creating a GitHub Pages site.
34
+
# Build the prompt
35
+
cat > full_prompt.txt <<'EOF'
36
+
You are a web developer creating a GitHub Pages site.
39
37
40
38
Here are the requirements:
41
39
42
-
$PROMPT_CONTENT
40
+
EOF
41
+
cat docs/site-prompt.md >> full_prompt.txt
42
+
cat >> full_prompt.txt <<'EOF'
43
+
44
+
Please generate a complete, production-ready index.html file following all requirements. Output ONLY the HTML code, no explanations or markdown code blocks.
45
+
EOF
43
46
44
-
Please generate a complete, production-ready index.html file following all requirements. Output ONLY the HTML code, no explanations or markdown code blocks." \
0 commit comments