kata-make-dev-install-framework

Installs the Ahrena framework for development by executing the appropriate dev-install command from the repository root.

Updated Sep 3, 2025
One-click install
npx skills add https://github.com/guardiatechnology/design-system --skill kata-make-dev-install-framework
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: kata-make-dev-install-framework
Source: https://github.com/guardiatechnology/design-system/tree/main/.claude/skills/kata-make-dev-install-framework
Command: npx skills add https://github.com/guardiatechnology/design-system --skill kata-make-dev-install-framework

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

It reduces the friction of setting up the Ahrena framework for development by guiding you to run the correct dev-install flow from the proper repository root and terminal.

Core Features & Use Cases

  • Correct command selection: Determines whether to run make dev-install or an equivalent python scripts/install.py --local --target ... approach based on what the environment supports.
  • Repo-root verification: Ensures the workflow is executed from the Ahrena repository root by checking for required directories/files like framework/ and scripts/install.py.
  • Environment-aware execution: Picks an appropriate terminal using .ahrena/.directives (or OS inference) and captures results for reliable reporting.

Use case: a developer clones the repository fresh, then needs a local dev-install of the framework without guessing commands, working directories, or terminal setup.

Quick Start

Run the dev-install workflow from the Ahrena repository root by executing the skill instructions in SKILL.md and following the detected command path for dev-install.

Frequently Asked Questions about kata-make-dev-install-framework

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

FAQPage Schema
How do I run a local dev-install of the Ahrena framework from the repository root?

To run a local dev-install, execute the workflow from the Ahrena repository root, which verifies the required directory structure and then runs either the make dev-install command or the equivalent python scripts/install.py --local --target execution path.

What's the best way to automate local setup for a repository using make and install scripts?

Automating local setup is handled by verifying the repository root structure for required files like framework/ and scripts/install.py, then executing the correct dev-install command while capturing stdout and stderr for reliable reporting.

How does terminal detection work when running a make dev-install command?

Terminal detection for a make dev-install command works by reading the .ahrena/.directives file when available, or by inferring the operating system, to pick an appropriate terminal for environment-aware execution of the install scripts.

Do I need a specific directory structure before running a local framework installation?

Yes, a local framework installation requires the repository root to contain specific directories and files like the framework/ folder and scripts/install.py, ensuring the dev-install workflow executes from the correct working directory.

Why does my make dev-install fail with a working directory error?

A make dev-install fails with a working directory error when the workflow is not executed from the Ahrena repository root, which is verified by checking for required directories like framework/ before attempting the installation.

Can I use python install scripts instead of make for a local framework setup?

Yes, you can use python scripts for a local framework setup by running the equivalent python scripts/install.py --local --target command when the environment does not support the make dev-install approach.