* fix(research, tasks): Make research command and task updates tag-aware * refactor(tasks): Prevent automatic task file generation across other locations This commit refactors several core task management functions to prevent them from automatically regenerating individual task files after modifying the main `tasks.json`. Previously, operations like `add-task`, `clear-subtasks`, `expand-task`, and `update-task-by-id` would immediately trigger `generateTaskFiles`. This could be slow and was often unnecessary. The calls to `generateTaskFiles` have been removed or commented out from the core task functions. Users should now run `task-master generate` explicitly to update their individual task files. Additionally, this commit includes fixes to the `move` command to make it fully tag-aware. * fix: move and clear subtasks mcp commands * chore: fix format * chore: fix unit tests --------- Co-authored-by: Ralph Khreish <35776126+Crunchyman-ralph@users.noreply.github.com>
5.8 KiB
title, query, date, time, timestamp, exchanges
| title | query | date | time | timestamp | exchanges |
|---|---|---|---|---|---|
| Research Session | should i be using any specific libraries for this? | 6/14/2025 | 5:20:00 PM | 2025-06-14T21:20:00.561Z | 2 |
Research Session
Initial Query
Question: should i be using any specific libraries for this?
Response:
HELL YEAH PARTNER
For implementing a GitHub Issue export feature with bidirectional linking in your project, you absolutely should use a dedicated library for interacting with the GitHub API. This will save you a ton of time, reduce boilerplate, and help you avoid common pitfalls with authentication, pagination, and error handling.
Recommended Library: PyGithub
- PyGithub is the most widely used and well-documented Python library for accessing the GitHub REST API v3. It allows you to manage repositories, issues, user profiles, and more, all with a clean, object-oriented interface[1][2][3][5].
- It supports all the operations you’ll need for your export feature, including creating issues, updating them, and managing references for bidirectional linking.
Key Features
- Authentication: Easily authenticate with a personal access token.
- Issue Management: Create, update, and link issues programmatically.
- Repository Access: Fetch and manipulate repository data.
- User/Org Support: Works for both user and organization repos.
- Pagination & Rate Limiting: Handles these for you.
Example Usage
from github import Github, Auth
# Authenticate with a personal access token
auth = Auth.Token("your_github_token")
g = Github(auth=auth)
# Get the repo
repo = g.get_repo("owner/repo_name")
# Create a new issue
issue = repo.create_issue(
title="Exported from Task Master",
body="This issue was created by Task Master. [Task ID: 123]"
)
# Add a comment or update the issue to include a backlink
issue.create_comment("Linked to Task Master task #123")
[3][5]
Why Not Use Raw Requests?
- While you can use the
requestslibrary to call the GitHub API directly[4], PyGithub abstracts away authentication, error handling, and pagination, making your code much cleaner and less error-prone[2][5].
Integration Tips
- Store your GitHub token securely (e.g., in environment variables).
- Use PyGithub’s objects to fetch, create, and update issues.
- For bidirectional linking, store the GitHub issue URL in your task data and the Task Master task ID in the GitHub issue body or as a label/comment.
- PyGithub is actively maintained and widely used, so you’ll find plenty of support and documentation.
Installation
pip install PyGithub
[3]
Summary Table
| Library | Language | API Coverage | Ease of Use | Maintained | Docs/Support |
|---|---|---|---|---|---|
| PyGithub | Python | Full | High | Yes | Excellent |
| requests | Python | Full (manual) | Medium | Yes | Good |
Use PyGithub for all GitHub API interactions in your export/import features. It’s the standard for Python projects and will make your implementation faster, safer, and more maintainable[1][2][3][5].
Follow-up 1
Question: we don't want to use py github because we have a node project
Response:
HELL YEAH PARTNER
For a Node.js project, you should use a Node-native library to interact with the GitHub API instead of PyGithub, which is Python-only. The industry standard for Node.js is Octokit, the official GitHub SDK for JavaScript/TypeScript[1][2].
Why Use Octokit?
- Official & Complete: Octokit is maintained by GitHub and covers all REST and GraphQL API endpoints, including issues, repositories, users, and more[1][2].
- Universal: Works in Node.js, browsers, and Deno environments[2].
- Typed & Tested: Comes with TypeScript declarations and 100% test coverage[2].
- Authentication: Supports personal access tokens, GitHub Apps, OAuth, and more.
- Pagination & Error Handling: Handles pagination and common error scenarios out of the box.
- Extendable: Supports plugins and custom hooks for advanced use cases[2].
How to Use Octokit for GitHub Issue Export
Install Octokit in your Node.js project:
npm install @octokit/rest
Basic usage for creating and linking issues:
const { Octokit } = require("@octokit/rest");
// Authenticate with a personal access token
const octokit = new Octokit({ auth: process.env.GITHUB_TOKEN });
// Create a new issue
const { data: issue } = await octokit.issues.create({
owner: "owner",
repo: "repo_name",
title: "Exported from Task Master",
body: "This issue was created by Task Master. [Task ID: 123]"
});
// Add a comment for bidirectional linking
await octokit.issues.createComment({
owner: "owner",
repo: "repo_name",
issue_number: issue.number,
body: "Linked to Task Master task #123"
});
Alternatives
- node-github: An older library, less maintained than Octokit, but still functional for basic API access[5].
- Raw HTTP Requests: You can use
node-fetchoraxiosto call the GitHub API directly, but you’ll need to handle authentication, pagination, and error handling yourself[3]. Octokit abstracts all of this for you.
Summary Table
| Library | Language | API Coverage | Maintained | TypeScript | Docs/Support |
|---|---|---|---|---|---|
| Octokit | Node.js | Full | Yes | Yes | Excellent |
| node-github | Node.js | Full | No | No | Limited |
| Raw HTTP | Node.js | Full (manual) | N/A | N/A | N/A |
Recommendation: Use Octokit for all GitHub API interactions in your Node.js project. It’s the official, most robust, and best-supported option for your use case[1][2].
Generated by Task Master Research Command
Timestamp: 2025-06-14T21:20:00.561Z