# skills ## Purpose User-invocable skill definitions for Lodestar (夜航星) — the Feishu channel plugin. Each subdirectory contains a `SKILL.md` that Claude Code expands when the user invokes the corresponding slash command. ## Subdirectories | Directory | Purpose | |-----------|---------| | `configure/` | `/feishu:configure` — credential setup and status check (see `configure/AGENTS.md`) | | `daemon/` | `/feishu:daemon` — daemon process lifecycle management (see `daemon/AGENTS.md`) | ## For AI Agents ### Working In This Directory - Each skill is a single `SKILL.md` file with YAML frontmatter (name, description, allowed-tools) - Skills are user-invocable — they appear as slash commands in Claude Code - The `allowed-tools` frontmatter restricts which tools the skill can use ### Common Patterns - `$ARGUMENTS` placeholder in SKILL.md is replaced with user-supplied arguments at invocation time - Skills dispatch on arguments (no args = status, specific args = action)