소스 정보
- 저장소
- andrem-sec/psc-comet
- 최근 소스 활동
- 2026년 4월 1일 00:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/andrem-sec/psc-comet --skill loop명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | loop |
| description | Schedule a prompt or skill to run on a recurring interval using CronCreate |
| version | 0.1.0 |
| level | 2 |
| triggers | ["/loop","run every","schedule this","repeat every"] |
| context_files | [] |
| steps | [{"name":"Parse","description":"Extract interval and prompt from the command arguments"},{"name":"Convert","description":"Convert interval to a cron expression"},{"name":"Schedule","description":"Create the cron job via CronCreate tool"},{"name":"Execute Now","description":"Run the prompt once immediately — do not wait for the first scheduled fire"}] |
Schedules a prompt or slash command to run on a recurring interval. The job runs locally via the CronCreate tool — no remote infrastructure required.
Different from loop-operator: loop-operator manages autonomous multi-step loops with
safety guardrails and escalation gates. /loop is simpler — it schedules a single prompt
to repeat at an interval, like a cron job.
/loop [interval] <prompt or slash command>
/loop 5m /checkpoint
/loop 1h /retro
/loop 30m check if the build is passing and report status
If no interval is specified, default is 10 minutes.
Extract the interval from:
/loop 5m /checkpoint → 5 minutes/loop /checkpoint every 5 minutes → 5 minutesSupported units: s (seconds, min 60), m (minutes), h (hours), d (days)
Minimum granularity: 1 minute
| Interval | Cron expression |
|---|---|
| ≤59 minutes | */N * * * * (every N minutes) |
| 1–23 hours | 0 */H * * * (every H hours, on the hour) |
| 24 hours / 1 day | 0 0 * * * (daily at midnight) |
| Custom time | Ask user for preferred time if ambiguous |
Examples:
5m → */5 * * * *30m → */30 * * * *2h → 0 */2 * * *1d → 0 0 * * *Use the CronCreate tool with:
expression: the cron stringprompt: the full prompt or slash command to rundescription: one-line human-readable descriptionConfirm with the user before creating if the interval is unusually short (<5m) or the prompt involves writes or external calls.
After creating the cron job, run the prompt once immediately. Do not make the user wait for the first scheduled fire.
Created: /checkpoint every 5 minutes (cron: */5 * * * *)
Running now for the first time...
[checkpoint output]
To list active loops: use CronList tool
To delete a loop: use CronDelete tool with the cron ID
Do not schedule prompts that require interactive input — they will fail unattended.
Do not schedule write-heavy operations at high frequency without the user explicitly requesting it.
Do not create a loop without confirming the prompt is self-contained (no follow-up questions expected).