Skip to content

Instantly share code, notes, and snippets.

View seabass011's full-sized avatar

Sebastian J. Heyneman seabass011

View GitHub Profile
@seabass011
seabass011 / README.md
Last active February 1, 2026 22:54
iOS Simulator Bridge for AI Agents - gives agents eyes into mobile screens

Simctl Bridge

REST API that wraps xcrun simctl so agents can see iOS Simulator screens and catch visual bugs the DOM tree hides.

Why

Playwright gives agents browser eyes. This gives them mobile eyes.

The agent captures raw framebuffer screenshots from the iOS Simulator, bypassing the DOM entirely. CSS breaks that are invisible in Chrome DevTools become visible.

@seabass011
seabass011 / SKILL.md
Created January 29, 2026 03:32
Tasklet Architect - Design safer Tasklet.ai agents with constitution and permission gates
name description
tasklet-architect
Helps users design safer Tasklet.ai agents by automatically applying the "Epistemic Humility" constitution and permission gates for high-stakes actions.

Tasklet Architect Skill

You are an expert at designing autonomous agents for Tasklet.ai. Your goal is to translate a user's natural language request (e.g., "Find leads and email them") into a production-ready Tasklet definition that is safe and constitution-aligned.

How to Create a Tasklet on Tasklet.ai

@seabass011
seabass011 / github_activity_proof_complete.md
Created November 15, 2025 05:19
Complete GitHub Activity Proof - 234 commits, 1M+ lines added in 7 days

COMPLETE GitHub Activity Proof - Last 7 Days

Generated: Fri Nov 14 21:16:51 PST 2025 Repository: git@github.com:joinnova-ci/autoflow-platform.git Branch: feat/agent-rewrite Author: Sebastian Heyneman sebastian@joinnova.com

Executive Summary

| Metric | Value |

@seabass011
seabass011 / cli_quickstart.sh
Created September 11, 2025 19:33
Nova CI Rescue Quickstart
#!/usr/bin/env bash
# Nova CI-Rescue CLI Quickstart - 10 Broken Tests with GPT-5 High Reasoning
# Quick demonstration of Nova fixing all 10 broken calculator functions
#
# Usage: ./cli_quickstart.sh [--regular|--verbose]
# Duration: ~3-4 minutes
# Requirements: Python 3.8+, OpenAI API key
set -euo pipefail
@seabass011
seabass011 / cli_quickstart.sh
Created September 11, 2025 19:32
Nova CI Rescue Quickstart
#!/usr/bin/env bash
# Nova CI-Rescue CLI Quickstart - 10 Broken Tests with GPT-5 High Reasoning
# Quick demonstration of Nova fixing all 10 broken calculator functions
#
# Usage: ./cli_quickstart.sh [--regular|--verbose]
# Duration: ~3-4 minutes
# Requirements: Python 3.8+, OpenAI API key
set -euo pipefail
@seabass011
seabass011 / nova_demos_master.md
Created September 9, 2025 16:38
Nova CI-Rescue - All Demo Scripts

Nova CI-Rescue Demo Scripts πŸš€

Software that fixes software

Quick Run Commands

Just copy and paste these one-liners:

Demo A - Basic Experience (3 tests)

@seabass011
seabass011 / demo_c.sh
Created September 9, 2025 16:38
Nova Demo C - Advanced CI with iteration limits
#!/usr/bin/env bash
# Nova CI-Rescue β€” CI Mode & Iteration Demo (Beautiful, presenter-ready)
# Focus: CI flow, branch safety, iteration limits, and clear status reporting
set -Eeuo pipefail
# Unset any existing GitHub tokens to ensure we use our hardcoded PAT
unset GH_TOKEN
unset GITHUB_TOKEN
@seabass011
seabass011 / demo_b.sh
Created September 9, 2025 16:38
Nova Demo B - CI Mode with GitHub PR
#!/usr/bin/env bash
# Nova CI-Rescue β€” CI Mode Demo (Steve Jobs-level beautiful)
# Shows end-to-end CI flow: tests fail β†’ Nova auto-fix β†’ PR opens β†’ tests pass
set -Eeuo pipefail
# Unset any existing GitHub tokens to ensure we use our hardcoded PAT
unset GH_TOKEN
unset GITHUB_TOKEN
@seabass011
seabass011 / demo_a.sh
Created September 9, 2025 16:38
Nova Demo A - Fix 3 failing tests (add, subtract, multiply)
#!/usr/bin/env bash
# Nova CI-Rescue β€” The Demo That Changes Everything
# Crafted with obsessive attention to detail
set -Eeuo pipefail
# Parse command line arguments
VERBOSE=false
AUTO_YES=false
for arg in "$@"; do
@seabass011
seabass011 / NOVA_DEMO_INSTRUCTIONS.md
Created September 9, 2025 16:25
Nova CI-Rescue Demo Launcher - Run all demos with one command

πŸš€ Nova CI-Rescue Demo - Quick Start Guide

One Command to Rule Them All

Just run this in your terminal:

curl -sL https://gist.github.com/seabass011/LAUNCHER_GIST_ID/raw | bash