Fix: CLI flag inconsistency in hive-mind command#256
Closed
Conversation
- Add comprehensive timezone utilities for proper local time display - Create timezone-aware session creation and display functions - Add migration script for existing sessions - Support for AEST and other timezones instead of UTC-only - Include relative time display (e.g., '2 hours ago') - Add timezone information to session listings Fixes #246 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
- Update documentation to emphasize worldwide timezone support - Add universal timezone test demonstrating global compatibility - Clarify that fix works for any user timezone (EST, JST, AEST, etc.) - Remove Australia-specific language in favor of universal approach This addresses the question about whether the fix works for all users or just Australian users - it works for ANY timezone worldwide.
…nly flags - Add --analysis and --read-only CLI flags to swarm command - Implement read-only mode constraints in swarm prompt generation - Add comprehensive analysis mode documentation in help text - Include forbidden operations list and required behaviors - Support both --analysis and --read-only (alias) flags - Enable safe codebase exploration without modifications - Perfect for code reviews, security audits, and analysis tasks Implements #233: Integrate Claude Code's planning permission mode 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Added --analysis and --read-only flags to swarm command - Implemented safe read-only mode for codebase exploration - Added comprehensive analysis mode constraints to prevent modifications - Updated help text and documentation with analysis mode information - Created examples and use cases for security audits and code reviews - Version bump to 2.0.0-alpha.53 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Keep alpha.53 version badge - Merge both hive-mind wizard and swarm commands - Maintain GitHub integration examples - Update version reference to alpha.53 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
- Update hive-mind command to accept both kebab-case and camelCase flags - Add missing flags to help documentation: --worker-types, --name, --objective, --wizard, --dry-run - Fix flag parsing to support both formats (e.g., --memory-size and memorySize) - Add mcp.json creation to init command for easier MCP setup - Update examples to show correct kebab-case usage Fixes #252
Owner
Author
|
Closing in favor of a new PR with correct alpha branch naming |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
Flag Parsing: Updated all flag references to check both formats:
flags.memorySize || flags['memory-size']flags.workerTypes || flags['worker-types']flags.queenType || flags['queen-type']flags.maxWorkers || flags['max-workers']flags.autoScale || flags['auto-scale']flags.dryRun || flags['dry-run']Help Documentation: Added missing flags:
--worker-types <list>--name <name>--objective <text>--wizard--dry-runExamples: Added example showing correct kebab-case usage:
Bonus: Added mcp.json creation to init command for easier MCP setup (mcpServers in wrong place #251)
Testing
Tested with:
Successfully created swarm with correct configuration.
Fixes #252