mirror of https://github.com/garrytan/gstack.git
17 lines
611 B
TypeScript
17 lines
611 B
TypeScript
|
|
|
|
export function generateLakeIntro(): string {
|
|
return `If \`LAKE_INTRO\` is \`no\`: Before continuing, introduce the Completeness Principle.
|
|
Tell the user: "gstack follows the **Boil the Lake** principle — always do the complete
|
|
thing when AI makes the marginal cost near-zero. Read more: https://garryslist.org/posts/boil-the-ocean"
|
|
Then offer to open the essay in their default browser:
|
|
|
|
\`\`\`bash
|
|
open https://garryslist.org/posts/boil-the-ocean
|
|
touch ~/.gstack/.completeness-intro-seen
|
|
\`\`\`
|
|
|
|
Only run \`open\` if the user says yes. Always run \`touch\` to mark as seen. This only happens once.`;
|
|
}
|
|
|