mirror of
https://github.com/microsoft/SkillOpt.git
synced 2026-07-03 14:02:58 +08:00
Bug fixes: - #52: bundle run-sleep.sh in Claude Code plugin + 4-level fallback - #58: add skillopt-sleep console script entry point in pyproject.toml - #62: filter headless claude -p replay sessions from harvest Plugin sync (Claude Code / Codex / Copilot / OpenClaw): - Document all 22 CLI flags, 7 actions, 4 backends across all SKILL.md files - Document config keys (preferences, gate_mode, dream_rollouts, etc.) - Document memory consolidation (evolve_memory / evolve_skill) - Add schedule/unschedule to all plugins - Copilot MCP: expand schema from 3 → 16 params + schedule tools - OpenClaw: add schedule/unschedule subcommands via shared scheduler Tests: - Cross-plugin parity test (prevents future feature drift) - MCP schema completeness test Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
31 lines
1.3 KiB
Bash
Executable File
31 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Claude Code plugin runner — thin wrapper over the shared runner so all
|
|
# platform plugins share one engine launcher.
|
|
#
|
|
# After marketplace install the plugin is isolated in a cache directory and
|
|
# the repo-relative path no longer works. We try four locations:
|
|
# 1. Co-located run-sleep.sh (bundled copy — works in marketplace cache)
|
|
# 2. Repo-relative ../../run-sleep.sh (dev checkout)
|
|
# 3. CLAUDE_PLUGIN_ROOT/../run-sleep.sh (plugin env variable)
|
|
# 4. SKILLOPT_SLEEP_REPO/plugins/run-sleep.sh (explicit env)
|
|
set -euo pipefail
|
|
HERE="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
SHARED=""
|
|
if [ -f "$HERE/run-sleep.sh" ]; then
|
|
SHARED="$HERE/run-sleep.sh"
|
|
elif [ -f "$(cd "$HERE/../.." 2>/dev/null && pwd)/run-sleep.sh" ]; then
|
|
SHARED="$(cd "$HERE/../.." && pwd)/run-sleep.sh"
|
|
elif [ -n "${CLAUDE_PLUGIN_ROOT:-}" ] && [ -f "$(cd "$CLAUDE_PLUGIN_ROOT/.." 2>/dev/null && pwd)/run-sleep.sh" ]; then
|
|
SHARED="$(cd "$CLAUDE_PLUGIN_ROOT/.." && pwd)/run-sleep.sh"
|
|
elif [ -n "${SKILLOPT_SLEEP_REPO:-}" ] && [ -f "$SKILLOPT_SLEEP_REPO/plugins/run-sleep.sh" ]; then
|
|
SHARED="$SKILLOPT_SLEEP_REPO/plugins/run-sleep.sh"
|
|
fi
|
|
|
|
if [ -z "$SHARED" ]; then
|
|
echo "[sleep] ERROR: cannot locate run-sleep.sh." >&2
|
|
echo "[sleep] Set SKILLOPT_SLEEP_REPO to the SkillOpt repo root, or pip install skillopt." >&2
|
|
exit 1
|
|
fi
|
|
exec bash "$SHARED" "$@"
|