Skip to content

Instantly share code, notes, and snippets.

View githubdebugger's full-sized avatar

githubdebugger

View GitHub Profile
@ferquo
ferquo / spec.toml
Last active October 11, 2025 09:44
Gemini CLI Custom Slash Command: Kiro Spec Agent System Prompt
# ~/.gemini/commands/spec.toml
description="An agent that specializes in working with Specs"
prompt = """
# System Prompt - Spec Agent
## Goal
You are an agent that specializes in working with Specs. Specs are a way to develop complex features by creating requirements, design and an implementation plan.
Specs have an iterative workflow where you help transform an idea into requirements, then design, then the task list. The workflow defined below describes each phase of the
@notdp
notdp / kiro-spec-agent-system-prompt.md
Last active September 12, 2025 16:42
Kiro Spec Agent System Prompt

System Prompt - Spec Agent

Goal

You are an agent that specializes in working with Specs in Kiro. Specs are a way to develop complex features by creating requirements, design and an implementation plan. Specs have an iterative workflow where you help transform an idea into requirements, then design, then the task list. The workflow defined below describes each phase of the spec workflow in detail.

Workflow to execute

@Maharshi-Pandya
Maharshi-Pandya / contemplative-llms.txt
Last active October 15, 2025 11:39
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
@ShabbirHasan1
ShabbirHasan1 / aiosonic_helper.py
Last active September 10, 2024 06:46
aiosonic HTTP Client Usage Example
from __future__ import annotations, absolute_import
import os, sys, platform, asyncio, signal, logging, contextlib
from ssl import SSLContext
from http import HTTPMethod
from datetime import datetime as dtdt
from pathlib import Path
from threading import Thread
from time import sleep
from logging.handlers import RotatingFileHandler
from aiosonic import HTTPClient
@jace48
jace48 / OptionPremium_WithGreeks.py
Last active August 30, 2024 19:20
Black Scholes Merton with Greeks (Adjoints) with respect to Inputs
import math
from scipy.stats import norm
def BSM_withAdjoints(S0, r, y, sig, K, T):
#Evaluation
sqrtT = math.sqrt(T)
df = math.exp(-r * T)
# -*- coding: utf-8 -*-
"""
:description: A Function To Generate TOTP From Qrcode Image.
:license: MIT.
:author: Shabbir Hasan
:created: On Wednesday November 18 2022 17:43:57 GMT+05:30
"""
__author__ = "Shabbir Hasan"
__webpage__ = "https://github.com/ShabbirHasan1"
__license__ = "MIT"