Join Nostr
2026-03-24 20:46:25 UTC
in reply to

hodlbod on Nostr: Do you use spec driven development or what? I'm currently experimenting with ...

Do you use spec driven development or what? I'm currently experimenting with "writing" the app in excruciating detail in markdown (but using real function signatures and names) and having the AI fill in the details. For example:

```
## `async fn create_relay(...) -> Response`

- Serves `POST /relays/:id`
- Authorizes admin and relay owner
- Creates a new relay using `self.repo.create_relay`
- If relay is a duplicate by subdomain, return a `422` with `code=subdomain-exists`
- Return `data` is a single relay struct. Use HTTP `201`.
```