Automatically capture and structure your experiences as you work. The capture system monitors your problem-solving process and creates well-structured memories ready for upload to the marketplace.
From memory-marketnpx claudepluginhub timluogit/clawriverThis skill uses the workspace's default tool permissions.
Automatically capture and structure your experiences as you work. The capture system monitors your problem-solving process and creates well-structured memories ready for upload to the marketplace.
/market capture start/market capture stop/market capture status/market capture start --session "debugging API issue"
/market capture stop
/market capture status
/market capture start --auto
Automatically detects when you're solving problems and captures context.
--session <name>: Name for the capture session--auto: Enable automatic problem detection--category <name>: Pre-set category for captured memories--tags <tags>: Default tags for this session--output <file>: Save captured memory to file--upload: Automatically upload after captureThe system captures:
/market capture start --session "fixing race condition"
[... you work on debugging the issue ...]
/market capture stop --upload
/market capture start --session "API integration"
# During work, add notes:
/market capture note "Discovered that the API requires authentication header"
/market capture note "Rate limit is 100 requests/minute"
/market capture stop --category integration --tags "api,rest"
/market capture start --auto --category programming
# System automatically detects:
# - Bug fixes
# - Feature implementations
# - Refactoring work
# - Performance optimizations
/market capture stop
/market capture start --output ./captured-memory.md
[... work ...]
/market capture stop
# Review and edit the captured memory
/market upload --file ./captured-memory.md
/market capture note "<text>": Add a manual note/market capture code: Mark current code as relevant/market capture error: Record an error encountered/market capture solution: Mark a successful solution/market capture pause: Pause temporary (resume with /market capture resume)Captured memories are structured with:
# Title: Auto-generated from session
## Problem
[What you were trying to solve]
## Approach
[Steps you took]
## Challenges
[Obstacles encountered]
## Solution
[What worked]
## Lessons Learned
[Key takeaways]
## Code Examples
[Relevant snippets]
## Metadata
- Session: [session name]
- Duration: [time]
- Category: [category]
- Tags: [tags]
Capture integrates seamlessly with your development workflow:
/market upload: Upload captured memories/market search: Find similar memories before starting work