npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

agent-team-manager

v0.1.0

Published

Manage Claude agent teams — create, assign tasks, track progress, persist context across sessions

Readme

Agent Team Manager

Manage Claude agent teams — create, assign tasks, track progress, persist context across sessions.

Agent Team Manager (ATM) là npm package cho phép bạn tạo và quản lý nhiều Claude agent như một team. Mỗi agent có vai trò riêng, nhận task cụ thể, và toàn bộ context được lưu vào JSON file trên disk — để Claude có thể đọc lại và tiếp tục công việc mà không mất context.


Features

  • Team Management — Tạo, liệt kê, xem chi tiết, xóa team
  • Agent Management — Thêm agent với role và specialty
  • Task Management — Phân công task, cập nhật trạng thái (pending → in_progress → done)
  • Context Persistence — Lưu goal, notes, checkpoint vào JSON file để Claude đọc được
  • CLI + SDK — Dùng qua command line hoặc import vào code TypeScript/JavaScript

Tech Stack

TypeScript · Node.js ≥18 · Commander.js · Vitest · Biome


Quick Start

Install

npm install -g agent-team-manager

Hoặc dùng local trong project:

npm install agent-team-manager

CLI Usage

# Tạo team mới
atm team:create -n "Web App Team" -g "Build a full-stack web app"

# Liệt kê tất cả teams
atm team:list

# Xem chi tiết team
atm team:show <teamId>

# Thêm agent vào team
atm agent:add <teamId> -n "Alice" -r "Frontend Dev" -s "React"

# Thêm task
atm task:add <teamId> -t "Build login page" -p high

# Cập nhật trạng thái task
atm task:update <teamId> <taskId> -s done

# Liệt kê tasks
atm task:list <teamId>

# Cập nhật team context
atm context:update <teamId> -g "Build a web app" -p "Phase 1: Setup"

SDK Usage

import { AgentTeamManager } from 'agent-team-manager';

const atm = new AgentTeamManager();
await atm.init();

// Tạo team
const team = await atm.createTeam({
  name: 'My Team',
  goal: 'Build a web app',
});

// Thêm agent
const alice = await atm.addAgent(team.id, {
  name: 'Alice',
  role: 'Frontend Dev',
  specialty: 'React',
});

// Thêm task
const task = await atm.addTask(team.id, {
  title: 'Build login page',
  assignedAgentId: alice.id,
  priority: 'high',
});

// Cập nhật task
await atm.updateTask(team.id, task.id, { status: 'done' });

Storage

Data được lưu tại ~/.agent-team-manager/teams/:

~/.agent-team-manager/teams/
├── {teamId}.json         # Full team state
└── {teamId}/
    ├── context.json       # Context (Claude-readable)
    └── shared/            # Shared files giữa agents

Đặt custom storage directory:

const atm = new AgentTeamManager({ storageDir: '/path/to/data' });

Documentation


Development

# Install dependencies
npm install

# Build TypeScript
npm run build

# Run tests
npm test

# Lint
npm run lint

# Format
npm run format

License

MIT