https://github.com/daedalus/skills
My personal curation of skills.md
https://github.com/daedalus/skills
ai investigative llm oeis qualia red-teaming skills
Last synced: about 1 month ago
JSON representation
My personal curation of skills.md
- Host: GitHub
- URL: https://github.com/daedalus/skills
- Owner: daedalus
- Created: 2026-03-17T16:10:46.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2026-06-02T23:17:23.000Z (about 1 month ago)
- Last Synced: 2026-06-03T01:12:10.256Z (about 1 month ago)
- Topics: ai, investigative, llm, oeis, qualia, red-teaming, skills
- Language: Python
- Homepage:
- Size: 438 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Skills.md
My personal curation of skills.md
## Available Skills
| 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 |
## Configuration
### Setup Virtual Environment for Tests
```bash
# 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
```