An open API service indexing awesome lists of open source software.

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

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
```