byte, int, float32, float64, string, rune (alias for int32), bool
Builder
var sb strings.Builder| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Circle of Fifths</title> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@300;400;500&family=Outfit:wght@200;300;400;500;600&display=swap'); | |
| :root { |
| #!/usr/bin/env bash | |
| # extract-insights.sh — Claude Code hook to persist "✻ Insight" blocks | |
| # | |
| # Usage: | |
| # Hook mode (SessionEnd): stdin receives JSON with transcript_path, session_id, cwd | |
| # CLI mode (for testing): ./extract-insights.sh /path/to/session.jsonl | |
| # | |
| # Dependencies: | |
| # Required: jq (JSON parsing), awk, sed, grep (text processing) | |
| # |