forked from cleveragents/cleveragents-core
20 lines
652 B
YAML
20 lines
652 B
YAML
# ============================================================================
|
|
# Simple Action — Minimal Valid Configuration
|
|
# ============================================================================
|
|
# Demonstrates a minimal action with only required fields.
|
|
# Create: agents action create --config examples/actions/simple.yaml
|
|
# ============================================================================
|
|
|
|
name: local/lint-check
|
|
description: "Run linting checks on the project"
|
|
|
|
strategy_actor: local/strategist
|
|
execution_actor: local/executor
|
|
|
|
definition_of_done: |
|
|
All linting checks pass with zero errors.
|
|
|
|
reusable: true
|
|
read_only: true
|
|
|