AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Andamio Cli

skill-andamio-platform-coach-andamio-cli · by Andamio-Platform

Use the Andamio CLI to manage courses, modules, and content. Import compiled modules, export for editing, check auth status, and query course data.

No reviews yet
0 installs
6 views
0.0% view→install

Install

$ agentstack add skill-andamio-platform-coach-andamio-cli

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-andamio-platform-coach-andamio-cli)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Andamio Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Skill: Andamio CLI

Description

Manages Andamio platform content using the andamio CLI tool. Handles authentication, course queries, module import/export, and the full round-trip workflow from compiled content to live platform.

CLI location: /usr/local/bin/andamio Config: ~/.andamio/config.json

Prerequisites

Before running any commands, verify:

andamio --version    # CLI installed
andamio user status  # Authentication status

If not authenticated:

andamio user login   # Opens browser for wallet signing

If JWT is expired:

andamio user logout && andamio user login

Command Reference

Authentication

| Command | Purpose | |---------|---------| | andamio auth login --api-key | Store API key (read-only access) | | andamio auth status | Check API key status | | andamio user login | Authenticate via browser wallet (required for writes) | | andamio user logout | Clear JWT | | andamio user status | Show auth status + JWT expiry | | andamio user me | Current user dashboard |

Course Queries

| Command | Purpose | |---------|---------| | andamio course list | List accessible courses | | andamio course get | Course details | | andamio course modules | List modules in course | | andamio course slts | List SLTs for module | | andamio course lesson | Get single lesson | | andamio course intro | Get module introduction | | andamio course assignment | Get module assignment |

Module Export

andamio course export   [flags]

Flags:

  • --output-dir — Custom output path (default: ./compiled///)
  • --force — Overwrite existing directory

Output: Creates compiled directory with outline.md, lesson-N.md, introduction.md, assignment.md, and assets/ with .image-manifest.json.

Module Import (Update Existing)

andamio course import  --course-id  [flags]

Flags:

  • --course-id (required) — Target course ID
  • --dry-run — Show API payload without sending

Requires: andamio user login (JWT auth)

Important: Import only updates existing modules and SLTs. The module must already exist in the course, and SLTs must be created before lessons can be imported. See "Creating New Modules" and "SLT Creation Gotcha" below.

What import does:

  1. Parses outline.md for title, code, SLTs
  2. Uploads new images in assets/ to CDN (preserves manifest entries)
  3. Extracts # H1 from each lesson file as the lesson title
  4. Converts remaining markdown to Tiptap JSON content
  5. Merges with existing module state
  6. Sends update to API

Critical file format rules:

  • outline.md: No # H1 heading — title comes from YAML title: field. Start with ## SLTs after frontmatter.
  • lesson-N.md: Must have # H1 title — this becomes the lesson title in the app. Content follows below.
  • introduction.md: # H1 becomes intro title, rest is content.
  • assignment.md: # H1 becomes assignment title, rest is content.

SLT locking rules:

  • DRAFT modules: Can create/update/delete SLTs and lessons
  • APPROVED/ON_CHAIN modules: SLTs are locked — can only update lesson content

Creating New Modules (API Direct)

The CLI has no create command yet. Use the API directly:

# Step 1: Create the empty module shell
andamio_url=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['base_url'])")
jwt=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['user_jwt'])")
api_key=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['api_key'])")

curl -s -X POST "${andamio_url}/api/v2/course/teacher/course-module/create" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer ${jwt}" \
  -H "x-api-key: ${api_key}" \
  -d '{
    "course_id": "COURSE_ID_HERE",
    "course_module_code": "101",
    "title": "Module Title",
    "sort_order": 1
  }' | python3 -m json.tool

# Step 2: Import content into the newly created module
andamio course import ./compiled/course-slug/101 --course-id 

Parameters for create:

| Field | Type | Purpose | |-------|------|---------| | course_module_code | string | Unique module code (e.g., "101", "intro-cardano") | | title | string | Module display name | | sort_order | integer | Display order (1, 2, 3...) | | description | string | Optional module description | | image_url | string | Optional module image | | is_live | boolean | Whether module is visible |

Other Commands

| Command | Purpose | |---------|---------| | andamio project list | List projects | | andamio project get | Project details | | andamio teacher courses | Courses where you're a teacher | | andamio tx pending | Pending transactions | | andamio tx status | Transaction status | | andamio spec paths [--filter ] | Browse API endpoints | | andamio apikey usage | API key usage stats |

Workflows

Import a Single Compiled Module

# 1. Verify auth
andamio user status

# 2. Dry run first
andamio course import ./compiled/my-course/101 --course-id  --dry-run

# 3. Import for real
andamio course import ./compiled/my-course/101 --course-id 

# 4. Verify
andamio course slts  101

Import All Modules in a Course

COURSE_ID=""
COURSE_DIR="./compiled/course-slug"

