Agent skill
launchd-non-apple-jobs
List launchd jobs that are not from Apple and create user launchd jobs. Use when the user says "show me my jobs", "show my launchd jobs", asks for non-Apple launchd jobs, or wants to create a one-time or recurring launchd job.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/launchd-non-apple-jobs
SKILL.md
Launchd Non-Apple Jobs
Overview
Show the current launchd job list filtered to non-Apple labels, and create user LaunchAgents (GUI domain) for one-time or recurring schedules.
Quick Start
- List non-Apple jobs:
scripts/show_jobs.sh
- Create a one-time job:
scripts/create_job.sh --label "com.example.myjob" --command "echo hello" --once "2026-02-05 13:30"
- Create a recurring job:
scripts/create_job.sh --label "com.example.myjob" --command "echo hello" --daily "09:00"
- Remove a job:
scripts/delete_job.sh --label "com.example.myjob"
Tasks
Show non-Apple jobs
- Run
scripts/show_jobs.sh. - The output keeps the header and only non-Apple labels.
Create a one-time job
- Use
--once "YYYY-MM-DD HH:MM". - The job schedules via
StartCalendarIntervaland self-removes after the first run.
Create a recurring job
- Use one of:
--daily,--weekly,--monthly, or--interval. - The job uses
StartCalendarInterval(orStartInterval) and remains installed until removed.
Remove a job
- Run
scripts/delete_job.sh --label "<label>". - This unloads the job and moves the plist (and one-time wrapper, if present) to Trash.
Customize the filter (optional)
- If the user wants to include additional Apple-like prefixes, update the regex in
scripts/show_jobs.sh.
Resources
scripts/
show_jobs.sh: Launcheslaunchctl listand filters out Apple jobs.create_job.sh: Creates a user LaunchAgent for one-time or recurring schedules.delete_job.sh: Unloads and removes a user LaunchAgent by label.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?