Install and run your first local task
Install and run your first local task
By the end of this tutorial you will have devops-skill installed for a project agent, and you will have initialized and finished one local-workflow tracing record.
Prerequisites
- Node.js is not required for the skills themselves; Python 3 and git are.
- An AI agent that loads skills from
.agents/skills(Codex) or an equivalent path. - A git repository where you can create
tasks/.
Steps
Clone or open the devops-skill repository.
From a target project root, install project-level skills (adjust path if you vendor the repo elsewhere):
bash /path/to/devops-skill/dev-workflow-install.sh --projectCreate a sample task file:
mkdir -p tasks cat > tasks/hello.md <<'EOF' # Hello local workflow Write a one-line note that local-workflow tracing works. EOFInitialize tracing:
python3 .agents/skills/local-workflow/scripts/orchestrate.py init tasks/hello.mdComplete the tiny task (for example add
notes/hello.txtwith one line), then finish:python3 .agents/skills/local-workflow/scripts/orchestrate.py finishOpen
tasks/tracing/hello.mdand confirm status is completed.
You have completed a first local-workflow loop without creating a GitHub Issue.