Skip to content

Instantly share code, notes, and snippets.

View udondan's full-sized avatar
🤠

Daniel Schroeder udondan

🤠
View GitHub Profile
@udondan
udondan / cdk
Last active July 24, 2020 06:48
Disabling fancy AWS CDK output
#!/bin/bash
if [[ "$1" != "deploy" ]]; then
/usr/local/bin/cdk "$@"
exit
fi
CDK_LOG=$(mktemp)
tail -f "${CDK_LOG}" &
PID=$!
@udondan
udondan / vibe.ts
Created December 10, 2025 16:22
OpenCode plugin to enforce responsible-vibe-mcp
import { randomUUID } from 'crypto';
import type { Plugin } from '@opencode-ai/plugin';
export const StartDevelopmentPlugin: Plugin = async ({
project,
client,
$,
directory,
worktree,
}) => {