Skip to main content

Agent roster CLI

Project description

Myteam

myteam is a package for building agent systems where agents load their own roles and skills from files on disk.

The core model is simple:

  • users define roles, skills, and tools inside .myteam/
  • agents assume a role by running myteam get role <role>
  • agents load a skill by running myteam get skill <skill>
  • each loaded role or skill reveals the next layer of discoverable roles, skills, and tools

This makes myteam useful for hierarchical multi-agent systems where instructions should be explicit, inspectable, and versioned in Git.

Agent-Centered Workflow

myteam is primarily for agents, not humans.

A human author creates the role and skill structure. After that, the intended workflow is that agents load their own instructions.

Typical flow:

  1. A user or top-level agent sets up .myteam/.
  2. A sub-agent is assigned a role such as developer.
  3. That sub-agent runs myteam get role developer.
  4. myteam prints the role instructions plus any immediately available child roles, child skills, and tools.
  5. If the agent needs a skill, it runs myteam get skill <skill>.

In other words, roles and skills are loaded by the agent that is assuming them.

What Happens When An Agent Loads A Role

When an agent runs:

myteam get role developer

myteam executes that role's load.py, which:

  1. Prints the contents of role.md or ROLE.md
  2. Prints built-in guidance about roles, skills, and tools
  3. Lists the immediate child roles in that directory
  4. Lists the immediate child skills in that directory
  5. Lists Python tools in that directory

The same pattern applies to skills:

myteam get skill python/testing

This layered discovery is the main idea behind the package. An agent sees the instructions for its current node and the next available things it can assume or use.

Mental Model

myteam stores an agent system in plain files.

  • A role is a team member with instructions.
  • A skill is a reusable capability with instructions.
  • A tool is a Python script colocated with a role or skill.
  • A roster is a reusable bundle that can be downloaded into .myteam/.

Roles and skills are identified by definition files:

  • role directories contain role.md or ROLE.md
  • skill directories contain skill.md or SKILL.md

Each loadable node also has a load.py that prints the node's instructions and its immediate discoverable children.

Quick Start

Initialize a new agent system:

myteam init

This creates:

AGENTS.md
.myteam/
  .myteam-version
  load.py
  role.md

The root .myteam/ directory is the default root role.

If you want a different project-local root, pass --prefix <path> to the supported commands. For example, myteam init --prefix .agents creates the root role under .agents/.

The packaged builtins/ skill tree is available to load, but it is not created inside .myteam/.

Edit .myteam/role.md with the instructions that should be given to the default agent. Then that agent can load its instructions with:

myteam get role

The generated root role also tracks the myteam version that created the tree. If a newer installed myteam release is available later, the root role can alert the agent to review builtins/migration and builtins/changelog.

The packaged changelog ships inside the installed myteam package and can be printed directly with:

myteam changelog

Create a sub-role and a skill:

myteam new role developer
myteam new skill python
myteam new skill python/testing

That agent system now supports commands like:

myteam get role
myteam get role developer
myteam get skill python/testing

Directory Structure

Example:

AGENTS.md
.myteam/
  .myteam-version
  load.py
  role.md
  developer/
    load.py
    role.md
  python/
    load.py
    skill.md
    testing/
      load.py
      skill.md

In this layout:

  • the root agent runs myteam get role
  • a developer agent runs myteam get role developer
  • an agent needing the testing skill runs myteam get skill python/testing

Discovery is local to the node being loaded. An agent sees only the next layer beneath its current role or skill.

For nested roles or skills to be discoverable, each parent layer must also be defined. For example, python/testing is only visible if python itself exists as a loadable node.

Authoring Roles And Skills

Instruction files are Markdown.

Example role.md:

---
name: Developer
description: Implements product changes and fixes
---

You are responsible for writing and validating code changes.
Load relevant skills before implementing complex work.
Delegate frontend work to `frontend` if that role is available.

Example skill.md:

---
name: Python Testing
description: Test-writing and debugging guidance
---

