Skip to content

Instantly share code, notes, and snippets.

View blocktator's full-sized avatar

Ben Wagaman blocktator

  • Housecall Pro
  • Columbus, OH
View GitHub Profile
@blocktator
blocktator / SKILL.md
Created March 27, 2026 19:57
Architecture Board Review — a Claude Code skill that convenes a virtual review board of expert personas to stress-test your design docs
name arch-board
description Convene a virtual architecture review board with multiple expert personas who concurrently review project docs and generate critical questions and concerns, logged to an architecture-review folder.

Architecture Board Review

Convene a virtual architecture review board. Multiple expert personas review the project's design and documentation concurrently, each generating focused questions and concerns from their unique perspective. All reviews are written to an architecture-review/ folder alongside the project docs.

Usage

@blocktator
blocktator / SKILL.md
Last active March 13, 2026 17:43
Claude Code: create-execution-plan skill
Error in user YAML: (<unknown>): mapping values are not allowed in this context at line 2 column 286
---
name: create-execution-plan
description: Create an execution plan for a feature or technical initiative. Creates a Confluence page under the Execution Plans parent, then links it from the Jira ticket description. Use when planning implementation work, architecture changes, or any non-trivial feature. Triggers on: create execution plan, write execution plan, plan this out, document the plan, create a plan doc, setup execution plans, set up execution plans for a space.
---

Create Execution Plan

Creates a Confluence execution plan page and links it from the associated Jira ticket.

When to Run

@blocktator
blocktator / alias_matchers.md
Created May 21, 2020 12:08 — forked from JunichiIto/alias_matchers.md
List of alias matchers in RSpec 3

This list is based on aliases_spec.rb.

You can see also Module: RSpec::Matchers API.

matcher aliased to description
a_truthy_value be_truthy a truthy value
a_falsey_value be_falsey a falsey value
be_falsy be_falsey be falsy
a_falsy_value be_falsey a falsy value
@blocktator
blocktator / gist:4770618
Created February 12, 2013 15:23
Uninstall all my gems (with script/bundle)
script/bundle exec gem list | sed -e 's/(.*)$/ /' -e 's/^/script\/bundle exec gem uninstall -a /' | bash
@blocktator
blocktator / gist:1373189
Last active September 28, 2015 02:57
Uninstall all of my system gems
gem list | sed -e 's/(.*)$/ -a/' -e 's/^/sudo gem uninstall /' | bash