greeter

Appends a friendly line to HELLO.md to demonstrate profile compilation and execution.

Updated Sep 2, 2026
One-click install
npx skills add https://github.com/volter-ai/open-autonomy-compiler --skill greeter-volter-ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: greeter
Source: https://github.com/volter-ai/open-autonomy-compiler/tree/main/profiles/hello/skills/greeter
Command: npx skills add https://github.com/volter-ai/open-autonomy-compiler --skill greeter-volter-ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Verifying that an open-autonomy profile actually compiles and runs on a substrate is hard without a trivial end-to-end test case. This Skill provides a minimal agent that exercises the full compile(profile, substrate) → installation → run path with zero domain or tooling dependencies. ## Core Features & Use Cases - Minimal agent behavior: Appends one friendly line to HELLO.md at the repository root, creating the file if it does not exist, then stops. - End-to-end pipeline demo: Demonstrates how a profile compiles onto a substrate (GitHub Actions or local runner) and produces a working installation. - Use Case: After installing open-autonomy on a new repository, run the greeter agent to confirm the installation works before configuring real maintenance agents. ## Quick Start Run the greeter agent from the compiled hello profile and check that a friendly line was appended to HELLO.md at the repository root.

Frequently Asked Questions about greeter

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

FAQPage Schema
How do I verify an open-autonomy installation works?▼

Run the greeter agent from the hello profile after compiling and installing it on your substrate. If a friendly line appears in HELLO.md at the repository root, the full compile-to-run path is working.

What does the greeter agent do when it runs?▼

The greeter appends one friendly line to HELLO.md at the repository root, creating the file if it is missing, and then stops. It performs no other actions.

Does the greeter skill require any dependencies or tooling?▼

No, the greeter has no domain or tooling dependencies. It only needs the compiled installation produced from the hello profile on your chosen substrate.

Can I run the greeter on both GitHub Actions and a local runner?▼

Yes, the hello profile is substrate-agnostic and compiles onto either GitHub Actions or a local machine loop. The greeter behaves identically on both substrates.

When should I use the greeter instead of a real agent?▼

Use the greeter only as a smoke test to validate a new installation or profile changes. It is a demo agent with no maintenance capabilities, so switch to real agents for actual repository work.