My personal curation of skills.md
| Skill | Description |
|---|---|
python-project-scaffolding |
Full Python project bootstrapping workflow - SPEC → implementation → pytest → README → lint → git |
Claude-Sonet-4.6-essense |
Condensed operating philosophy of Claude - values, reasoning, and behavior |
OpenAI-GPT-5.3-essence |
GPT model essence and behavior patterns |
OEIS |
OEIS (Online Encyclopedia of Integer Sequences) integration |
redteaming |
Red teaming methodologies and practices |
QualiaAssesment |
Qualia assessment techniques |
StackSmashing |
Stack smashing / buffer overflow exploitation |
InvestigativeTimelineAgent |
Investigative timeline agent for tracking events |
# Create and activate venv
python -m venv .venv
source .venv/bin/activate
# Install dependencies and run tests
pip install -e ".[test]" # or pip install -r requirements-test.txt
pytest