Prefer focused tests before broad suites.
Use the existing project test helpers where available.

Behavior:

  • YAML frontmatter is stripped before the instructions are printed to the agent
  • name and description are used for listings when present
  • if frontmatter metadata is absent, myteam falls back to info.md when available

Commands

myteam init [--prefix <path>]

Creates the root role in the selected local root and AGENTS.md in the current directory.

It also:

  • stores the current myteam version in the local root's .myteam-version
  • makes the packaged builtins/ maintenance skills available to load later

Use --prefix <path> to scaffold the local tree somewhere other than .myteam/.

myteam new role <path> [--prefix <path>]

Creates a new role under the selected local root with:

  • role.md
  • load.py

Examples:

myteam new role developer
myteam new role engineer/frontend
myteam new role developer --prefix .agents

myteam new skill <path> [--prefix <path>]

Creates a new skill under the selected local root with:

  • skill.md
  • load.py

The reserved builtins/ namespace is not available for project-defined skills.

Examples:

myteam new skill python
myteam new skill python/testing
myteam new skill research
myteam new skill research/literature-review
myteam new skill python/testing --prefix .agents

myteam get role [path] [--prefix <path>]

Loads a role's instructions.

  • omit path to load the root role at the selected local root
  • use slash-delimited paths for nested roles
  • when the root role was scaffolded by myteam init, it may print an upgrade notice if the installed myteam version is newer than the tracked version for that local root

Examples:

myteam get role
myteam get role developer
myteam get role engineer/frontend
myteam get role developer --prefix .agents

myteam get skill <path> [--prefix <path>]

Loads a skill's instructions.

Paths under builtins/ resolve from the packaged built-in skill tree. All other skill paths resolve from the selected project-local tree.

Examples:

myteam get skill python/testing
myteam get skill research/literature-review
myteam get skill python/testing --prefix .agents

myteam start <path> [--prefix <path>] [--verbose]

Executes a workflow definition from the selected local root.

  • use slash-delimited workflow paths such as dev/frontend
  • workflow paths are resolved starting from the selected local root, which acts as the reference point for lookup
  • relative segments in workflow paths are allowed
  • workflow files are resolved with standard YAML extensions
  • later workflow steps may reference completed state from earlier steps

Examples:

myteam start dev/frontend
myteam start release/checklist --prefix .agents
myteam start dev/frontend --verbose

myteam workflow-result [--json <json> | --text <text>]

Submits the structured result for the current workflow step.

This command is primarily agent-facing. Workflow prompts use it to report a final payload back to the parent workflow runner over the private result channel for that step.

Examples:

myteam workflow-result --json '{"summary":"done"}'
myteam workflow-result --text "done"
printf '{"summary":"done"}\n' | myteam workflow-result

myteam changelog

Prints the packaged myteam changelog from the installed release.

This command reads the same packaged changelog source used by builtins/changelog.

myteam remove <path> [--prefix <path>]

Deletes a role or skill directory from the selected local root.

Use --prefix <path> to remove from a different local root.

myteam list

Lists available downloadable rosters from the default roster repository.

myteam download <roster> [destination] [--prefix <path>]

Downloads a folder roster into the selected local root by default.

By default, the roster path is preserved under .myteam/, so myteam download skills/foo installs into .myteam/skills/foo/. If you provide a destination path, that path becomes the managed install root under .myteam/.

Use --prefix <path> to change that default managed root. For example, myteam download skills/foo --prefix .agents installs into .agents/skills/foo/.

Each downloaded folder gets a .source.yml file at its root so future commands can track where it came from.

If the destination already exists, myteam download fails instead of merging into it:

  • if the existing folder is the same managed source, run myteam update <path> instead
  • if the existing folder is unrelated content, delete it or choose a different destination

myteam update [path] [--prefix <path>]

Refreshes one managed roster install or all managed installs under the selected local root from their recorded source metadata.

Use --prefix <path> to scan or resolve managed installs under a different local root.

