summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--prompts/sharable.md36
-rw-r--r--prompts/skills/go-best-practices/SKILL.md4
-rw-r--r--prompts/skills/rocky-vm-setup/references/tmux.md2
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.