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

@h4shed/skill-project-manager-skill

v1.0.6

Published

Task and project management skill for tracking work items and team collaboration

Readme

Project Manager Skill

Task and project management skill for team collaboration in Fused Gaming MCP.

Overview

The Project Manager Skill provides tools for creating tasks, managing team workload, tracking progress, and maintaining project organization.

Features

  • ✅ Task creation and management
  • ✅ Status tracking (todo, in-progress, review, done, blocked)
  • ✅ Priority-based task organization
  • ✅ Team member assignment
  • ✅ Time tracking and estimation
  • ✅ Task dependencies and blocking
  • ✅ Labels and categorization
  • ✅ Metrics and reporting

Installation

npm install
npm run build

Usage

Create a Task

import { createTask } from '@fused-gaming/skill-project-manager-skill';

const task = createTask({
  title: 'Implement Daily Review Skill',
  description: 'Create session tracking and metrics aggregation',
  projectId: 'proj_123',
  priority: 'high',
  assignee: 'Alice',
  dueDate: '2026-04-15',
  estimatedHours: 8,
  labels: ['feature', 'backend']
});

Update Task Status

import { updateTaskStatus } from '@fused-gaming/skill-project-manager-skill';

const inProgress = updateTaskStatus(task, 'in-progress');
const completed = updateTaskStatus(inProgress, 'done');

Assign and Track Time

import { assignTask, logTaskTime } from '@fused-gaming/skill-project-manager-skill';

const assigned = assignTask(task, 'Bob');
const timeLogged = logTaskTime(assigned, 3);  // 3 hours

Get Metrics

import { calculateMetrics } from '@fused-gaming/skill-project-manager-skill';

const metrics = calculateMetrics(tasks);
console.log(`Completion: ${metrics.completionPercentage}%`);
console.log(`Overdue tasks: ${metrics.overdueTasks}`);
console.log(`Time spent: ${metrics.totalActualHours} hours`);

API

Types

Task

interface Task {
  id: string;
  title: string;
  status: 'todo' | 'in-progress' | 'in-review' | 'done' | 'blocked';
  priority: 'critical' | 'high' | 'medium' | 'low';
  assignee?: string;
  dueDate?: string;
  estimatedHours?: number;
  actualHours?: number;
  labels?: string[];
  dependencies?: string[];
  blockedBy?: string[];
}

TaskMetrics

interface TaskMetrics {
  totalTasks: number;
  completedTasks: number;
  completionPercentage: number;
  overdueTasks: number;
  totalEstimatedHours: number;
  totalActualHours: number;
}

Functions

createTask(input): Task

Creates a new task with specified properties.

updateTaskStatus(task, newStatus): Task

Updates task status and auto-sets completedAt if marked done.

assignTask(task, assignee): Task

Assigns task to a team member.

logTaskTime(task, hours): Task

Logs time spent on a task.

calculateMetrics(tasks): TaskMetrics

Calculates aggregate metrics for a task list.

validateTask(task): {valid, errors}

Validates task data structure and content.

Task Statuses

  • todo - New, unstarted task
  • in-progress - Currently being worked on
  • in-review - Completed but awaiting review
  • done - Finished and approved
  • blocked - Cannot proceed due to dependency or issue

Priority Levels

  • critical - Must be done immediately
  • high - Important, address soon
  • medium - Standard priority
  • low - Can wait if necessary

Workload Management

Track team capacity and utilization:

const workload = calculateWorkload(tasks, team);
workload.forEach(member => {
  console.log(`${member.memberName}: ${member.completedCount}/${member.assignedCount}`);
  console.log(`Utilization: ${member.utilization}%`);
});

Integration with Other Skills

With Project Status Tool

const dashboard = generateDashboard({
  projects: projects.map(p => ({
    ...p,
    tasks: tasks.filter(t => t.projectId === p.id),
    stats: calculateMetrics(tasks)
  }))
});

With Daily Review Skill

const review = generateDailyReview({
  accomplishments: completedTasks.map(t => `Completed: ${t.title}`),
  notes: `Completed ${metrics.completedTasks} tasks today`
});

Development Status

  • [x] Task creation and management
  • [x] Status tracking
  • [x] Assignee management
  • [x] Time tracking
  • [x] Metrics calculation
  • [ ] Sprint management
  • [ ] Burndown charts
  • [ ] Team workload visualization
  • [ ] Dependency resolution
  • [ ] Automated notifications

License

Apache-2.0