cloud-agents-starter

Automate setup, build, and test workflows for the Scalar monorepo.

15.9k|914|Updated Aug 16, 2023
One-click install
npx skills add https://github.com/scalar/scalar --skill cloud-agents-starter
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloud-agents-starter
Source: https://github.com/scalar/scalar/tree/main/.agents/skills/cloud-agents-starter
Command: npx skills add https://github.com/scalar/scalar --skill cloud-agents-starter

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Minimal starter runbook provides a repeatable, lightweight setup to onboard cloud agents to the Scalar monorepo, reducing setup time and onboarding complexity by standardizing dependencies, builds, and tests.

Core Features & Use Cases

  • Install dependencies and prerequisites for the Scalar monorepo
  • Build all packages and prepare development environments
  • Run per-package dev servers and execute tests to validate changes
  • Troubleshoot common issues with a compact playbook and guided steps

Quick Start

Run pnpm install followed by pnpm build:packages to set up the monorepo, then start the desired package with pnpm --filter <package> dev.

Frequently Asked Questions about cloud-agents-starter

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up a pnpm monorepo for cloud agents?

To set up a pnpm monorepo for cloud agents, run pnpm install to install dependencies, then execute pnpm build:packages to build all packages and prepare the development environment.

Do I need Node.js v24 to run monorepo build and test workflows?

Yes, you need Node.js v24 and pnpm to run monorepo build and test workflows. These prerequisites ensure compatibility when installing dependencies and executing package-specific tests.

How do I start a development server for a specific package in a monorepo?

To start a development server for a specific package in a monorepo, use the command pnpm --filter <package> dev after completing the initial dependency installation and package builds.

What is the best way to standardize monorepo onboarding for automated agents?

Standardize monorepo onboarding for automated agents by using a minimal starter runbook that provides repeatable, lightweight steps for dependency installation, package builds, and test execution.

Can I troubleshoot common build and test issues in the Scalar monorepo?

Yes, you can troubleshoot common build and test issues in the Scalar monorepo using a compact playbook that documents guided steps to resolve typical setup and development server errors.

Why does my monorepo test workflow fail after dependency installation?

A monorepo test workflow might fail after dependency installation if packages are not built beforehand. Run pnpm build:packages to prepare the environment before executing tests across packages.