qa-critical-ux

Contributors

GitHub-linked commit authors for this SKILL.md at the saved revision. Co-authors and history before file renames are not included.

File history ↗

QA Anarlog's critical Pro user journey on a signed staging candidate — onboarding, responsive launch, microphone and system-audio capture, automated summaries, and cloud sync.

.agents/skills/qa-critical-ux/SKILL.md

Download bundle ↓
main · 143e3d82 bundle filesScanned 2026-09-15

scripts/reset-native-qa-permissions.sh

237 tokens · o200k_base · 826 bytes

Source excerpt starting at line 1.
#!/usr/bin/env bash set -euo pipefail [[ $# -eq 0 ]] || {  echo "Usage: $0" >&2  exit 2} [[ "$(uname -s)" == "Darwin" ]] || {  echo "Staging QA permission reset requires macOS." >&2  exit 1} qa_process_status=0pgrep -x "anarlog-staging" >/dev/null || qa_process_status=$?case "$qa_process_status" in  0)    echo "Quit Anarlog Staging before resetting permissions." >&2    exit 1    ;;  1) ;;  *)    echo "Could not determine whether Anarlog Staging is running." >&2    exit 1    ;;esac # Reset before LaunchServices starts the process that will request permission.for qa_service in Microphone AudioCapture ScreenCapture Accessibility Calendar Reminders; do  tccutil reset "$qa_service" com.hyprnote.stagingdone echo "Permissions reset for com.hyprnote.staging. Launch normally, without ONBOARDING."