Skip to content

Commit 9f5621a

Browse files
committed
Add HALO monitor and Yahoo economic calendar
1 parent b56e10c commit 9f5621a

52 files changed

Lines changed: 4751 additions & 175 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.agents/skills/gstack-browse/SKILL.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
---
22
name: browse
3+
version: 1.1.0
34
description: |
45
Fast headless browser for QA testing and site dogfooding. Navigate any URL, interact with
56
elements, verify page state, diff before/after actions, take annotated screenshots, check
67
responsive layouts, test forms and uploads, handle dialogs, and assert element states.
78
~100ms per command. Use when you need to test a feature, verify a deployment, dogfood a
89
user flow, or file a bug with evidence. Use when asked to "open in browser", "test the
910
site", "take a screenshot", or "dogfood this".
11+
allowed-tools:
12+
- Bash
13+
- Read
14+
- AskUserQuestion
15+
1016
---
1117
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1218
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-careful/SKILL.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
---
22
name: careful
3+
version: 0.1.0
34
description: |
45
Safety guardrails for destructive commands. Warns before rm -rf, DROP TABLE,
56
force-push, git reset --hard, kubectl delete, and similar destructive operations.
67
User can override each warning. Use when touching prod, debugging live systems,
78
or working in a shared environment. Use when asked to "be careful", "safety mode",
89
"prod mode", or "careful mode".
10+
allowed-tools:
11+
- Bash
12+
- Read
13+
hooks:
14+
PreToolUse:
15+
- matcher: "Bash"
16+
hooks:
17+
- type: command
18+
command: "bash ${CLAUDE_SKILL_DIR}/bin/check-careful.sh"
19+
statusMessage: "Checking for destructive commands..."
920
---
1021
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1122
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-design-consultation/SKILL.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
name: design-consultation
3+
version: 1.0.0
34
description: |
45
Design consultation: understands your product, researches the landscape, proposes a
56
complete design system (aesthetic, typography, color, layout, spacing, motion), and
@@ -8,6 +9,15 @@ description: |
89
Use when asked to "design system", "brand guidelines", or "create DESIGN.md".
910
Proactively suggest when starting a new project's UI with no existing
1011
design system or DESIGN.md.
12+
allowed-tools:
13+
- Bash
14+
- Read
15+
- Write
16+
- Edit
17+
- Glob
18+
- Grep
19+
- AskUserQuestion
20+
- WebSearch
1121
---
1222
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1323
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-design-review/SKILL.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
name: design-review
3+
version: 2.0.0
34
description: |
45
Designer's eye QA: finds visual inconsistency, spacing issues, hierarchy problems,
56
AI slop patterns, and slow interactions — then fixes them. Iteratively fixes issues
@@ -8,6 +9,15 @@ description: |
89
Use when asked to "audit the design", "visual QA", "check if it looks good", or "design polish".
910
Proactively suggest when the user mentions visual inconsistencies or
1011
wants to polish the look of a live site.
12+
allowed-tools:
13+
- Bash
14+
- Read
15+
- Write
16+
- Edit
17+
- Glob
18+
- Grep
19+
- AskUserQuestion
20+
- WebSearch
1121
---
1222
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1323
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-document-release/SKILL.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
---
22
name: document-release
3+
version: 1.0.0
34
description: |
45
Post-ship documentation update. Reads all project docs, cross-references the
56
diff, updates README/ARCHITECTURE/CONTRIBUTING/CLAUDE.md to match what shipped,
67
polishes CHANGELOG voice, cleans up TODOS, and optionally bumps VERSION. Use when
78
asked to "update the docs", "sync documentation", or "post-ship docs".
89
Proactively suggest after a PR is merged or code is shipped.
10+
allowed-tools:
11+
- Bash
12+
- Read
13+
- Write
14+
- Edit
15+
- Grep
16+
- Glob
17+
- AskUserQuestion
918
---
1019
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1120
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-freeze/SKILL.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,28 @@
11
---
22
name: freeze
3+
version: 0.1.0
34
description: |
45
Restrict file edits to a specific directory for the session. Blocks Edit and
56
Write outside the allowed path. Use when debugging to prevent accidentally
67
"fixing" unrelated code, or when you want to scope changes to one module.
78
Use when asked to "freeze", "restrict edits", "only edit this folder",
89
or "lock down edits".
10+
allowed-tools:
11+
- Bash
12+
- Read
13+
- AskUserQuestion
14+
hooks:
15+
PreToolUse:
16+
- matcher: "Edit"
17+
hooks:
18+
- type: command
19+
command: "bash ${CLAUDE_SKILL_DIR}/bin/check-freeze.sh"
20+
statusMessage: "Checking freeze boundary..."
21+
- matcher: "Write"
22+
hooks:
23+
- type: command
24+
command: "bash ${CLAUDE_SKILL_DIR}/bin/check-freeze.sh"
25+
statusMessage: "Checking freeze boundary..."
926
---
1027
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1128
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-guard/SKILL.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,33 @@
11
---
22
name: guard
3+
version: 0.1.0
34
description: |
45
Full safety mode: destructive command warnings + directory-scoped edits.
56
Combines /careful (warns before rm -rf, DROP TABLE, force-push, etc.) with
67
/freeze (blocks edits outside a specified directory). Use for maximum safety
78
when touching prod or debugging live systems. Use when asked to "guard mode",
89
"full safety", "lock it down", or "maximum safety".
10+
allowed-tools:
11+
- Bash
12+
- Read
13+
- AskUserQuestion
14+
hooks:
15+
PreToolUse:
16+
- matcher: "Bash"
17+
hooks:
18+
- type: command
19+
command: "bash ${CLAUDE_SKILL_DIR}/../careful/bin/check-careful.sh"
20+
statusMessage: "Checking for destructive commands..."
21+
- matcher: "Edit"
22+
hooks:
23+
- type: command
24+
command: "bash ${CLAUDE_SKILL_DIR}/../freeze/bin/check-freeze.sh"
25+
statusMessage: "Checking freeze boundary..."
26+
- matcher: "Write"
27+
hooks:
28+
- type: command
29+
command: "bash ${CLAUDE_SKILL_DIR}/../freeze/bin/check-freeze.sh"
30+
statusMessage: "Checking freeze boundary..."
931
---
1032
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1133
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-investigate/SKILL.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,33 @@
11
---
22
name: investigate
3+
version: 1.0.0
34
description: |
45
Systematic debugging with root cause investigation. Four phases: investigate,
56
analyze, hypothesize, implement. Iron Law: no fixes without root cause.
67
Use when asked to "debug this", "fix this bug", "why is this broken",
78
"investigate this error", or "root cause analysis".
89
Proactively suggest when the user reports errors, unexpected behavior, or
910
is troubleshooting why something stopped working.
11+
allowed-tools:
12+
- Bash
13+
- Read
14+
- Write
15+
- Edit
16+
- Grep
17+
- Glob
18+
- AskUserQuestion
19+
hooks:
20+
PreToolUse:
21+
- matcher: "Edit"
22+
hooks:
23+
- type: command
24+
command: "bash ${CLAUDE_SKILL_DIR}/../freeze/bin/check-freeze.sh"
25+
statusMessage: "Checking debug scope boundary..."
26+
- matcher: "Write"
27+
hooks:
28+
- type: command
29+
command: "bash ${CLAUDE_SKILL_DIR}/../freeze/bin/check-freeze.sh"
30+
statusMessage: "Checking debug scope boundary..."
1031
---
1132
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1233
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-office-hours/SKILL.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
name: office-hours
3+
version: 2.0.0
34
description: |
45
YC Office Hours — two modes. Startup mode: six forcing questions that expose
56
demand reality, status quo, desperate specificity, narrowest wedge, observation,
@@ -10,6 +11,14 @@ description: |
1011
Proactively suggest when the user describes a new product idea or is exploring
1112
whether something is worth building — before any code is written.
1213
Use before /plan-ceo-review or /plan-eng-review.
14+
allowed-tools:
15+
- Bash
16+
- Read
17+
- Grep
18+
- Glob
19+
- Write
20+
- Edit
21+
- AskUserQuestion
1322
---
1423
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1524
<!-- Regenerate: bun run gen:skill-docs -->

.agents/skills/gstack-plan-ceo-review/SKILL.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
name: plan-ceo-review
3+
version: 1.0.0
34
description: |
45
CEO/founder-mode plan review. Rethink the problem, find the 10-star product,
56
challenge premises, expand scope when it creates a better product. Four modes:
@@ -9,6 +10,13 @@ description: |
910
or "is this ambitious enough".
1011
Proactively suggest when the user is questioning scope or ambition of a plan,
1112
or when the plan feels like it could be thinking bigger.
13+
benefits-from: [office-hours]
14+
allowed-tools:
15+
- Read
16+
- Grep
17+
- Glob
18+
- Bash
19+
- AskUserQuestion
1220
---
1321
<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly -->
1422
<!-- Regenerate: bun run gen:skill-docs -->

0 commit comments

Comments
 (0)