setup-agent-tasks

Set up agent tasks for a child project using task-cli with JSON configs.

Updated Mar 28, 2025
One-click install
npx skills add https://github.com/gileck/app-template-ai --skill setup-agent-tasks
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: setup-agent-tasks
Source: https://github.com/gileck/app-template-ai/tree/main/.ai/skills/template/setup-agent-tasks
Command: npx skills add https://github.com/gileck/app-template-ai --skill setup-agent-tasks

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill streamlines the initial setup of automated agent tasks for a child project by configuring two task types with task-cli: workflow agents and a repository-commits code reviewer.

Core Features & Use Cases

  • Create the required folder structures (agent-tasks/all and agent-tasks/repo-commits-code-reviewer) and provide sample config.json files for both task types.
  • Register tasks with task-cli and verify their status to ensure reliable, scheduled execution in the new project.
  • Use this skill when bootstrapping a fresh project to ensure consistent, repeatable agent management across repositories.

Quick Start

Use Task CLI to bootstrap and register the two agent tasks for your project:

  • Create the folders agent-tasks/all and agent-tasks/repo-commits-code-reviewer.
  • Create config.json files with the fields shown in the examples.
  • Run task-cli create --config=./agent-tasks/all/config.json to register the workflow-agents task.
  • Run task-cli create --config=./agent-tasks/repo-commits-code-reviewer/config.json to register the code-reviewer task.
  • Verify both tasks with task-cli get <repo-name>:agent:all and task-cli get <repo-name>:agent:repo-commits-code-reviewer.

Frequently Asked Questions about setup-agent-tasks

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

FAQPage Schema
How do I set up automated workflow agents for a new project?

To set up automated workflow agents for a new project, create the agent-tasks/all and repo-commits-code-reviewer folders, add config.json files, and register them with task-cli. This scaffolds the required structure and ensures scheduled execution.

What is the best way to automate code review in a bootstrapped project?

Automating code review in a bootstrapped project involves registering a repository-commits code reviewer agent using task-cli. You create a specific config.json in the agent-tasks folder and run task-cli create to enable automated review.

Do I need Node and npm installed to use task-cli for project bootstrapping?

Yes, project bootstrapping with task-cli requires a Node/npm environment. You must have task-cli installed globally to create folder scaffolding, register agent tasks, and verify their execution status.

How do I verify that my task-cli agent registration was successful?

To verify agent registration was successful, run task-cli get <repo-name>:agent:all and task-cli get <repo-name>:agent:repo-commits-code-reviewer. These commands check both task types and confirm reliable scheduled execution.

What config files are needed to register workflow agents and code reviewers?

Registering workflow agents and code reviewers requires two JSON config files located in agent-tasks/all/config.json and agent-tasks/repo-commits-code-reviewer/config.json. These files define the task parameters for task-cli registration.