Skip to content

Instantly share code, notes, and snippets.

View macedot's full-sized avatar

Thiago Macedo macedot

View GitHub Profile
@glaucia86
glaucia86 / 04-release-readiness-pass.md
Created March 18, 2026 18:32
04-release-readiness-pass/SKILL.md

name: release-readiness-pass description: Perform a final release-readiness review to determine whether the project is ready for merge, handoff, staging, or production, then generate RELEASE_READINESS.md. version: 1.0.0 phase: release-readiness requires:

  • QUESTIONS.md
  • IMPLEMENTATION_NOTES.md
  • VERIFICATION.md produces: RELEASE_READINESS.md
@glaucia86
glaucia86 / 03-implementation-verification-pass.md
Created March 18, 2026 18:32
03-implementation-verification-pass/SKILL.md

name: implementation-verification-pass description: Perform a post-implementation verification pass to validate that approved changes were implemented correctly, consistently, and safely, then generate VERIFICATION.md. version: 1.0.0 phase: verification requires:

  • QUESTIONS.md
  • IMPLEMENTATION_NOTES.md produces: VERIFICATION.md next: release-readiness-pass
@glaucia86
glaucia86 / 02-questions-md-resolution-implementation.md
Last active April 11, 2026 14:28
02-questions-md-resolution-implementation
name questions-md-resolution-implementation
description Read an answered QUESTIONS.md file, convert clarified decisions into a scoped implementation plan, apply approved changes safely, and generate IMPLEMENTATION_NOTES.md.
version 1.0.0
phase implementation
requires QUESTIONS.md
produces IMPLEMENTATION_NOTES.md
next implementation-verification-pass
@glaucia86
glaucia86 / codebase-review-question-audit
Last active April 11, 2026 14:27
01-codebase-review-question-audit/SKILL.md
---
name: codebase-review-question-audit
description: Perform a deep structured review of the codebase, identify ambiguities, risks, and missing decisions, and generate a QUESTIONS.md file to clarify architecture, behavior, security, performance, and refactoring concerns before implementation.
version: 1.0.0
phase: discovery
produces: QUESTIONS.md
next: questions-md-resolution-implementation
---
# Codebase Review Question Audit
@sudoingX
sudoingX / qwen3.5_chat_template.jinja
Created March 7, 2026 11:57
Patched Jinja template for Qwen 3.5 27B - fixes developer role crash + preserves thinking mode (thinking = 1). Drop-in replacement for agent tools (OpenCode, Claude Code, Continue, Cursor, Aider). Without this patch, --chat-template chatml silently kills thinking mode.
{%- set image_count = namespace(value=0) %}
{%- set video_count = namespace(value=0) %}
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
{%- if content is string %}
{{- content }}
{%- elif content is iterable and content is not mapping %}
{%- for item in content %}
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
{%- if is_system_content %}
{{- raise_exception('System message cannot contain images.') }}
@levelsio
levelsio / 💁‍♀️ Karen Bot by @levelsio
Last active March 3, 2026 14:30
💁‍♀️ Karen Bot is an AI robot that lets you report problems in your neighborhood or city to your local city council
<?php
// Karen Bot by @levelsio
//
// ask Claude Code or Cursor to adapt it to your city
// mine is for Lisbon in Portuguese but it should work with any city and any language!
// save it as council.php and add a Nginx route /council on your server to use it
// make sure to add /council?key= and set a key below to use it privately
//
// more info: https://x.com/levelsio/status/2009011216132526407?s=20
@marshallrichards
marshallrichards / instructions.md
Last active April 20, 2026 16:36
Android Termux Minecraft Server Instructions

VER=1.18.1

Mojang offical minecraft server:

MANIFEST="https://launchermeta.mojang.com/mc/game/version_manifest_v2.json"
META_URL="$(curl -sL "$MANIFEST" | jq -r --arg v "$VER" '.versions[] | select(.id==$v) | .url')"
SERVER_URL="$(curl -sL "$META_URL" | jq -r '.downloads.server.url')"
curl -L -o "server-$VER.jar" "$SERVER_URL"

PaperMC minecraft server (recommended):

// $ cc -o checker checker.c
// $ ./checker
// $ ffmpeg -i output-%02d.ppm -r 60 output.mp4
#include <stdio.h>
int main()
{
char buf[256];
for (int i = 0; i < 60; ++i) {
snprintf(buf, sizeof(buf), "output-%02d.ppm", i);
@miurhz
miurhz / BMW_USB_Software_Update.md
Last active May 8, 2026 14:48
USB firmware update files for BMW CIC (Multimedia) and Combox (Bluetooth/Telephone), no longer available on official servers. Includes download links (from official site) and instructions for updating via USB.

BMW CIC & Combox USB Firmware Updates

Officially titled: BMW Software Update for External Devices – Multimedia and Telephone

ℹ️ About This Guide:

  • I am not pro at any of this. I started to search for information how to update vehicle's multimedia because of my own Bluetooth issue.
  • As BMW no longer provided software updates on their main site at that time, the task was to find is it still possible to get them.
  • After long searches I managed to solve my issue successfully and decided to put everything I found in one place.
@Madhav-MKNC
Madhav-MKNC / coding-agent.py
Last active August 23, 2025 10:42
All the code you need to create a powerful agent that can create and edit any file on your computer using the new text_editor tool in the Anthropic API.
import anthropic
import os
import sys
from termcolor import colored
from dotenv import load_dotenv
class ClaudeAgent:
def __init__(self, api_key=None, model="claude-3-7-sonnet-20250219", max_tokens=4000):
"""Initialize the Claude agent with API key and model."""