sql_env / docs /README.md
hjerpe's picture
Upload folder using huggingface_hub
9e64e71 verified
# Docs
This directory is the system-of-record for durable project knowledge.
## Quick Links
| Category | Index | Type | Purpose |
|----------|-------|------|---------|
| **Guides** | [guides/README.md](guides/README.md) | how-to | Practical step-by-step procedures |
| **Design** | [design-docs/index.md](design-docs/index.md) | explanation | Feature design, ADRs, decision rationale |
| **ADR Template** | [design-docs/decisions/0001-template.md](design-docs/decisions/0001-template.md) | reference | Decision record template |
| **Core Beliefs** | [design-docs/core-beliefs.md](design-docs/core-beliefs.md) | explanation | Agent-first operating principles |
| **Discovery** | [discovery/index.md](discovery/index.md) | explanation | Validate ideas and capture taste |
| **Delivery Specs** | [delivery-specs/index.md](delivery-specs/index.md) | reference | Engineering handoff specs |
| **Exec Plans** | [exec-plans/README.md](exec-plans/README.md) | how-to | Complex multi-step work tracking |
| **Tech Debt** | [exec-plans/tech-debt-tracker.md](exec-plans/tech-debt-tracker.md) | how-to | Known debt and cleanup opportunities |
| **Exploration** | [exploration/README.md](exploration/README.md) | exploration | Ideas, research, scratchpad |
| **Learnings** | [learnings/README.md](learnings/README.md) | reference | Durable patterns from completed work |
| **Archived Learnings** | [learnings/archived/README.md](learnings/archived/README.md) | reference | Overflow learnings archive |
| **References** | [references/README.md](references/README.md) | reference | External docs for agent context |
## Learnings by Category
| Category | File |
|----------|------|
| Architecture | [learnings/architecture.md](learnings/architecture.md) |
| Conventions | [learnings/conventions.md](learnings/conventions.md) |
| Gotchas | [learnings/gotchas.md](learnings/gotchas.md) |
| Integrations | [learnings/integrations.md](learnings/integrations.md) |
| Security | [learnings/security.md](learnings/security.md) |
| Testing | [learnings/testing.md](learnings/testing.md) |
| Workflow | [learnings/workflow.md](learnings/workflow.md) |
## System Docs
- Architecture: [ARCHITECTURE.md](ARCHITECTURE.md)
- Operations: [RUNBOOK.md](RUNBOOK.md)
- Taxonomy: [DOCS_TAXONOMY.md](DOCS_TAXONOMY.md)
- Quality: [QUALITY_SCORE.md](QUALITY_SCORE.md)
- Feature Slicing: [FEATURE_SLICING.md](FEATURE_SLICING.md)
- Contract: [DOCS_CONTRACT.json](DOCS_CONTRACT.json)
## Directory Structure
```
docs/
β”œβ”€β”€ README.md # This file (index)
β”œβ”€β”€ ARCHITECTURE.md # System design overview [reference]
β”œβ”€β”€ RUNBOOK.md # Operations guide [how-to]
β”œβ”€β”€ DOCS_TAXONOMY.md # Where to put new docs [reference]
β”œβ”€β”€ QUALITY_SCORE.md # Domain quality grades [reference]
β”œβ”€β”€ FEATURE_SLICING.md # Feature slicing strategy [reference]
β”œβ”€β”€ DOCS_CONTRACT.json # Validation config [reference]
β”œβ”€β”€ guides/ # How-to guides [how-to]
β”‚ └── README.md # Guide index
β”œβ”€β”€ design-docs/ # Decision rationale [explanation]
β”‚ β”œβ”€β”€ index.md # Design docs catalogue
β”‚ β”œβ”€β”€ core-beliefs.md # Agent-first principles
β”‚ └── decisions/ # Architectural Decision Records
β”œβ”€β”€ discovery/ # Idea validation [explanation]
β”‚ └── index.md # Discovery index
β”œβ”€β”€ delivery-specs/ # Engineering handoff [reference]
β”‚ └── index.md # Delivery specs index
β”œβ”€β”€ exec-plans/ # Work tracking [how-to]
β”‚ β”œβ”€β”€ README.md # Exec plans index
β”‚ └── tech-debt-tracker.md # Technical debt
β”œβ”€β”€ exploration/ # Ideas, scratchpad [exploration]
β”‚ └── README.md # Exploration index
β”œβ”€β”€ learnings/ # Durable patterns [reference]
β”‚ β”œβ”€β”€ README.md # Learnings index
β”‚ β”œβ”€β”€ architecture.md # Architecture learnings
β”‚ β”œβ”€β”€ conventions.md # Convention learnings
β”‚ β”œβ”€β”€ gotchas.md # Gotcha learnings
β”‚ β”œβ”€β”€ integrations.md # Integration learnings
β”‚ β”œβ”€β”€ security.md # Security learnings
β”‚ β”œβ”€β”€ testing.md # Testing learnings
β”‚ β”œβ”€β”€ workflow.md # Workflow learnings
β”‚ └── archived/ # Overflow archive
β”‚ └── README.md # Archive policy
└── references/ # External docs [reference]
└── README.md # External docs for agent context
```
## Adding Documentation
| If you need... | Create in... | Type |
|----------------|--------------|------|
| Step-by-step procedure | `docs/guides/<topic>.md` | how-to |
| Design for a feature | `docs/design-docs/<feature>.md` | explanation |
| External library docs | `docs/references/<library>-llms.txt` | reference |