voyager-init

voyager-init is a skill for Claude Code from fxd0h/Axelera-Voyager-Local-Assistant. It costs 38 tokens per session (1,940 once invoked), scanned A, original, MIT.

A procedure for setting up Voyager SDK integration with an Axelera Voyager service for project tracking, task management, and a shared knowledge base. It checks whether the required service and login connection are available.

In plain words
What is it for?
Initializing a new Voyager SDK workspace and verifying its service connection, session, and available knowledge sources.
Why use it?
It removes repeated setup work and lets related procedures use the same project information and task records.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: mentions CLAUDE.md; mentions Claude Code.

Good fit Initializing a new Voyager SDK workspace and verifying its service connection, session, and available knowledge sources.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fxd0h/axelera-voyager-local-assistant/voyager-init
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add fxd0h/Axelera-Voyager-Local-Assistant --skill voyager-init
Clone the repo
git clone --depth 1 https://github.com/fxd0h/Axelera-Voyager-Local-Assistant

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for voyager-init

README.md
[![agentmods](https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-init/github.svg)](https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-init)
Your own site
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-init"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-init/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for voyager-init

Your own site · 80×15
<a href="https://agentmods.dev/skills/fxd0h/axelera-voyager-local-assistant/voyager-init"><img src="https://agentmods.dev/badge/skills/fxd0h/axelera-voyager-local-assistant/voyager-init.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,940 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00038 $0.01940
Opus 5 $0.00019 $0.00970
Sonnet 5 $0.00008 $0.00388
Haiku 4.5 $0.00004 $0.00194

Measured 12d ago against content hash 5deda4d06e5c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

voyager-init scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/voyager-init/SKILL.md · 268 lines

How it starts

The opening of the file, as written. The whole thing — 268 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Initialize Axelera Voyager Integration

Set up Axelera Voyager MCP server integration for task management, knowledge base, and project tracking

Important Context

After initialization, all relevant skills use Axelera Voyager for project tracking and task management.

Instructions

Initialize Axelera Voyager integration: $ARGUMENTS

Step 0: Data Source & Environment Selection

{{INCLUDE common/voyager-sdk-setup.md}}

Step 1: Verify Axelera Voyager MCP Server

FIRST, verify Axelera Voyager MCP server is available:

# Check health
mcp__voyager__health_check()

# Check session
mcp__voyager__session_info()

# List available knowledge sources
mcp__voyager__rag_get_available_sources()

If any of these fail, the Voyager MCP server is not registered or not reachable. Set it up as follows:

  • The hosted server is https://mcp.voyager.axelera.ai/mcp (streamable HTTP).

  • Authentication is OAuth via discovery on first tool use. There are no static tokens; never suggest shared bearer tokens or static authorization headers.

  • Claude Code: register the server with

    claude mcp add --transport http voyager https://mcp.voyager.axelera.ai/mcp
    

    or add this to the repo root .mcp.json:

    {
      "mcpServers": {
        "voyager": {
          "type": "http",
          "url": "https://mcp.voyager.axelera.ai/mcp"
        }
      }
    }
    
  • Restart the client session, complete the OAuth prompt on first tool use, then re-run the health check above.

Step 2: Project Selection

Ask the user about project context:

Question: "How would you like to set up Axelera Voyager for this session?"
Options:
1. "Create New Project" - Create a new Axelera Voyager project for tracking work
2. "Use Existing Project" - Select from existing Axelera Voyager projects
3. "Skip Project Setup" - Use Axelera Voyager knowledge base only, no task tracking

If Create New Project:

mcp__voyager__create_project(
    title="Voyager SDK - [User's Description]",
    description="[Generated from user input]",
    github_repo="https://github.com/axelera-ai-hub/voyager-sdk"
)

Read the full file on GitHub · 268 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 268 lines · 38 tokens per session scan A 5deda4d06e5c

Subscribe to this mod's changes

voyager-init is a skill published in the GitHub repository fxd0h/Axelera-Voyager-Local-Assistant (4 stars, last pushed 1mo ago), licensed MIT. It adds 38 tokens to every session and 1,940 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.