Files
attune/docker/distributable/packs/core/pack.yaml
David Culbreth 938c271ff5
Some checks failed
CI / Rustfmt (push) Successful in 22s
CI / Cargo Audit & Deny (push) Successful in 36s
CI / Security Blocking Checks (push) Successful in 6s
CI / Web Blocking Checks (push) Successful in 53s
CI / Web Advisory Checks (push) Successful in 34s
Publish Images / Resolve Publish Metadata (push) Successful in 1s
CI / Security Advisory Checks (push) Successful in 38s
CI / Clippy (push) Successful in 2m7s
Publish Images / Publish Docker Dist Bundle (push) Failing after 19s
Publish Images / Publish web (amd64) (push) Successful in 49s
Publish Images / Publish web (arm64) (push) Successful in 3m31s
CI / Tests (push) Successful in 8m48s
Publish Images / Build Rust Bundles (amd64) (push) Successful in 12m42s
Publish Images / Build Rust Bundles (arm64) (push) Successful in 12m19s
Publish Images / Publish agent (amd64) (push) Successful in 26s
Publish Images / Publish api (amd64) (push) Successful in 38s
Publish Images / Publish notifier (amd64) (push) Successful in 42s
Publish Images / Publish executor (amd64) (push) Successful in 46s
Publish Images / Publish agent (arm64) (push) Successful in 56s
Publish Images / Publish api (arm64) (push) Successful in 1m52s
Publish Images / Publish executor (arm64) (push) Successful in 2m2s
Publish Images / Publish notifier (arm64) (push) Successful in 2m3s
Publish Images / Publish manifest attune/agent (push) Successful in 6s
Publish Images / Publish manifest attune/api (push) Successful in 11s
Publish Images / Publish manifest attune/executor (push) Successful in 10s
Publish Images / Publish manifest attune/notifier (push) Successful in 8s
Publish Images / Publish manifest attune/web (push) Successful in 8s
distributable, please
2026-03-26 12:26:23 -05:00

98 lines
2.0 KiB
YAML

# Attune Core Pack
# Built-in core functionality including timers, utilities, and basic actions
ref: core
label: "Core Pack"
description: "Built-in core functionality including timer triggers, HTTP utilities, and basic shell actions"
version: "1.0.0"
author: "Attune Team"
email: "core@attune.io"
# Pack is a system pack (shipped with Attune)
system: true
# Pack configuration schema (StackStorm-style flat format)
conf_schema:
max_action_timeout:
type: integer
description: "Maximum timeout for action execution in seconds"
default: 300
minimum: 1
maximum: 3600
enable_debug_logging:
type: boolean
description: "Enable debug logging for core pack actions"
default: false
# Default pack configuration
config:
max_action_timeout: 300
enable_debug_logging: false
# Pack metadata
meta:
category: "system"
keywords:
- "core"
- "utilities"
- "timers"
- "http"
- "shell"
# Python dependencies for Python-based actions
python_dependencies:
- "requests>=2.28.0"
- "croniter>=1.4.0"
# Documentation
documentation_url: "https://docs.attune.io/packs/core"
repository_url: "https://github.com/attune-io/attune"
# Pack tags for discovery
tags:
- core
- system
- utilities
- timers
# Runtime dependencies
runtime_deps:
- shell
- native
# Enabled by default
enabled: true
# Pack Testing Configuration
testing:
# Enable testing during installation
enabled: true
# Test discovery method
discovery:
method: "directory"
path: "tests"
# Test runners by runtime type
runners:
shell:
type: "script"
entry_point: "tests/run_tests.sh"
timeout: 60
result_format: "simple"
python:
type: "unittest"
entry_point: "tests/test_actions.py"
timeout: 120
result_format: "simple"
# Test result expectations
result_path: "tests/results/"
# Minimum passing criteria (100% tests must pass)
min_pass_rate: 1.0
# Block installation if tests fail
on_failure: "block"