Skip to content

Instantly share code, notes, and snippets.

View jwynia's full-sized avatar

J Wynia jwynia

View GitHub Profile
@jwynia
jwynia / checklist.md
Last active July 11, 2025 19:42
Claude command for /checklist to be run at the end of a task to make sure everything was done before you move on. Goes in .claude/commands/checklist.md

Quick Checklist

We're about to close this session and lose anything not captured that we might need later. Are all of the following done?

  • Context network task entry exists and is updated
  • All architectural decisions are documented
  • Implementation approach is recorded
  • Discovered relationships are mapped
  • Discovery records created for all significant findings
  • Location indexes updated with new discoveries
@jwynia
jwynia / retrospective.md
Last active July 13, 2025 19:38
Claude Code command for /retrospective that reviews a task for lessons learned in a context network project. Goes in /.claude/commands/retrospective.md

Context Network Retrospective Agent Prompt

Task Context

You are conducting a retrospective analysis after completing a task. Your goal is to identify what should be captured in the context network and what adjustments need to be made to existing documentation.

Critical Domain Boundary Reminder

Remember the distinction:

  • Context Network: Planning documents, architecture decisions, design discussions, implementation strategies
class Program
{
static void Main(string[] args)
{
var twilioSid = "GOGETYOURS";
var twilioToken = "GOGETYOURS";
var mapsApiKey = "GOGETYOURS";
GoogleSigned.AssignAllServices(new GoogleSigned(mapsApiKey));
while (true)
@jwynia
jwynia / FormulaConsole.cs
Last active August 29, 2015 14:26
Extended Driving Commute Formula
//Sample rate of $75 for demonstration purposes.
var rate = 75;
var nominalDayHours= 8;
var driveTimeEachWay = 62;
var allowedTimeEachWay = 30;
//2015 IRS rate of $0.575 per mile
decimal irsMileage = 0.575M;
decimal overage = (driveTimeEachWay - allowedTimeEachWay) * 2;
decimal mileageAdjustment = overage * irsMileage;
decimal fractionOfHour = overage/60;