Vérification de Capacité

VérifiéSûr

Vérifiez si une action spécifique est possible et diagnostiquez les blocages. Utile pour vérifier les permissions, confirmer l'existence d'une capacité ou résoudre les problèmes de fonctionnement.

Spar Skills Guide Bot
ProductiviteIntermédiaire
2002/06/2026
Claude Code
#capability-check#permissions#troubleshooting#prerequisites

Recommandé pour

Notre avis

Vérifie si une action spécifique est réalisable et diagnostique les obstacles en contrôlant les prérequis, les permissions et les configurations.

Points forts

  • Identifie rapidement les permissions ou prérequis manquants.
  • Fournit des étapes de résolution actionnables.
  • Utilise des commandes système pour vérifier les capacités.

Limites

  • Dépend de la présence d'utilitaires système et de scripts.
  • Peut ne pas couvrir tous les obstacles possibles.
  • Nécessite une certaine compréhension technique pour interpréter les résultats.
Quand l'utiliser

Lorsque vous devez vérifier si une action est possible avant de la tenter, ou lors du dépannage d'un problème.

Quand l'éviter

Lorsque vous savez déjà que la capacité existe ou que le problème n'est pas lié aux permissions ou à la configuration.

Analyse de sécurité

Sûr
Score qualité88/100

The skill only runs local diagnostic commands (ps, ls, osascript, grep) to check system capabilities and permissions. There is no network access, destructive action, or exfiltration risk. It may read potentially sensitive file paths to test accessibility, but that's for informational purposes only.

Aucun point d'attention détecté

Exemples

Check iMessage capability
Can I send an iMessage? Check if Samara is running and I have the necessary permissions.
Verify Messages database access
Check if I have the capability to read the Messages database. I'm getting a permission error.
Check Bluesky posting capability
Is it possible to post to Bluesky? Verify my credentials and that the script is configured.

name: capability description: Check if a specific action is possible and what might be blocking it. Use when asking if you can do something, checking permissions, verifying a capability exists, or troubleshooting why something isn't working. Trigger words: can I, capability, able to, permission, possible, how do I. context: fork allowed-tools:

  • Bash
  • Read
  • Grep
  • Glob

Capability Check

Verify if a specific action is possible and diagnose any blockers.

Capability Inventory

Full capabilities documentation: ~/.claude-mind/capabilities/inventory.md

Access Patterns

# Read full inventory (comprehensive reference)
cat ~/.claude-mind/capabilities/inventory.md

# Search for specific capability
grep -ni "search term" ~/.claude-mind/capabilities/inventory.md

# List all sections
grep "^## " ~/.claude-mind/capabilities/inventory.md

Quick Capability Matrix

| Capability | Method | Requires | |------------|--------|----------| | Send iMessage | AppleScript via Samara | Samara running, Automation permission | | Send image | send-image script | Pictures folder workaround | | Read calendar | AppleScript | Calendar permission | | Write calendar | AppleScript | Calendar permission | | Read contacts | AppleScript | Contacts permission | | Read/write notes | AppleScript | Notes permission | | Send email | AppleScript | Mail permission | | Post to Bluesky | bluesky-post script | Credentials in config | | Browse web | Playwright MCP | MCP server running | | Take screenshot | screenshot script | Screen recording permission | | Read Messages DB | Direct file access | Full Disk Access | | Run shell commands | Bash | Always available | | Read/write files | Direct | Always available |

Checking Specific Capabilities

Messaging

pgrep -q Samara && echo "Samara: OK" || echo "Samara: Not running"
~/.claude-mind/bin/message "test" --dry-run 2>/dev/null

Calendar

osascript -e 'tell application "Calendar" to get name of calendars' 2>&1

Contacts

osascript -e 'tell application "Contacts" to get name of first person' 2>&1

Notes

osascript -e 'tell application "Notes" to get name of first note' 2>&1

Mail

osascript -e 'tell application "Mail" to get name of first account' 2>&1

Bluesky

grep -q "bluesky" ~/.claude-mind/config.json && echo "Bluesky: Configured" || echo "Bluesky: Not configured"

Full Disk Access

ls ~/Library/Messages/chat.db 2>/dev/null && echo "FDA: OK" || echo "FDA: Missing"

Troubleshooting Flow

  1. Identify the capability: What action is being attempted?

  2. Check prerequisites:

    • Is the required app/service running?
    • Are permissions granted?
    • Is configuration present?
  3. Test minimally: Run simplest possible version of the action

  4. Check logs: Look for error messages

log show --predicate 'process == "osascript"' --last 2m
  1. Report findings: What works, what doesn't, what to fix

Common Blockers

  • "Not authorized to send Apple events": Missing Automation permission
  • "Operation not permitted": Missing FDA or specific permission
  • "Application isn't running": Need to launch the app first
  • "No such file": Script or config missing
Skills similaires