User Manual

Everything you need to know about the Aivyx Hub

What is the Hub?

The Aivyx Hub is the community registry for agent Skills and Personas. Think of it as a library where you can discover capabilities built by the community and instantly add them to your private Aivyx Engine.

Every item in the Hub follows the Aivyx Handoff Protocol (AHP) β€” a standardized format that ensures compatibility with your local Cockpit. No accounts required, no data leaves your machine.

⚑

Skills

Skills are capabilities you can add to your agents. They define what an agent can do β€” from searching the web to writing code to analyzing data.

Each skill includes a manifest file that describes its capabilities, required tools, and configuration. When you sync a skill, your Cockpit downloads the manifest and configures your local agent accordingly.

πŸ’‘ Tip: Browse the Skills page to filter and search for specific capabilities.

🎭

Personas

Personas define an agent's personality, expertise, and behavior. They shape how your agent communicates and approaches tasks.

A persona template includes system prompts, behavioral guidelines, and suggested skill pairings. You can use community personas as-is or customize them to match your needs.

πŸ’‘ Tip: Browse the Personas page to discover community-crafted personality templates.

πŸ•―οΈ

Syncing to Cockpit

Every item has a β€œSync to Cockpit” button. Here's how it works:

  1. Click the button β€” This triggers an aivyx:// deep link.
  2. Cockpit opens automatically β€” If Aivyx Cockpit is installed, it receives the manifest URL and begins the sync process.
  3. Fallback: clipboard copy β€” If the deep link doesn't work, the manifest URL is automatically copied to your clipboard. You can paste it manually in Cockpit's import dialog.

πŸ”’ Privacy: Syncing downloads the manifest to your local machine only. No data is sent to any external server. Your agent runs entirely on your hardware.

🀝

Contributing

Want to share your skills or personas with the community? Here's the process:

  1. Create a manifest β€” Write a JSON manifest file following the AHP manifest format.
  2. Host the manifest β€” Upload it to any publicly accessible URL (Git repository, CDN, personal server).
  3. Submit for inclusion β€” Contact the Aivyx team to have your item added to the Hub registry.
πŸ“‹

Manifest Format

A skill or persona manifest is a JSON file with the following structure:

{
  "id": "unique-skill-id",
  "schemaVersion": "1.0",
  "type": "skill",
  "name": "My Skill",
  "description": "What this skill does",
  "itemVersion": "1.0.0",
  "creator": {
    "username": "your-name",
    "url": "https://your-site.com"
  },
  "capabilities": ["code", "automation"],
  "tags": ["utility", "developer"],
  "manifestUrl": "https://example.com/manifest.json",
  "repository": "https://example.com/repo"
}

See the full schema documentation in the Hub's registry schema docs for all available fields including verified, downloads, and compatibility.

❓

FAQ

Do I need an account?

No. The Hub is fully open to browse and sync. No sign-up, no tracking, no accounts.

Is my data safe?

Absolutely. When you sync a skill or persona, the data goes to your local Cockpit. Nothing is sent to our servers. Your agent runs on your hardware β€” that's cognitive sovereignty.

What is the Aivyx Cockpit?

The Aivyx Cockpit is the desktop application (Tauri-based) that runs the Aivyx Engine locally. It's where your agents live and work, powered entirely by your own hardware.

Can I use Skills and Personas together?

Yes! In fact, that's the recommended approach. A Persona defines who your agent is, while Skills define what it can do. Combine them for the best results.