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 🙏

© 2025 – Pkg Stats / Ryan Hefner

taskmaster-cohere

v1.0.0

Published

Assistant de gestion de tâches alimenté par Cohere AI

Readme

TaskMaster Cohere

Un outil de gestion de tâches alimenté par l'IA Cohere, conçu pour générer et gérer des tâches de projet de manière intelligente.

Fonctionnalités

  • 🤖 Génération de tâches basée sur l'IA
  • 📝 Analyse automatique de PRD
  • 🔄 Gestion des sous-tâches
  • 📊 Priorisation intelligente
  • 🛠️ Interface CLI complète
  • 🔌 Support MCP (Multi-Cursor Protocol)

Limites et Recommandations

Gestion des Tokens

  • Limite maximale : 4000 tokens par requête
  • Pour les PRDs volumineux :
    • Découpez le document en sections logiques
    • Utilisez la commande validate-prd sur chaque section
    • Combinez les résultats avec --append
  • Estimation des tokens : ~4 caractères = 1 token

Bonnes Pratiques PRD

  • Visez 2000-3000 tokens pour une validation optimale
  • Structurez votre PRD en sections claires
  • Évitez les répétitions inutiles
  • Utilisez des listes à puces pour la concision

Installation

npm install -g taskmaster-cohere

Configuration

  1. Créez un compte sur Cohere
  2. Obtenez votre clé API
  3. Initialisez votre projet :
taskmaster init
  1. Configurez votre clé API dans le fichier .env :
COHERE_API_KEY=your_api_key_here

Utilisation

Commandes CLI

  1. Initialisation
taskmaster init
  1. Analyse de PRD
taskmaster parse-prd chemin/vers/prd.md
  1. Liste des tâches
taskmaster list
  1. Prochaine tâche
taskmaster next
  1. Génération de tâche
taskmaster generate "Description de la tâche à générer"

Intégration MCP

TaskMaster supporte le protocole MCP pour une intégration transparente avec les éditeurs de code. Configuration dans cursor rules/mcp-cohere.json.

Configuration Avancée

Personnalisation du modèle

{
  "cohere": {
    "model": "command",
    "maxTokens": 2000,
    "temperature": 0.2
  }
}

Gestion des sous-tâches

{
  "project": {
    "defaultSubtasks": 5,
    "defaultPriority": "medium"
  }
}

Développement

  1. Cloner le dépôt
  2. Installer les dépendances :
npm install
  1. Lancer les tests :
npm test

Licence

MIT

Contribution

Les contributions sont les bienvenues ! Consultez notre guide de contribution pour plus de détails.

Intégration avec Cursor

Configuration dans un nouveau projet

  1. Créez le dossier de configuration dans votre projet :
mkdir -p .cursor/rules
  1. Créez le fichier mcp-cohere.json dans .cursor/rules :
{
  "mcpServers": {
    "taskmaster-cohere": {
      "command": "npx",
      "args": ["-y", "--package=taskmaster-cohere", "taskmaster-cohere"],
      "env": {
        "COHERE_API_KEY": "VOTRE_CLE_API_ICI",
        "MODEL": "command",
        "MAX_TOKENS": "4000",
        "TEMPERATURE": "0.2",
        "DEFAULT_SUBTASKS": "5",
        "DEFAULT_PRIORITY": "medium"
      }
    }
  }
}
  1. Créez un fichier .env à la racine de votre projet :
COHERE_API_KEY=votre_clé_api_cohere_ici

Utilisation dans Cursor

  1. Ouvrez la palette de commandes Cursor (Ctrl+Shift+P)
  2. Tapez "Reload Window" et exécutez la commande
  3. TaskMaster sera maintenant disponible via l'assistant Cursor

Commandes disponibles via l'assistant

Vous pouvez utiliser ces phrases avec l'assistant Cursor :

  • "Initialise TaskMaster dans mon projet"
  • "Analyse mon PRD dans scripts/prd.txt"
  • "Génère des sous-tâches pour la tâche 2"
  • "Liste toutes les tâches actuelles"

Structure recommandée du projet

votre-projet/
├── .cursor/
│   └── rules/
│       └── mcp-cohere.json
├── .env
├── scripts/
│   └── prd.txt
└── tasks/
    └── tasks.json