Fix minor issues in add-parallel skill

- Remove unrelated ASSISTANT_NAME from allowedVars example
- Fix log message reference (remove incorrect [agent-runner] prefix)
- Revert unrelated .gitignore addition (.backups/)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-02-02 13:23:28 +02:00
parent 1b960c563f
commit 849b22400b
2 changed files with 2 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ const allowedVars = ['CLAUDE_CODE_OAUTH_TOKEN', 'ANTHROPIC_API_KEY'];
Replace with:
```typescript
const allowedVars = ['CLAUDE_CODE_OAUTH_TOKEN', 'ANTHROPIC_API_KEY', 'PARALLEL_API_KEY', 'ASSISTANT_NAME'];
const allowedVars = ['CLAUDE_CODE_OAUTH_TOKEN', 'ANTHROPIC_API_KEY', 'PARALLEL_API_KEY'];
```
### 4. Configure MCP Servers in Agent Runner
@@ -265,7 +265,7 @@ Check logs to verify MCP servers loaded:
tail -20 logs/nanoclaw.log
```
Look for: `[agent-runner] Parallel AI MCP servers configured`
Look for: `Parallel AI MCP servers configured`
## Troubleshooting