82f8bc62a0
- Add desktopApp module with JVM entry point and sidebar navigation - Add Claude specs for AI-assisted development: - Agent definitions: nostr-protocol, kotlin-multiplatform, compose-ui, kotlin-coroutines - Skills: quartz-kmp conversion, compose-desktop patterns - Commands: desktop-run, nip, extract - Update Gradle configuration with Compose Multiplatform 1.7.1 plugin - Add coroutines and secp256k1 JVM dependencies to version catalog Next steps: - Convert Quartz library to full KMP (expect/actual for crypto) - Implement relay connections in desktop app - Share UI components between Android and Desktop 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
795 B
Markdown
33 lines
795 B
Markdown
---
|
|
description: Get NIP specification and implementation guidance
|
|
---
|
|
|
|
Fetch and explain NIP-$ARGUMENTS from the Nostr protocol:
|
|
|
|
1. **Get the specification** from https://github.com/nostr-protocol/nips/blob/master/$ARGUMENTS.md
|
|
|
|
2. **Show key details**:
|
|
- Event kind(s) used
|
|
- Required and optional fields
|
|
- Tag structure
|
|
- Message flow between client and relay
|
|
|
|
3. **Check implementation status** in Quartz:
|
|
```bash
|
|
grep -r "NIP-$ARGUMENTS\|nip$ARGUMENTS\|kind.*=" quartz/src/
|
|
```
|
|
|
|
4. **Provide implementation guidance**:
|
|
- Which Quartz classes to use or create
|
|
- Event construction example
|
|
- Relay subscription filters
|
|
- Verification/validation logic
|
|
|
|
## Example Usage
|
|
|
|
```
|
|
/nip 01 # Basic protocol
|
|
/nip 44 # Versioned encryption
|
|
/nip 57 # Zaps
|
|
```
|