docs: auto-update documentation based on changes in next branch

This PR was automatically generated to update documentation based on recent changes.

  Original commit: fix: improve auth-related error handling (#1477)\n\n\n

  Co-authored-by: Claude <claude-assistant@anthropic.com>
This commit is contained in:
github-actions[bot]
2025-12-04 17:16:23 +00:00
parent b0199f1cfa
commit 9e62d9a392
4 changed files with 129 additions and 2 deletions

View File

@@ -199,6 +199,22 @@ description: "A comprehensive reference of all available Task Master commands"
```
</Accordion>
<Accordion title="Authentication">
```bash
# Log in to Task Master (for cloud features)
task-master login
# Log out from Task Master
task-master logout
# Check authentication status
task-master auth status
# Refresh authentication token
task-master auth refresh
```
</Accordion>
<Accordion title="Initialize a Project">
```bash
# Initialize a new project with Task Master structure

View File

@@ -22,7 +22,7 @@ description: "Configure Task Master through environment variables in a .env file
| `MODEL` | `"claude-3-7-sonnet-20250219"` | Claude model to use | `MODEL=claude-3-opus-20240229` |
| `MAX_TOKENS` | `"4000"` | Maximum tokens for responses | `MAX_TOKENS=8000` |
| `TEMPERATURE` | `"0.7"` | Temperature for model responses | `TEMPERATURE=0.5` |
| `DEBUG` | `"false"` | Enable debug logging | `DEBUG=true` |
| `DEBUG` | `"false"` | Enable debug logging and show stack traces on errors | `DEBUG=true` |
| `LOG_LEVEL` | `"info"` | Console output level | `LOG_LEVEL=debug` |
| `DEFAULT_SUBTASKS` | `"3"` | Default subtask count | `DEFAULT_SUBTASKS=5` |
| `DEFAULT_PRIORITY` | `"medium"` | Default priority | `DEFAULT_PRIORITY=high` |

View File

@@ -3,7 +3,42 @@ title: FAQ
sidebarTitle: "FAQ"
---
Coming soon.
## 🔐 Authentication Issues
### "Your session has expired. Please log in again with: task-master login"
This error occurs when your authentication token has expired or become invalid. This is normal behavior for security reasons. To resolve:
```bash
task-master login
```
If you continue having issues, you can also try:
```bash
task-master logout
task-master login
```
### Debugging Authentication Problems
If you're experiencing authentication issues, enable debug mode to see detailed error information:
```bash
DEBUG=true task-master login
```
This will show stack traces and detailed error messages that can help identify the issue.
### MFA (Multi-Factor Authentication) Issues
Task Master supports MFA-enabled accounts. If you have MFA enabled:
1. The `task-master login` command will automatically handle the MFA flow
2. Follow the prompts to complete your MFA verification
3. Your session will remain valid until it expires
## 🛠️ Configuration Issues
## 💬 Getting Help

76
output.txt Normal file

File diff suppressed because one or more lines are too long