Skip to content

Instantly share code, notes, and snippets.

View jmanhype's full-sized avatar

Straughter "BatmanOsama" Guthrie jmanhype

View GitHub Profile
@glennmatlin
glennmatlin / claude_code_hooks_for_uv.md
Last active October 15, 2025 05:16
Claude Code hooks for working with `uv`

Claude Code Hooks for working with uv

by Glenn Matlin / glennmatlin on all socials

Installation

  1. Download and copy all files in this gist to ~/.claude/
  2. Move the .py files to ~/.claude/hooks
  3. Restart Claude Code.
@jlia0
jlia0 / agent loop
Last active October 13, 2025 08:08
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@jmanhype
jmanhype / obsidian-copilot.md
Created February 17, 2024 04:44 — forked from andrewyu0/obsidian-copilot.md
obsidian-copilot

obsidian copilot

your notes = your lifelong ai companion + intelligence augmentation

COMMENTS VERY WELCOME! this is a first pass to put these ideas in one place

tldr - combine obsidian + openinterpreter to create a bespoke pkm copilot experience. if you follow the "file over app" philosophy, this combination can be your lifetime AI companion

image
@andrewyu0
andrewyu0 / obsidian-copilot.md
Last active February 19, 2025 11:07
obsidian-copilot

obsidian copilot

your notes = your lifelong ai companion + intelligence augmentation

COMMENTS VERY WELCOME! this is a first pass to put these ideas in one place

tldr - combine obsidian + openinterpreter to create a bespoke pkm copilot experience. if you follow the "file over app" philosophy, this combination can be your lifetime AI companion

image
@seanchatmangpt
seanchatmangpt / gen_pydantic_instance.py
Last active May 29, 2025 09:12
Generating Signature classes
import ast
import logging
import inspect
from typing import Type, TypeVar
from dspy import Assert, Module, ChainOfThought, Signature, InputField, OutputField
from pydantic import BaseModel, ValidationError
logger = logging.getLogger(__name__)
logger.setLevel(logging.ERROR)