Skip to content

v1.5.0

Latest

Choose a tag to compare

@github-actions github-actions released this 06 Aug 00:22
· 29 commits to main since this release
baada13

New in v1.5.0 — thin workstation via uv tool (agent-toolkit delegation)

This release makes agentic-workstation a thin provisioning layer — all skills/packs/personas/agents/MCPs/loops/prompts are now delegated to agent-toolkit via uv tool.

  • uv tool install --force agent-toolkit-cli && agent-toolkit install is the sole install path (see docs/AGENT_TOOLKIT.md thin diagram)
  • Remove 340 files (-16109): 21 embedded skills, 7 loops, 6 MCP, prompts/scopes/templates and per-tool agents/skills symlinks — replaced by README.md delegating placeholders
  • Chezmoi: run_once_after_50-install-agent-toolkit.sh.tmpl only uv+install, run_onchange_45 thin delegation + dots-skills sync (CI hermetic skip)
  • CI: verify-release-dump, assert-install-layout, validate-skills and generate-skill-index now handle thin (0 embedded skills) — 23 checks pass
  • Continues Muse Code support from v1.4.0 (muse, ~/.config/muse/skills)

agentic-workstation AI Assets v1.5.0

Pre-built AI skills, agents, and tools for the agentic-workstation users.
Install on any machine — no chezmoi required.

Non-developers: follow the step-by-step guide at
docs/wiki/GUIDED_AI_INSTALL.md.

Included Skills

  • README.md

Quick Install (Linux / macOS / WSL2)

Install everything:

curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh

Install for a specific tool:

# Claude Code / Claude Desktop
curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh -s -- --tool claude

# OpenCode
curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh -s -- --tool opencode

# Cursor
curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh -s -- --tool cursor

# Windsurf
curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh -s -- --tool windsurf

# GitHub Copilot (VS Code / custom instructions file)
curl -fsSL https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.sh | sh -s -- --tool copilot

Quick Install (Windows — PowerShell)

irm https://github.com/ulises-jeremias/agentic-workstation/releases/download/v1.5.0/install-skills.ps1 | iex

Manual Installation

Claude Desktop (macOS / Linux / Windows)

Extract dots-workstation-agents-claude-v1.5.0.zip and copy:

  • dot_claude/agents/~/.claude/agents/ (macOS/Linux)
  • dot_claude/agents/%USERPROFILE%\.claude\agents\ (Windows)

OpenCode

Extract dots-workstation-agents-opencode-v1.5.0.zip and copy:

  • dot_config/opencode/agents/~/.config/opencode/agents/
  • dot_config/opencode/skills/~/.config/opencode/skills/

Cursor

Extract dots-workstation-agents-cursor-v1.5.0.zip and copy:

  • dot_cursor/rules/~/.cursor/rules/
  • dot_cursor/skills/~/.cursor/skills/

Windsurf

Extract dots-workstation-agents-windsurf-v1.5.0.zip and copy:

  • dot_windsurf/rules/~/.windsurf/rules/

GitHub Copilot

Extract dots-workstation-agents-copilot-v1.5.0.zip and copy:

  • dot_github/copilot-instructions.md~/.github/copilot-instructions.md (macOS/Linux)
  • dot_github/copilot-instructions.md%USERPROFILE%\.github\copilot-instructions.md (Windows)

Skills only (any tool)

Extract dots-workstation-skills-v1.5.0.zip and copy the skills/ directory:

  • macOS/Linux: ~/.local/share/agentic-workstation/skills/
  • Windows: %USERPROFILE%\.local\share\agentic-workstation\skills\

Full Workstation Setup

For a complete agentic-workstation workstation setup (toolchain + AI agents):

# macOS / Linux / WSL2
bash <(curl -fsSL https://raw.githubusercontent.com/ulises-jeremias/agentic-workstation/main/install.sh)
# Windows (auto-detects WSL2)
irm https://raw.githubusercontent.com/ulises-jeremias/agentic-workstation/main/install.ps1 | iex

How these artifacts are built

Bundles are produced from the chezmoi target state after apply, driven by scripts/release-artifacts.json and scripts/build-release-artifacts.py (chezmoi archive / tar). See docs/wiki/RELEASES.md.