Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

managemanage 搜索

Agent Skill

manage 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

324

周安装

13

GitHub Stars

124

下载量

105
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:manage(manage 搜索)
来源仓库:https://github.com/kenneth-liao/ai-launchpad-marketplace
仓库路径:skills/manage
安装命令:
npx skills add https://github.com/kenneth-liao/ai-launchpad-marketplace --skill manage
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/kenneth-liao/ai-launchpad-marketplace --skill manage

简介

用于查找、检索和筛选相关信息。manage 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词或任务场景快速定位结果。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过 GitHub 安装,需确认权限和维护状态。
  • 可能触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 了解具体用法。

SKILL.md

Scheduler

Manage automated Claude Code tasks across macOS, Linux, and Windows. Schedule marketplace skills, freeform prompts, or shell scripts to run on a recurring cron schedule or as one-off tasks, with safety controls and desktop notifications.

Platform Support

PlatformSchedulerNotificationsAPI Key Storage
macOSlaunchd (plist + launchctl)osascript (native)Keychain (security CLI)
Linuxsystemd user timers (.service +.timer)notify-send (libnotify)secret-tool (GNOME Keyring) or ~/.config/anthropic/api-key
WindowsTask Scheduler (schtasks.exe + XML)BurntToast / Windows toastWindows Credential Manager or %USERPROFILE%\.config\anthropic\api-key

The platform is auto-detected at runtime. Tasks record which platform they were created on.

Overview

This orchestrator manages the full lifecycle of scheduled tasks. It delegates all operations to scheduler.py and presents results conversationally.

Core Principle: This is a thin orchestrator. All scheduling logic, file generation, and platform scheduler interaction are handled by scheduler.py with platform-specific backends. This skill manages the conversational flow only.

When to Use

Use this skill when:

  • Scheduling a recurring or one-off task (skill, prompt, or script)
  • Listing, pausing, resuming, or removing scheduled tasks
  • Viewing results or logs from past scheduled runs
  • Testing a scheduled task before activating it

Prerequisites

  • macOS, Linux, or Windows
  • claude CLI in PATH (for skill and prompt tasks)
  • uv installed (for running scheduler.py)
  • Linux only: systemctl --user available (systemd with user session)
  • Windows only: PowerShell 5.1+ and Task Scheduler access

First-Time Setup

On first invocation, verify claude is authenticated and in PATH:

claude -p "hello" --max-turns 1 --output-format text

If this fails, guide the user to run claude login before proceeding.

Also check if the scheduler directory exists. The scheduler uses project-level storage by default — it looks for .git or CLAUDE.md to find the project root, then stores state at <project>/.claude/scheduler/:

ls .claude/scheduler/registry.json

If it does not exist, the first add command will create it automatically. No manual setup needed. You can override the location with the SCHEDULER_DIR environment variable, or fall back to ~/.claude/scheduler/ when outside a project.

Workflow

When the user invokes /manage, present the operation menu:

  1. Add a new scheduled task
  2. List all scheduled tasks
  3. Pause a task
  4. Resume a paused task
  5. Remove a task
  6. Results — view output from a task
  7. Logs — view execution logs
  8. Run now — test a task immediately
  9. Cleanup — delete old logs and results
  10. Repair — regenerate wrappers and schedule artifacts

Then execute the selected operation below.

Operation: Add

Walk the user through each field conversationally:

Step 1: Task name Ask: "What should this task be called?" Generate a slug ID from the name (e.g., "Weekly note ideas" → weekly-note-ideas).

Step 2: Task type Ask: "What type of task?"

  • Skill — invoke a marketplace skill (e.g., creator-stack:generate-note-ideas)
  • Prompt — run a freeform Claude prompt
  • Script — execute a shell script

Step 3: Target Based on type:

  • Skill: Ask which skill. Suggest relevant installed skills if possible.
  • Prompt: Ask for the prompt text.
  • Script: Ask for the absolute path to the script.

Step 4: Frequency Ask: "Recurring or one-off?"

  • Recurring — runs on a schedule until paused or removed
  • One-off — runs once at the specified time, then auto-completes

Step 5: Schedule Ask: "What schedule? You can use natural language or a cron expression." Examples: "Every Monday at 8am", "Daily at 9:00", "Every weekday at 7:30am", "Tomorrow at 9am", "0 8 * * 1"

Convert natural language to a cron expression. For one-off tasks, convert the target datetime to a specific cron (e.g., "tomorrow at 9am" on Feb 25 → 0 9 26 2 *).