This uses the same managed-install behavior as myteam download after replacing the existing managed subtree root.

Single-file roster downloads are not supported.

Useful when you want to seed an agent system from a reusable template instead of authoring it from scratch.

There is no dedicated myteam migrate CLI command.

For upgrade work:

  • load myteam get skill builtins/migration to review packaged migration guidance
  • load myteam get skill builtins/changelog to review newer release notes
  • apply approved project-specific edits manually, including any .myteam version-file update

Workflows

Note: workflows are an experimental feature and are likely to evolve and change

myteam can also run authored workflows from the project-local tree.

Store workflow files under the selected local root. For example, this command:

myteam start dev/frontend

looks for a workflow file such as:

.myteam/dev/frontend.yaml

If you use --prefix .agents, the same workflow path is resolved under .agents/ instead. The selected local root is the reference point for resolution, not a containment boundary.

Workflow files are YAML mappings where each top-level key is a step name. Each step defines:

  • prompt: the objective for that step
  • agent: optional agent name; omit it to use the default agent
  • input: optional structured input data
  • output: the expected shape of the step's final structured result

Example:

gather_context:
  prompt: Review the current implementation and summarize the relevant files.
  output:
    summary: Brief summary
    files:
      primary: Main file path
      tests: Test file path

draft_change:
  prompt: Propose the implementation plan for the requested change.
  input:
    prior_summary: $gather_context.output.summary
    primary_file: $gather_context.output.files.primary
  output:
    plan: Concise implementation plan
    risks: Key risks or open questions

Notes:

  • step names should use identifier-style names such as gather_context
  • $step_name.output... references pull data from earlier completed steps
  • the step agent reports its final structured result by calling myteam workflow-result
  • myteam start stops at the first failing step and does not continue to later steps
  • --verbose writes workflow lifecycle logs to standard error
  • successful myteam start runs currently mirror workflow session terminal output; they do not yet print a separate final structured payload on stdout

Why Use Myteam

  • agents load their own instructions directly from the filesystem
  • roles and skills are explicit, inspectable, and Git-friendly
  • discovery is layered, which fits hierarchical agent systems
  • tools can live next to the roles and skills that use them
  • rosters let you reuse agent-system structures across projects
  • workflows let you create predefined, deterministic agent workflows

Installation

pip install myteam

Requirements

  • Python 3.11+

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

myteam-0.2.13.tar.gz (33.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

myteam-0.2.13-py3-none-any.whl (52.9 kB view details)

Uploaded Python 3

File details

Details for the file myteam-0.2.13.tar.gz.

File metadata

  • Download URL: myteam-0.2.13.tar.gz
  • Upload date:
  • Size: 33.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for myteam-0.2.13.tar.gz
Algorithm Hash digest
SHA256 0f3ba2d0240f71eecd5a01c5697e78f9aad08012b68ae81602eee270666cb810
MD5 b6c05594d3d2ecd47b7cdf34d184f986
BLAKE2b-256 82b24ea55c9320c98b8f67004272d1cee06fb0a8c6976a8bba474fc3759b4e35

See more details on using hashes here.

Provenance

The following attestation bundles were made for myteam-0.2.13.tar.gz:

Publisher: publish-pypi.yml on beanlab/myteam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file myteam-0.2.13-py3-none-any.whl.

File metadata

  • Download URL: myteam-0.2.13-py3-none-any.whl
  • Upload date:
  • Size: 52.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for myteam-0.2.13-py3-none-any.whl
Algorithm Hash digest
SHA256 73a99dfb54b1b22c9e0a59d8d1887ecba9da6149f4798fc7665b76f75615dce1
MD5 49f6df3092a2ba4a27e0a2db3fd8559c
BLAKE2b-256 50840713faaaf5343fbc30871abcb59bac22906eed36d3133fc82d5972d9f636

See more details on using hashes here.

Provenance

The following attestation bundles were made for myteam-0.2.13-py3-none-any.whl:

Publisher: publish-pypi.yml on beanlab/myteam

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page