/ flydocs-update

Pull the latest skills, hooks, commands, and configuration from the server.

The /flydocs-update command pulls the latest skills, hooks, commands, and configuration from the server. It updates all managed artifacts to their newest versions, equivalent to running flydocs sync from the terminal but invocable from within your AI session.

Usage

agent chat
/flydocs-update
agent chat
update flydocs to the latest version

What Happens

  1. Sync triggered: Calls flydocs sync to pull config and artifacts from the server
  2. Managed files replaced: Skills, hooks, commands, and cursor rules are updated to server versions
  3. User files preserved: Your project.md, knowledge base, and context files are not touched
  4. Change report: Shows what was updated so you know what changed

What Gets Updated

Updated (server-owned) Preserved (user-owned)
Skills and stage procedures project.md
Hooks and commands Knowledge base
Cursor rules Session history
Issue and PR templates service.json

Protecting Local Changes

If you're actively developing skills or hooks locally, managed artifact sync will overwrite your changes. To prevent this, add paths to artifactOverrides.skipPaths in .flydocs/config.json:

.flydocs/config.json
{
  "artifactOverrides": {
    "skipPaths": [".claude/skills/flydocs-workflow/"]
  }
}

Paths listed in skipPaths are excluded from sync. This setting is local only and not visible in the portal.

When to Use It

  • When you see a notification that updates are available
  • After an admin changes workspace configuration in the portal
  • Periodically to ensure your local files match the server
  • After resolving a conflict between local and server artifacts

Related Commands

  • /onboard: Initial setup and project orientation
  • /status: Check current project state after updating