diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-28 23:18:41 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-28 23:18:41 +0300 |
| commit | 30f5bb3689e0ae55756159406350399f1c06db6b (patch) | |
| tree | 7001ae204ba46f54aa15605e0c72ce90ada769b4 | |
| parent | 557c4a848b6497106e50e49e0d53973454004f98 (diff) | |
sharable
| -rw-r--r-- | prompts/sharable.md | 36 | ||||
| -rw-r--r-- | prompts/skills/go-best-practices/SKILL.md | 4 | ||||
| -rw-r--r-- | prompts/skills/rocky-vm-setup/references/tmux.md | 2 |
3 files changed, 40 insertions, 2 deletions
diff --git a/prompts/sharable.md b/prompts/sharable.md index 46d7d29..1172ef1 100644 --- a/prompts/sharable.md +++ b/prompts/sharable.md @@ -1,2 +1,38 @@ # Sharable prompts +./commands/commit-and-push-to-git.md +./commands/create-command.md +./commands/create-context.md +./commands/delete-command.md +./commands/delete-context.md +./commands/delete-skill.md +./commands/load-context.md +./commands/update-command.md +./commands/update-context.md +./commands/update-skill.md +./commands/review-changes.md +./commands/are-you-sure.md +./commands/create-tasks.md +./commands/create-skill.md +./commands/work-on-tasks.md +./skills/100-go-mistakes +./skills/agent-task-management +./skills/auditing-code-quality +./skills/bash-best-practices +./skills/beyond-solid-principles +./skills/blog-writing-style +./skills/burning-audio-cd +./skills/c-best-practices +./skills/check-shopping-status +./skills/commit-skills +./skills/compose-blog-post +./skills/creating-cd-mixes +./skills/find-code-bugs +./skills/go-best-practices +./skills/increment-version-and-push +./skills/next-task +./skills/persona +./skills/purge-file-from-git +./skills/run-command +./skills/skill-maintenance +./skills/solid-principles diff --git a/prompts/skills/go-best-practices/SKILL.md b/prompts/skills/go-best-practices/SKILL.md index a81c231..758b545 100644 --- a/prompts/skills/go-best-practices/SKILL.md +++ b/prompts/skills/go-best-practices/SKILL.md @@ -90,7 +90,9 @@ Follow it for any Go verification. The Go-specific concrete actions: Use build tags or explicit package paths to skip the unbuildable parts. * **Slow suite within timeout:** `go test ./internal/foo/... -run <Pattern> -short`. Prefer `-short` (have slow tests honor `testing.Short()`), build - tags, or `-run` to exclude expensive integration/E2E tests. + tags, or `-run` to exclude expensive integration/E2E tests. Example: `mage + integrationTest` runs > 30m; scope to the changed package and skip that + target. ### Build system diff --git a/prompts/skills/rocky-vm-setup/references/tmux.md b/prompts/skills/rocky-vm-setup/references/tmux.md index c861d78..8c1a112 100644 --- a/prompts/skills/rocky-vm-setup/references/tmux.md +++ b/prompts/skills/rocky-vm-setup/references/tmux.md @@ -66,7 +66,7 @@ Without `default-terminal`, tmux defaults to `TERM=screen` (8 colors). For truecolor themes in helix, `COLORTERM=truecolor` must also be present inside tmux. tmux strips it by default via `update-environment`. Pass it through: ```sh -set -g update-environment '... TERM COLORTERM' +set -g update-environment 'DISPLAY SSH_ASKPASS SSH_AGENT_LAUNCHER SSH_AUTH_SOCK SSH_CONNECTION SSH_TTY WINDOWID XAUTHORITY TERM COLORTERM' ``` Without this, helix sees `COLORTERM=` and falls back to 256 colors only, breaking truecolor themes. |
