flowchart TD
A[Officeholder wants to run for another office] --> B{What office do they currently hold?}
B --> C[Federal Office\ne.g. US Representative\nUS Senator]
B --> D[State Office\ne.g. TX State Rep\nCA Assembly Member]
C --> E{What are they running for?}
D --> F{What are they running for?}Output styles directly modify Claude Code's system prompt. From the official docs:
- All output styles strip the "efficient output" instructions (be concise, etc.)
- Custom output styles additionally strip the coding instructions (test verification, tool usage guidance, security patterns) — unless
keep-coding-instructions: trueis set in frontmatter - The custom style content gets appended to the end of what remains of the system prompt
- Periodic reminders fire during conversation to reinforce the style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import marimo | |
| __generated_with = "0.14.15" | |
| app = marimo.App(width="medium") | |
| @app.cell | |
| def __(): | |
| import marimo as mo | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 127.0.0.0.1 ingest.sentry.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://github.com/termstandard/colors | |
| perl ./color-spaces.pl | |
| https://share.cleanshot.com/0msn6Rz6 | |
| 24-bit-color.sh | |
| https://share.cleanshot.com/vd4rfdF9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env fish | |
| # Strict Mode and Tracing | |
| set -e | |
| set -u | |
| if set -q TRACE; and test "$TRACE" = 1 | |
| set -x | |
| end | |
| # Help Message |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # cat life.txt | fml.py -n 10 | |
| import sys | |
| import argparse | |
| def process_stream(n): | |
| lines = [] | |
| for line in sys.stdin: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import re | |
| import sqlite3 | |
| import click | |
| import json | |
| import os | |
| def remove_periods(text): | |
| return re.sub(r'\.+', ' ', text).strip() | |
| def lowercase_sanitize(value): |
NewerOlder