Confirm with the user: "That's 0 8 * * 1 — Every Monday at 8:00 AM. Correct?"

Step 6: Safety limits Ask: "Safety limits? Defaults are max 20 turns, 15 minute timeout." Let user accept defaults or customize.

Step 6a: Output directory (optional) Ask: "Want results saved to a specific directory? Default is the scheduler's results folder." If the user provides a path, it will be resolved to an absolute path and used as the flat output directory (no date subdirectories). If skipped, results go to <scheduler_dir>/results/YYYY-MM-DD/{id}.md.

Step 6b: Permissions (skip for script-type tasks) Scheduled tasks run non-interactively — Claude Code can't ask the user to approve tool use. Without pre-approved permissions, tools that need approval will fail silently.

Ask: "What permissions should this task have?" Offer these presets:

  • Default — no extra permissions (works if you have bypassPermissions set globally)
  • Readonly — read files, search, browse web (safe for research/reporting tasks)
  • Research — read files, search, web browse, curl (for data gathering)
  • Full edit — read, write, edit files, git, npm, uv, python, web (for code maintenance tasks)
  • Bypass — skip all permission checks (--dangerously-skip-permissions)
  • Custom — specify individual tool names

For custom, prompt for individual tool specs (e.g., Read, Write, Bash(git *)) separated by spaces.

Show the selected permission mode in the confirmation summary table.

CLI flags:

  • --permission-preset readonly|full-edit|research|bypass
  • --permission-mode default|acceptEdits|plan|dontAsk|bypassPermissions
  • --allowed-tools Read Write 'Bash(git *)' (individual tool specs)

Step 7: Confirm and create Present a summary table:

FieldValue
IDweekly-note-ideas
NameWeekly note ideas
TypeSkill
Targetcreator-stack:generate-note-ideas
FrequencyRecurring
ScheduleEvery Monday at 8:00 AM (0 8 * * 1)
Max turns20
Timeout15 min
Working dir{current project directory}
Output dir(default)
Permissions(default) / readonly / research / full-edit / bypass / custom

Ask: "Create this task?"

On confirmation, run:

uv run <skill_dir>/scripts/scheduler.py add \
  --id "weekly-note-ideas" \
  --name "Weekly note ideas" \
  --type skill \
  --target "creator-stack:generate-note-ideas" \
  --cron "0 8 * * 1" \
  --max-turns 20 \
  --timeout-minutes 15 \
  --working-directory "{cwd}"

For one-off tasks, add the --run-once flag. You can also specify --output-directory and --permission-preset:

uv run <skill_dir>/scripts/scheduler.py add \
  --id "morning-news-pulse" \
  --name "Morning news pulse" \
  --type prompt \
  --target "Research today's AI news" \
  --cron "0 9 26 2 *" \
  --max-turns 20 \
  --timeout-minutes 15 \
  --run-once \
  --permission-preset research \
  --output-directory "/path/to/output" \
  --working-directory "{cwd}"

Report: "Created and activated! Next run: {next run time}." For one-off tasks, add: "This will auto-complete after running."

Operation: List

Run:

uv run <skill_dir>/scripts/scheduler.py list

Present as a formatted table:

IDNameTypeScheduleStatusLast Run

If no tasks exist, say "No scheduled tasks yet. Use Add to create one."

Operation: Pause

  1. Run list to show active tasks
  2. Ask which task to pause
  3. Run:
uv run <skill_dir>/scripts/scheduler.py pause --id "{task_id}"
  1. Confirm: "Paused '{task_id}'. It won't run until you resume it."

Operation: Resume

  1. Run list to show paused tasks
  2. Ask which task to resume
  3. Run:
uv run <skill_dir>/scripts/scheduler.py resume --id "{task_id}"
  1. Confirm: "Resumed '{task_id}'. Next run: {next time}."

Operation: Remove

  1. Run list to show all tasks
  2. Ask which task to remove
  3. Confirm: "This will stop the schedule and delete the wrapper and schedule artifacts. Results and logs are kept. Proceed?"
  4. Run:
uv run <skill_dir>/scripts/scheduler.py remove --id "{task_id}"
  1. Confirm: "Removed '{task_id}'."

Operation: Results

  1. Ask which task (or show list if unclear)
  2. Run:
uv run <skill_dir>/scripts/scheduler.py results --id "{task_id}"
  1. Display the latest result content inline

To list all results:

uv run <skill_dir>/scripts/scheduler.py results --id "{task_id}" --all

Operation: Logs

  1. Ask which task
  2. Run:
uv run <skill_dir>/scripts/scheduler.py logs --id "{task_id}"
  1. Display recent log entries

Operation: Cleanup

Delete old log and result files to reclaim disk space:

uv run <skill_dir>/scripts/scheduler.py cleanup --max-days 30

The --max-days flag controls the retention period (default: 30 days). Log files are cleaned by modification time; result date-directories are cleaned by directory name.

Tip: You can schedule cleanup itself as a recurring task:

uv run <skill_dir>/scripts/scheduler.py add \
  --id scheduler-cleanup \
  --name "Scheduler Cleanup" \
  --type script \
  --target "<skill_dir>/scripts/cleanup-wrapper.sh" \
  --cron "0 3 * * 0" \
  --working-directory "{cwd}"

Operation: Repair

Regenerate missing or outdated wrapper scripts and schedule artifacts for all active tasks. Useful after plugin updates, permission changes, or if a wrapper was accidentally deleted.

  1. Ask whether to force-regenerate all wrappers or only missing ones.
  2. Run:
uv run <skill_dir>/scripts/scheduler.py repair

Or with force:

uv run <skill_dir>/scripts/scheduler.py repair --force
  1. Report how many issues were fixed.

Operation: Run Now

Important: scheduler.py run spawns claude -p as a subprocess, which fails inside an active Claude Code session ("cannot be launched inside another Claude Code session"). Since users typically invoke this skill from within Claude Code, use the deferred scheduling approach instead.

Procedure:

  1. Ask which task to test.
  2. Read the registry to save the task's current cron schedule:
uv run <skill_dir>/scripts/scheduler.py get --id "{task_id}"

Note the current cron value.

  1. Compute a cron expression for ~2 minutes from now (e.g., if current time is 10:03, use 5 10 {day} {month} *). Include the day and month to avoid the task firing again on subsequent days.
  2. Pause the task, edit the cron in the registry, and reload:
uv run <skill_dir>/scripts/scheduler.py pause --id "{task_id}"

Then edit .claude/scheduler/registry.json directly — find the task by ID and change its cron field to the near-future expression. Then resume:

uv run <skill_dir>/scripts/scheduler.py resume --id "{task_id}"

Finally, regenerate the wrapper and schedule with the new cron:

uv run <skill_dir>/scripts/scheduler.py repair --force
  1. Tell the user: "Task rescheduled to run in ~2 minutes. Waiting for it to fire..."
  2. Poll for the result every 30 seconds (up to the task's timeout + 2 minutes):
uv run <skill_dir>/scripts/scheduler.py results --id "{task_id}"

Compare timestamps to confirm a new result appeared after the reschedule.

  1. Once the result appears (or timeout), restore the original cron. Edit .claude/scheduler/registry.json to set the cron field back to the original value, then reload:
uv run <skill_dir>/scripts/scheduler.py repair --force
  1. Show the result output to the user and confirm the original schedule is restored.

Cron Expression Reference

For converting natural language to cron:

Natural LanguageCron Expression
Every day at 9am0 9 * * *
Every Monday at 8am0 8 * * 1
Every weekday at 7:30am30 7 * * 1-5
Every Sunday at midnight0 0 * * 0
Every hour0 * * * *
Every 1st of the month at 6am0 6 1 * *
Twice daily (9am, 5pm)Two tasks needed

Error Recovery

"Task already exists": Suggest a different ID or remove the existing one first. "Invalid cron expression": Show the cron reference table and ask again. "Wrapper not found": Run repair:

uv run <skill_dir>/scripts/scheduler.py repair

"Task failed (check logs)": Use the Logs operation to show what went wrong. "Task succeeded but output is empty": Likely a permission issue. Scheduled tasks run non-interactively and can't prompt for tool approval. Add a permission preset (e.g., --permission-preset readonly for read-only tasks) and regenerate wrappers with repair --force. "Wrapper needs permission update": After changing a task's permissions in the registry, run repair --force to regenerate all wrappers with the new settings.

Notes

For implementation details on permissions, lock files, sleep behavior, storage, and platform specifics, see references/implementation-notes.md.

Quality Checklist

  • Task type correctly identified (skill/prompt/script)
  • Cron expression validated and confirmed with user
  • Summary table presented before creating
  • scheduler.py command executed successfully
  • User informed of next run time (for add/resume)
  • Confirmation requested before destructive operations (remove)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.96%
按下载量换算36

Claude

32.71%
按下载量换算34

Cursor

19.15%
按下载量换算20

Gemini CLI

9.22%
按下载量换算10

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills