Central coordinator for capture data flow.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionaxiom-camera-capture-refExecute the skills CLI command in your project's root directory to begin installation:
Fetches axiom-camera-capture-ref from charleswiltgen/axiom and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate axiom-camera-capture-ref. Access via /axiom-camera-capture-ref in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
767
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
767
stars
// SESSION SETUP
import AVFoundation
let session = AVCaptureSession()
let sessionQueue = DispatchQueue(label: "camera.session")
sessionQueue.async {
session.beginConfiguration()
session.sessionPreset = .photo
guard let camera = AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back),
let input = try? AVCaptureDeviceInput(device: camera),
session.canAddInput(input) else { return }
session.addInput(input)
let photoOutput = AVCapturePhotoOutput()
if session.canAddOutput(photoOutput) {
session.addOutput(photoOutput)
}
session.commitConfiguration()
session.startRunning()
}
// CAPTURE PHOTO
var settings = AVCapturePhotoSettings()
settings.photoQualityPrioritization = .balanced
photoOutput.capturePhoto(with: settings, delegate: self)
// ROTATION (iOS 17+)
let coordinator = AVCaptureDevice.RotationCoordinator(device: camera, previewLayer: previewLayer)
previewLayer.connection?.videoRotationAngle = coordinator.videoRotationAngleForHorizonLevelPreview
Central coordinator for capture data flow.
| Preset | Resolution | Use Case |
|---|---|---|
.photo |
Optimal for photos | Photo capture |
.high |
Highest device quality | Video recording |
.medium |
VGA quality | Preview, lower storage |
.low |
CIF quality | Minimal storage |
.hd1280x720 |
720p | HD video |
.hd1920x1080 |
1080p | Full HD video |
.hd4K3840x2160 |
4K | Ultra HD video |
.inputPriority |
Use device format | Custom configuration |
// Batch configuration (atomic)
session.beginConfiguration()
defer { session.commitConfiguration() }
// Check preset support
if session.canSetSessionPreset(.hd4K3840x2160) {
session.sessionPreset = .hd4K3840x2160
}
// Add input/output
if session.canAddInput(input) {
session.addInput(input)
}
if session.canAddOutput(output) {
session.addOutput(output)
}
// Start (ALWAYS on background queue)
sessionQueue.async {
session.startRunning() // Blocking call
}
// Stop
sessionQueue.async {
session.stopRunning()
}
// Check state
session.isRunning // true/false
session.isInterrupted // true during phone calls, etc.
// Session started
NotificationCenter.default.addObserver(
forName: .AVCaptureSessionDidStartRunning,
object: session, queue: .main) { _ in }
// Session stopped
NotificationCenter.default.addObserver(
forName: .AVCaptureSessionDidStopRunning,
object: session, queue: .main) { _ in }
// Session interrupted (phone call, etc.)
NotificationCenter.default.addObserver(
forName: .AVCaptureSessionWasInterrupted,
object: session, queue: .main) { notification in
let reason = notification.userInfo?[AVCaptureSessionInterruptionReasonKey] as? Int
}
// Interruption ended
NotificationCenter.default.addObserver(
forName: .AVCaptureSessionInterruptionEnded,
object: session, queue: .main) { _ in }
// Runtime error
NotificationCenter.default.addObserver(
forName: .AVCaptureSessionRuntimeError,
object: session, queue: .main) { notification in
let error = notification.userInfo?[AVCaptureSessionErrorKey] as? Error
}
| Reason | Value | Cause |
|---|---|---|
.videoDeviceNotAvailableInBackground |
1 | App went to background |
.audioDeviceInUseByAnotherClient |
2 | Another app using audio |
.videoDeviceInUseByAnotherClient |
3 | Another app using camera |
.videoDeviceNotAvailableWithMultipleForegroundApps |
4 | Split View (iPad) |
.videoDeviceNotAvailableDueToSystemPressure |
5 | Thermal throttling |
Represents a physical capture device (camera, microphone).
// Default back camera
AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .back)
// Default front camera
AVCaptureDevice.default(.builtInWideAngleCamera, for: .video, position: .front)
// Default microphone
AVCaptureDevice.default(for: .audio)
// Discovery session for all cameras
let discoverySession = AVCaptureDevice.DiscoverySession(
deviceTypes: [.builtInWideAngleCamera, .builtInUltraWideCamera, .builtInTelephotoCamera],
mediaType: .video,
position: .unspecified
)
let cameras = discoverySession.devices
| Type | Description |
|---|---|
.builtInWideAngleCamera |
Standard camera (1x) |
.builtInUltraWideCamera |
Ultra-wide camera (0.5x) |
.builtInTelephotoCamera |
Telephoto camera (2x, 3x) |
.builtInDualCamera |
Wide + telephoto |
.builtInDualWideCamera |
Wide + ultra-wide |
.builtInTripleCamera |
Wide + ultra-wide + telephoto |
.builtInTrueDepthCamera |
Front TrueDepth (Face ID) |
.builtInLiDARDepthCamera |
LiDAR depth |
do {
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
mattpocock/skills
Registry listing for axiom-camera-capture-ref matched our evaluation — installs cleanly and behaves as described in the markdown.
Registry listing for axiom-camera-capture-ref matched our evaluation — installs cleanly and behaves as described in the markdown.
Keeps context tight: axiom-camera-capture-ref is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: axiom-camera-capture-ref is focused, and the summary matches what you get after install.
axiom-camera-capture-ref reduced setup friction for our internal harness; good balance of opinion and flexibility.
We added axiom-camera-capture-ref from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
I recommend axiom-camera-capture-ref for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Keeps context tight: axiom-camera-capture-ref is the kind of skill you can hand to a new teammate without a long onboarding doc.
axiom-camera-capture-ref is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Useful defaults in axiom-camera-capture-ref — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 65