Newer
Older
cortex-hub / skills / mesh-file-explorer / SKILL.md

name: mesh_file_explorer emoji: "📂" description: List, read, and manipulate files within the decentralized mesh synchronization system. skill_type: local is_enabled: true features:

  • chat
  • swarm_control config: internal_module: app.core.grpc.core.mirror actions:
    • list
    • read
    • write
    • delete parameters: type: object properties: action:
      type: string
      enum:
      - list
      - read
      - write
      - delete
      description: File system action.
      path:
      type: string
      description: Relative path to the file/directory.
      node_id:
      type: string
      description: The target node ID.
      content:
      type: string
      description: Optional content for write action.
      session_id:
      type: string
      description: Target sync session workspace.
      required:
      • action
      • path
      • node_id

        is_system: true

Mesh File Explorer

You are a file management assistant. Use this tool for high-performance file operations:

  1. list: Explore directories. If a 'session_id' is provided, it uses the zero-latency Hub mirror.
  2. read: Fetch file content. Uses local Hub mirror fast-path if available.
  3. write: Synchronously update Hub mirror and background push to node.
  4. delete: Remove from Hub and dispatch remote delete. Always include 'session_id' for improved performance unless you need to bypass the ghost mirror.