for module_dir in "$COURSE_DIR"/*/; do
  echo "=== Importing $(basename $module_dir) ==="
  andamio course import "$module_dir" --course-id "$COURSE_ID"
done

Create + Import New Modules (Full Flow)

When modules don't exist on the platform yet, three steps are required:

  1. Create module shell via API (no CLI command yet)
  2. Create SLTs via API with slt_index omitted (triggers create instead of update)
  3. Import content via CLI (lessons, assignment, introduction, images)
SLT Creation Gotcha

The CLI sends SLTs with slt_index set, which the API interprets as "update existing." For new modules with no SLTs, you must first create them via a direct API call with slt_index omitted:

# This CREATES SLTs (slt_index omitted)
curl -s -X POST "${andamio_url}/api/v2/course/teacher/course-module/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer ${jwt}" \
  -H "x-api-key: ${api_key}" \
  -d '{
    "course_id": "COURSE_ID",
    "course_module_code": "101",
    "slts": [
      {"slt_text": "First SLT text"},
      {"slt_text": "Second SLT text"}
    ]
  }'
# Response: "slts_created": 2

# After SLTs exist, CLI import works normally:
andamio course import ./compiled/course/101 --course-id COURSE_ID
# Response: "lessons_created": 2
Full Script
COURSE_ID=""
COURSE_DIR="./compiled/course-slug"

andamio_url=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['base_url'])")
jwt=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['user_jwt'])")
api_key=$(python3 -c "import json; print(json.load(open('$HOME/.andamio/config.json'))['api_key'])")

sort_order=1
for module_dir in "$COURSE_DIR"/*/; do
  code=$(basename "$module_dir")
  title=$(grep '^title:' "$module_dir/outline.md" | sed 's/title: *"\{0,1\}\(.*\)"\{0,1\}/\1/' | sed 's/"$//')

  echo "=== Module $code: $title ==="

  # Step 1: Create module shell
  curl -s -X POST "${andamio_url}/api/v2/course/teacher/course-module/create" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer ${jwt}" \
    -H "x-api-key: ${api_key}" \
    -d "{
      \"course_id\": \"${COURSE_ID}\",
      \"course_module_code\": \"${code}\",
      \"title\": \"${title}\",
      \"sort_order\": ${sort_order}
    }"

  # Step 2: Create SLTs (omit slt_index to trigger creation)
  slts=$(grep -E '^\d+\.' "$module_dir/outline.md" | sed 's/^[0-9]*\. *//' | python3 -c "
import sys, json
slts = [{'slt_text': line.strip()} for line in sys.stdin if line.strip()]
print(json.dumps(slts))
")
  curl -s -X POST "${andamio_url}/api/v2/course/teacher/course-module/update" \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer ${jwt}" \
    -H "x-api-key: ${api_key}" \
    -d "{
      \"course_id\": \"${COURSE_ID}\",
      \"course_module_code\": \"${code}\",
      \"slts\": ${slts}
    }" | python3 -c "import json,sys; d=json.load(sys.stdin); print(f'  SLTs created: {d.get(\"changes\",{}).get(\"slts_created\",0)}')"

  # Step 3: Import content (lessons, assignment, images)
  andamio course import "$module_dir" --course-id "$COURSE_ID"

  sort_order=$((sort_order + 1))
  echo ""
done

Export → Edit → Re-import (Round Trip)

# Export
andamio course export  101

# Edit locally
vim compiled/course-slug/101/lesson-1.md

# Re-import (manifest preserves existing image URLs)
andamio course import compiled/course-slug/101 --course-id 

Image Handling

  • Supported: PNG, JPEG, GIF, WebP (max 5MB per image)
  • Upload: New images in assets/ are automatically uploaded to CDN on import
  • Manifest: .image-manifest.json maps filenames → CDN URLs
  • Round-trip safe: Export downloads images + writes manifest; import re-uses manifest URLs

Common Errors

| Error | Cause | Fix | |-------|-------|-----| | module 'X' not found in course | Module doesn't exist on platform | Create it first (see "Creating New Modules") | | slts_created: 0 on new module | CLI sends slt_index, API treats as update of non-existent SLTs | Create SLTs via API with slt_index omitted (see "SLT Creation Gotcha") | | lessons_created: 0 after import | No SLT slots exist to attach lessons to | Create SLTs first, then re-import | | SLT_LOCKED | Trying to modify SLTs on APPROVED/ON_CHAIN module | Can only update lesson content | | unauthorized | JWT expired or missing | Run andamio user login | | create via Studio first | Lesson targets empty SLT slot on locked module | Add SLT via Studio, then import | | CONFLICT: Module with this code already exists | Module code already used in course | Use a different code or import to update |

Global Flags

All commands support:

  • -o, --output — Output format: text (default), json, csv, markdown

JSON output is useful for scripting:

andamio course modules  -o json | jq '.data[].course_module_code'

Environment

  • Preprod: andamio config set-url https://preprod.api.andamio.io
  • Mainnet: andamio config set-url https://mainnet.api.andamio.io
  • Custom: Set ANDAMIO_ALLOW_ANY_URL=1 then andamio config set-url

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.