ActonOS Setup Skill

SkillDev tools

Skill for initial ActonOS project setup, environment verification, and dependency installation.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the ActonOS Setup Skill skill

What this skill tells your AI

The instructions your AI receives, as published by actonos/actonos in .agents/skills/actonos-setup/SKILL.md and read by ahel’s review.

Use this skill when setting up the ActonOS development environment from scratch or verifying an existing setup.

Prerequisites Checklist

Before starting development, verify the following tools are installed:

ToolMin VersionVerification CommandInstall Guide
Go1.26+go versionhttps://go.dev/dl/
Node.js22 LTS+node --versionhttps://nodejs.org/
npm10+npm --versionBundled with Node.js
Make4.0+make --versionapt install make or choco install make
Git2.40+git --versionhttps://git-scm.com/

Optional Tools

ToolPurposeInstallation
Docker 24+Container buildshttps://docs.docker.com/get-docker/
golangci-lintGo lintinggo install github.com/golangci-lint/golangci-lint/cmd/golangci-lint@latest
airGo live-reloadgo install github.com/air-verse/air@latest

Setup Steps

Step 1: Clone and Initialize

git clone https://github.com/actonos/actonos.git
cd actonos

Step 2: Install Dependencies

make deps

This runs:

  1. go mod download && go mod verify — downloads Go modules
  2. cd web && npm ci — installs Node packages

Step 3: Create Dev Environment

# Create local data directory for development
mkdir -p dev-data/{config,agents,tokens,storage,logs,overrides,plugins,skills,mcp-servers,workspace}

Step 4: Create Local Environment File

Create .env in the project root (not committed):

RUNTIME_MODE=docker
LOG_LEVEL=debug
LISTEN_ADDR=:8080
DATA_DIR=./dev-data
DISABLE_TAILSCALE=true
DISABLE_SANDBOX=true

Step 5: Verify Setup

# Check Go modules
go mod verify

# Check frontend dependencies
cd web && npm ls --depth=0

# Try a build
make build-only

# Run tests
make test-unit

Step 6: Start Development Server

make dev

This starts:

  • Go backend at http://localhost:8080
  • Vite frontend at http://localhost:5173

Troubleshooting

IssueSolution
CGO_ENABLED errorEnsure using modernc.org/sqlite, not mattn/go-sqlite3
Node version mismatchUse nvm install 22 and nvm use 22
Port conflictSet LISTEN_ADDR=:8081 in .env
Permission denied on scriptsRun chmod +x scripts/*.sh

Reference Files

Signals

GitHub stars
88
Last commit
Aug 2026
Advanced
Catalog kind
skill
Gateway key
actonos-setup
Source
github.com/actonos/actonos