Compare commits

...

1 Commits

Author SHA1 Message Date
github-actions[bot]
f4682cea0a docs: auto-update documentation based on changes in next branch
This PR was automatically generated to update documentation based on recent changes.

  Original commit: feat: implement export tasks (#1260)\n\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
2025-10-06 14:11:11 +00:00
3 changed files with 171 additions and 0 deletions

View File

@@ -200,6 +200,75 @@ sidebarTitle: "CLI Commands"
``` ```
</Accordion> </Accordion>
<Accordion title="Authentication">
```bash
# Log in to tryhamster.com
task-master auth login
# Check authentication status
task-master auth status
# Log out
task-master auth logout
# Refresh authentication token
task-master auth refresh
```
Authentication is required for task export functionality. The login command will open your browser to authenticate with tryhamster.com.
</Accordion>
<Accordion title="Context Management">
```bash
# Show current workspace context (organization and brief)
task-master context
# Select an organization interactively
task-master context org
# Select a brief within your organization
task-master context brief
# Set context using a brief URL or ID
task-master context <brief-url-or-id>
# Clear current context
task-master context clear
# Set context explicitly
task-master context set --org=<org-id> --brief=<brief-id>
```
Context management allows you to select which organization and brief to work with. This is required for task export operations.
</Accordion>
<Accordion title="Export Tasks">
```bash
# Export tasks to a Hamster brief using current context
task-master export
# Export tasks to a specific brief by ID
task-master export --brief=<brief-id>
# Export tasks to a specific organization and brief
task-master export --org=<org-id> --brief=<brief-id>
# Export tasks using a Hamster brief URL
task-master export <hamster-brief-url>
# Export tasks with filtering options
task-master export --status=pending --exclude-subtasks
# Export tasks from a specific tag
task-master export --tag=<tag-name>
# Skip confirmation prompt
task-master export --yes
```
The export command requires authentication (`tm auth login`) and exports local tasks to Hamster briefs. Tasks are exported with their titles, descriptions, implementation details, test strategies, and metadata preserved.
</Accordion>
<Accordion title="Initialize a Project"> <Accordion title="Initialize a Project">
```bash ```bash
# Initialize a new project with Task Master structure # Initialize a new project with Task Master structure

View File

@@ -3,4 +3,31 @@ title: "What's New"
sidebarTitle: "What's New" sidebarTitle: "What's New"
--- ---
## Latest Features
### Task Export to Hamster Briefs
Export your local Task Master tasks directly to Hamster briefs for seamless integration with your workflow management system.
**New Commands:**
- `task-master export` - Export tasks to Hamster briefs
- `task-master auth` - Manage authentication with tryhamster.com
- `task-master context` - Manage workspace context (organization/brief selection)
**Key Features:**
- Export tasks with full metadata preservation (titles, descriptions, implementation details, test strategies)
- Flexible filtering options (by status, tag, exclude subtasks)
- Support for both brief IDs and URLs
- Interactive authentication and context management
- Batch export with error handling and progress reporting
**Getting Started:**
1. Authenticate: `task-master auth login`
2. Select context: `task-master context org` and `task-master context brief`
3. Export tasks: `task-master export`
See the [CLI Commands](/capabilities/cli-root-commands) documentation for complete usage examples.
---
An easy way to see the latest releases An easy way to see the latest releases

75
output.txt Normal file

File diff suppressed because one or more lines are too long