snow-flow 1.4.1 → 1.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/cli.js +511 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -52,6 +52,7 @@ const servicenow_client_js_1 = require("./utils/servicenow-client.js");
52
52
  const agent_detector_js_1 = require("./utils/agent-detector.js");
53
53
  const version_js_1 = require("./version.js");
54
54
  const logger_js_1 = require("./utils/logger.js");
55
+ const chalk_1 = __importDefault(require("chalk"));
55
56
  // Load environment variables
56
57
  dotenv_1.default.config();
57
58
  // Create CLI logger instance
@@ -2057,6 +2058,60 @@ program
2057
2058
  process.exit(1);
2058
2059
  }
2059
2060
  });
2061
+ // Initialize Snow-Flow project
2062
+ program
2063
+ .command('init')
2064
+ .description('Initialize a Snow-Flow project with SPARC environment')
2065
+ .option('--sparc', 'Initialize with SPARC methodology and MCP servers (recommended)', true)
2066
+ .option('--skip-mcp', 'Skip MCP server activation prompt')
2067
+ .action(async (options) => {
2068
+ console.log(chalk_1.default.blue.bold(`\nšŸš€ Initializing Snow-Flow Project v${version_js_1.VERSION}...`));
2069
+ console.log('='.repeat(60));
2070
+ const targetDir = process.cwd();
2071
+ try {
2072
+ // Create directory structure
2073
+ console.log('\nšŸ“ Creating project structure...');
2074
+ await createDirectoryStructure(targetDir);
2075
+ // Create .env file
2076
+ console.log('šŸ” Creating environment configuration...');
2077
+ await createEnvFile(targetDir);
2078
+ // Create MCP configuration
2079
+ if (options.sparc) {
2080
+ console.log('šŸ”§ Setting up MCP servers for Claude Code...');
2081
+ await createMCPConfig(targetDir);
2082
+ // Copy CLAUDE.md file
2083
+ console.log('šŸ“š Creating documentation files...');
2084
+ await copyCLAUDEmd(targetDir);
2085
+ // Create README files
2086
+ await createReadmeFiles(targetDir);
2087
+ }
2088
+ console.log(chalk_1.default.green.bold('\nāœ… Snow-Flow project initialized successfully!'));
2089
+ console.log('\nšŸ“‹ Created files and directories:');
2090
+ console.log(' āœ“ .claude/ - Claude Code configuration');
2091
+ console.log(' āœ“ .swarm/ - Swarm session management');
2092
+ console.log(' āœ“ memory/ - Persistent memory storage');
2093
+ console.log(' āœ“ .env - ServiceNow OAuth configuration');
2094
+ if (options.sparc) {
2095
+ console.log(' āœ“ .mcp.json - MCP server configuration');
2096
+ console.log(' āœ“ CLAUDE.md - Development documentation');
2097
+ console.log(' āœ“ README.md - Project documentation');
2098
+ if (!options.skipMcp) {
2099
+ console.log(chalk_1.default.yellow.bold('\nšŸ“ MCP servers are configured for Claude Code'));
2100
+ console.log('\nTo activate MCP servers in Claude Code, run:');
2101
+ console.log(chalk_1.default.cyan(' claude --mcp-config .mcp.json .'));
2102
+ }
2103
+ }
2104
+ console.log(chalk_1.default.blue.bold('\nšŸŽÆ Next steps:'));
2105
+ console.log('1. Edit .env file with your ServiceNow credentials');
2106
+ console.log('2. Run: ' + chalk_1.default.cyan('snow-flow auth login'));
2107
+ console.log('3. Start developing: ' + chalk_1.default.cyan('snow-flow swarm "your objective"'));
2108
+ console.log('\nšŸ“š Full documentation: https://github.com/groeimetai/snow-flow');
2109
+ }
2110
+ catch (error) {
2111
+ console.error(chalk_1.default.red('\nāŒ Initialization failed:'), error);
2112
+ process.exit(1);
2113
+ }
2114
+ });
2060
2115
  // Help command
2061
2116
  program
2062
2117
  .command('help')
@@ -3829,6 +3884,462 @@ For full documentation, visit: https://github.com/groeimetai/snow-flow
3829
3884
  3. \`snow-flow auth login\` - Authenticate with ServiceNow OAuth
3830
3885
  4. \`snow-flow swarm "create a widget for incident management"\` - Everything automatic!
3831
3886
 
3887
+ For full documentation, visit: https://github.com/groeimetai/snow-flow
3888
+ `;
3889
+ await fs_1.promises.writeFile((0, path_1.join)(targetDir, 'CLAUDE.md'), claudeMdFallback);
3890
+ }
3891
+ }
3892
+ async function copyCLAUDEmd(targetDir) {
3893
+ let claudeMdContent = '';
3894
+ try {
3895
+ // First try to find the CLAUDE.md in the source directory (for global installs)
3896
+ const sourceClaudeFiles = [
3897
+ // Try the project root (when running from dist/)
3898
+ (0, path_1.join)(__dirname, '..', 'CLAUDE.md'),
3899
+ // Try when running directly from src/
3900
+ (0, path_1.join)(__dirname, 'CLAUDE.md'),
3901
+ // Try npm global installation paths
3902
+ (0, path_1.join)(__dirname, '..', '..', '..', 'CLAUDE.md'),
3903
+ (0, path_1.join)(__dirname, '..', '..', '..', '..', 'CLAUDE.md'),
3904
+ // Try current working directory as fallback
3905
+ (0, path_1.join)(process.cwd(), 'CLAUDE.md')
3906
+ ];
3907
+ let foundSource = false;
3908
+ for (const sourcePath of sourceClaudeFiles) {
3909
+ try {
3910
+ claudeMdContent = await fs_1.promises.readFile(sourcePath, 'utf8');
3911
+ foundSource = true;
3912
+ console.log(`āœ… Found CLAUDE.md source at: ${sourcePath}`);
3913
+ break;
3914
+ }
3915
+ catch {
3916
+ // Continue to next path
3917
+ }
3918
+ }
3919
+ if (!foundSource) {
3920
+ // Fallback to a minimal CLAUDE.md if source not found
3921
+ console.log('āš ļø Could not find CLAUDE.md source, creating minimal version');
3922
+ claudeMdContent = `# Snow-Flow Development with Claude Code
3923
+
3924
+ ## šŸš€ Core Development Principles
3925
+
3926
+ ### Concurrent Execution Strategy
3927
+ **Golden Rule**: "1 MESSAGE = ALL RELATED OPERATIONS"
3928
+ - Always batch related MCP tool calls in a single response
3929
+ - Use TodoWrite extensively for complex task coordination
3930
+ - Launch multiple agents concurrently for maximum performance
3931
+ - Leverage batch file operations whenever reading/writing multiple files
3932
+
3933
+ ### ServiceNow Development Best Practices
3934
+ 1. **Never hardcode credentials** - Use OAuth and environment variables
3935
+ 2. **Always work in Update Sets** - Provides rollback safety
3936
+ 3. **Test before deploy** - Use mock testing tools for validation
3937
+ 4. **Validate permissions** - Check OAuth scopes before operations
3938
+ 5. **Use fuzzy search** - ServiceNow names can vary (iPhone vs iPhone 6S)
3939
+
3940
+ ## šŸ“‹ Essential MCP Tool Patterns
3941
+
3942
+ ### Batch Operations for Maximum Efficiency
3943
+ \`\`\`javascript
3944
+ // GOOD: Single message with multiple tool calls
3945
+ TodoWrite([...tasks]);
3946
+ Task("Architect", "Design system architecture");
3947
+ Task("Developer", "Implement components");
3948
+ Task("Tester", "Create test scenarios");
3949
+
3950
+ // BAD: Sequential single operations
3951
+ TodoWrite([task1]);
3952
+ // wait for response
3953
+ TodoWrite([task2]);
3954
+ // wait for response
3955
+ \`\`\`
3956
+
3957
+ ### Memory-Driven Coordination
3958
+ Use Memory to coordinate information across agents:
3959
+ \`\`\`javascript
3960
+ // Store architecture decisions
3961
+ snow_memory_store({
3962
+ key: "widget_architecture",
3963
+ value: "Service Portal widget with Chart.js for data visualization"
3964
+ });
3965
+
3966
+ // All agents can reference this
3967
+ Task("Frontend Dev", "Implement widget based on widget_architecture in memory");
3968
+ Task("Backend Dev", "Create REST endpoints for widget_architecture requirements");
3969
+ \`\`\`
3970
+
3971
+ ## šŸ› ļø Complete ServiceNow MCP Tools Reference
3972
+
3973
+ ### Discovery & Search Tools
3974
+ \`\`\`javascript
3975
+ // Find any ServiceNow artifact using natural language
3976
+ snow_find_artifact({
3977
+ query: "the widget that shows incidents on homepage",
3978
+ type: "widget" // or "flow", "script", "application", "any"
3979
+ });
3980
+
3981
+ // Search catalog items with fuzzy matching
3982
+ snow_catalog_item_search({
3983
+ query: "laptop",
3984
+ fuzzy_match: true, // Finds variations: notebook, MacBook, etc.
3985
+ category_filter: "hardware",
3986
+ include_variables: true // Get catalog variables too
3987
+ });
3988
+
3989
+ // Direct sys_id lookup (faster than search)
3990
+ snow_get_by_sysid({
3991
+ sys_id: "<artifact_sys_id>",
3992
+ table: "sp_widget"
3993
+ });
3994
+ \`\`\`
3995
+
3996
+ ### Flow Development Tools
3997
+ \`\`\`javascript
3998
+ // Create flows from natural language
3999
+ snow_create_flow({
4000
+ instruction: "create a flow that sends email when incident priority is high",
4001
+ deploy_immediately: true // Automatically deploys XML to ServiceNow
4002
+ });
4003
+
4004
+ // Test flows with mock data
4005
+ snow_test_flow_with_mock({
4006
+ flow_id: "incident_notification_flow",
4007
+ create_test_user: true,
4008
+ mock_catalog_items: true,
4009
+ test_inputs: {
4010
+ priority: "1",
4011
+ category: "hardware"
4012
+ },
4013
+ simulate_approvals: true
4014
+ });
4015
+
4016
+ // Link catalog items to flows
4017
+ snow_link_catalog_to_flow({
4018
+ catalog_item_id: "New Laptop Request",
4019
+ flow_id: "laptop_provisioning_flow",
4020
+ link_type: "flow_catalog_process",
4021
+ variable_mapping: [
4022
+ {
4023
+ catalog_variable: "laptop_model",
4024
+ flow_input: "equipment_type"
4025
+ }
4026
+ ]
4027
+ });
4028
+ \`\`\`
4029
+
4030
+ ### Widget Development Tools
4031
+ \`\`\`javascript
4032
+ // Deploy widgets with automatic validation
4033
+ snow_deploy_widget({
4034
+ name: "incident_dashboard",
4035
+ title: "Incident Dashboard",
4036
+ template: htmlContent,
4037
+ css: cssContent,
4038
+ client_script: clientJS,
4039
+ server_script: serverJS,
4040
+ demo_data: { incidents: [...] }
4041
+ });
4042
+
4043
+ // Preview and test widgets
4044
+ snow_preview_widget({
4045
+ widget_id: "incident_dashboard",
4046
+ check_dependencies: true
4047
+ });
4048
+
4049
+ snow_widget_test({
4050
+ widget_id: "incident_dashboard",
4051
+ test_scenarios: [
4052
+ {
4053
+ name: "Load with no data",
4054
+ server_data: { incidents: [] }
4055
+ }
4056
+ ]
4057
+ });
4058
+ \`\`\`
4059
+
4060
+ ### Bulk Operations
4061
+ \`\`\`javascript
4062
+ // Deploy multiple artifacts at once
4063
+ snow_bulk_deploy({
4064
+ artifacts: [
4065
+ { type: "widget", data: widgetData },
4066
+ { type: "flow", data: flowData },
4067
+ { type: "script", data: scriptData }
4068
+ ],
4069
+ transaction_mode: true, // All or nothing
4070
+ parallel: true, // Deploy simultaneously
4071
+ dry_run: false
4072
+ });
4073
+ \`\`\`
4074
+
4075
+ ### Intelligent Analysis
4076
+ \`\`\`javascript
4077
+ // Analyze incidents with AI
4078
+ snow_analyze_incident({
4079
+ incident_id: "INC0010001",
4080
+ include_similar: true,
4081
+ suggest_resolution: true
4082
+ });
4083
+
4084
+ // Pattern analysis
4085
+ snow_pattern_analysis({
4086
+ analysis_type: "incident_patterns",
4087
+ timeframe: "month"
4088
+ });
4089
+ \`\`\`
4090
+
4091
+ ## ⚔ Performance Optimization
4092
+
4093
+ ### Parallel Execution Patterns
4094
+ \`\`\`javascript
4095
+ // Execute multiple searches concurrently
4096
+ Promise.all([
4097
+ snow_find_artifact({ query: "incident widget" }),
4098
+ snow_catalog_item_search({ query: "laptop" }),
4099
+ snow_query_incidents({ query: "priority=1" })
4100
+ ]);
4101
+ \`\`\`
4102
+
4103
+ ### Batch File Operations
4104
+ \`\`\`javascript
4105
+ // Read multiple files in one operation
4106
+ MultiRead([
4107
+ "/path/to/widget.html",
4108
+ "/path/to/widget.css",
4109
+ "/path/to/widget.js"
4110
+ ]);
4111
+ \`\`\`
4112
+
4113
+ ## šŸ“ Workflow Guidelines
4114
+
4115
+ ### Standard Development Flow
4116
+ 1. **Discovery Phase**: Use search tools to find existing artifacts
4117
+ 2. **Planning Phase**: Use TodoWrite to plan all tasks
4118
+ 3. **Development Phase**: Launch agents concurrently
4119
+ 4. **Testing Phase**: Use mock testing tools
4120
+ 5. **Deployment Phase**: Use bulk deploy with validation
4121
+
4122
+ ### Error Recovery Patterns
4123
+ \`\`\`javascript
4124
+ // Always implement rollback strategies
4125
+ if (deployment.failed) {
4126
+ snow_deployment_rollback_manager({
4127
+ update_set_id: deployment.update_set,
4128
+ restore_point: deployment.backup_id
4129
+ });
4130
+ }
4131
+ \`\`\`
4132
+
4133
+ ## šŸ”§ Advanced Configuration
4134
+
4135
+ ## Build Commands
4136
+ - \`npm run build\`: Build the project
4137
+ - \`npm run test\`: Run the full test suite
4138
+ - \`npm run lint\`: Run ESLint and format checks
4139
+ - \`npm run typecheck\`: Run TypeScript type checking
4140
+
4141
+ ## Snow-Flow Commands
4142
+ - \`snow-flow init --sparc\`: Initialize project with SPARC environment
4143
+ - \`snow-flow auth login\`: Authenticate with ServiceNow OAuth
4144
+ - \`snow-flow swarm "<objective>"\`: Start multi-agent swarm - ƩƩn command voor alles!
4145
+ - \`snow-flow sparc <mode> "<task>"\`: Run specific SPARC mode
4146
+
4147
+ ## Enhanced Swarm Command (v1.1.41+)
4148
+ The swarm command now includes intelligent features that are **enabled by default**:
4149
+
4150
+ \`\`\`bash
4151
+ # Simple usage - ALL autonomous systems enabled by default!
4152
+ snow-flow swarm "create incident management dashboard"
4153
+
4154
+ # Disable specific autonomous systems if needed
4155
+ snow-flow swarm "create simple widget" --no-autonomous-cost-optimization --no-autonomous-compliance
4156
+
4157
+ # Disable ALL autonomous systems
4158
+ snow-flow swarm "basic development only" --no-autonomous-all
4159
+
4160
+ # Force enable all (overrides any --no- flags)
4161
+ snow-flow swarm "full orchestration mode" --autonomous-all
4162
+ \`\`\`
4163
+
4164
+ ### šŸ¤– NEW: Autonomous Systems (v1.3.26+) - **ENABLED BY DEFAULT!**
4165
+ True orchestration with zero manual intervention - all systems active unless disabled:
4166
+
4167
+ - āœ… **Documentation**: Self-documenting system (auto-generates and updates docs)
4168
+ - āœ… **Cost Optimization**: AI-driven cost management with auto-optimization
4169
+ - āœ… **Compliance**: Multi-framework compliance monitoring with auto-remediation
4170
+ - āœ… **Self-Healing**: Predictive failure detection with automatic recovery
4171
+
4172
+ **Disable Options**:
4173
+ - \`--no-autonomous-documentation\`: Disable documentation system
4174
+ - \`--no-autonomous-cost-optimization\`: Disable cost optimization
4175
+ - \`--no-autonomous-compliance\`: Disable compliance monitoring
4176
+ - \`--no-autonomous-healing\`: Disable self-healing
4177
+ - \`--no-autonomous-all\`: Disable ALL autonomous systems
4178
+
4179
+ **Force Options**:
4180
+ - \`--autonomous-all\`: Force enable all (overrides --no- flags)
4181
+
4182
+ **Perfect Orchestrator**: Systems work autonomously, make intelligent decisions, and continuously improve - no manual intervention needed!
4183
+
4184
+ ### Default Settings (no flags needed):
4185
+ - āœ… \`--smart-discovery\` - Automatically discovers and reuses existing artifacts
4186
+ - āœ… \`--live-testing\` - Tests in real-time on your ServiceNow instance
4187
+ - āœ… \`--auto-deploy\` - Deploys automatically (safe with update sets)
4188
+ - āœ… \`--auto-rollback\` - Automatically rollbacks on failures
4189
+ - āœ… \`--shared-memory\` - All agents share context and coordination
4190
+ - āœ… \`--progress-monitoring\` - Real-time progress tracking
4191
+ - āŒ \`--auto-permissions\` - Disabled by default (enable with flag for automatic role elevation)
4192
+
4193
+ ### Advanced Usage:
4194
+ \`\`\`bash
4195
+ # Enable automatic permission escalation
4196
+ snow-flow swarm "create global workflow" --auto-permissions
4197
+
4198
+ # Disable specific features
4199
+ snow-flow swarm "test widget" --no-auto-deploy --no-live-testing
4200
+
4201
+ # Full control
4202
+ snow-flow swarm "complex integration" \\
4203
+ --max-agents 8 \\
4204
+ --strategy development \\
4205
+ --mode distributed \\
4206
+ --parallel \\
4207
+ --auto-permissions
4208
+ \`\`\`
4209
+
4210
+ ## New MCP Tools (v1.1.44+)
4211
+
4212
+ ### Catalog Item Search
4213
+ Find catalog items with intelligent fuzzy matching:
4214
+ \`\`\`javascript
4215
+ snow_catalog_item_search({
4216
+ query: "iPhone", // Will find iPhone 6S, iPhone 7, etc.
4217
+ fuzzy_match: true, // Enable intelligent variations
4218
+ include_variables: true // Include catalog variables
4219
+ })
4220
+ \`\`\`
4221
+
4222
+ ### Flow Testing with Mock Data
4223
+ Test flows without real data:
4224
+ \`\`\`javascript
4225
+ snow_test_flow_with_mock({
4226
+ flow_id: "equipment_provisioning_flow",
4227
+ create_test_user: true, // Creates test user
4228
+ mock_catalog_items: true, // Creates test catalog items
4229
+ simulate_approvals: true, // Auto-approves during test
4230
+ cleanup_after_test: true // Removes test data after
4231
+ })
4232
+ \`\`\`
4233
+
4234
+ ### Direct Catalog-Flow Linking
4235
+ Link catalog items directly to flows:
4236
+ \`\`\`javascript
4237
+ snow_link_catalog_to_flow({
4238
+ catalog_item_id: "iPhone 6S",
4239
+ flow_id: "mobile_provisioning_flow",
4240
+ link_type: "flow_catalog_process", // Modern approach
4241
+ variable_mapping: [
4242
+ {
4243
+ catalog_variable: "phone_model",
4244
+ flow_input: "device_type"
4245
+ }
4246
+ ],
4247
+ test_link: true // Creates test request
4248
+ })
4249
+ \`\`\`
4250
+
4251
+ ### OAuth Configuration
4252
+ \`\`\`env
4253
+ # .env file
4254
+ SNOW_INSTANCE=dev123456
4255
+ SNOW_CLIENT_ID=your_oauth_client_id
4256
+ SNOW_CLIENT_SECRET=your_oauth_client_secret
4257
+ SNOW_USERNAME=admin
4258
+ SNOW_PASSWORD=admin_password
4259
+ \`\`\`
4260
+
4261
+ ### Update Set Management
4262
+ \`\`\`javascript
4263
+ // Smart update set creation
4264
+ snow_smart_update_set({
4265
+ name: "Auto-generated for widget development",
4266
+ detect_context: true, // Auto-detects what you're working on
4267
+ auto_switch: true // Switches when context changes
4268
+ });
4269
+ \`\`\`
4270
+
4271
+ ## šŸŽÆ Quick Start
4272
+ 1. \`snow-flow init --sparc\` - Initialize project with SPARC environment
4273
+ 2. Configure ServiceNow credentials in .env file
4274
+ 3. \`snow-flow auth login\` - Authenticate with ServiceNow OAuth
4275
+ 4. \`snow-flow swarm "create a widget for incident management"\` - Everything automatic!
4276
+
4277
+ ## šŸ’” Important Notes
4278
+
4279
+ ### Do's
4280
+ - āœ… Use TodoWrite extensively for task tracking
4281
+ - āœ… Batch MCP tool calls for performance
4282
+ - āœ… Store important data in Memory for coordination
4283
+ - āœ… Test with mock data before deploying
4284
+ - āœ… Work within Update Sets for safety
4285
+ - āœ… Use fuzzy search for finding artifacts
4286
+
4287
+ ### Don'ts
4288
+ - āŒ Don't make sequential tool calls when batch is possible
4289
+ - āŒ Don't hardcode credentials or sys_ids
4290
+ - āŒ Don't deploy without testing
4291
+ - āŒ Don't ignore OAuth permission errors
4292
+ - āŒ Don't create artifacts without checking if they exist
4293
+
4294
+ ## šŸš€ Performance Benchmarks
4295
+
4296
+ With concurrent execution and batch operations:
4297
+ - **Widget Development**: 3x faster than sequential
4298
+ - **Flow Creation**: 2.5x faster with parallel validation
4299
+ - **Bulk Deployment**: Up to 5x faster with parallel mode
4300
+ - **Search Operations**: 4x faster with concurrent queries
4301
+
4302
+ ## šŸ“š Additional Resources
4303
+
4304
+ ### MCP Server Documentation
4305
+ - **servicenow-deployment**: Widget, flow, and application deployment
4306
+ - **servicenow-intelligent**: Smart search and artifact discovery
4307
+ - **servicenow-operations**: Incident management and catalog operations
4308
+ - **servicenow-platform-development**: Scripts, rules, and policies
4309
+
4310
+ ### SPARC Modes
4311
+ - \`orchestrator\`: Coordinates complex multi-step tasks
4312
+ - \`coder\`: Focused code implementation
4313
+ - \`researcher\`: Deep analysis and discovery
4314
+ - \`tester\`: Comprehensive testing strategies
4315
+ - \`architect\`: System design and architecture
4316
+
4317
+ ---
4318
+
4319
+ This is a minimal CLAUDE.md file. The full documentation should be available in your Snow-Flow installation.
4320
+
4321
+ ## Quick Start
4322
+ 1. \`snow-flow init --sparc\` - Initialize project with SPARC environment
4323
+ 2. Configure ServiceNow credentials in .env file
4324
+ 3. \`snow-flow auth login\` - Authenticate with ServiceNow OAuth
4325
+ 4. \`snow-flow swarm "create a widget for incident management"\` - Everything automatic!
4326
+
4327
+ For full documentation, visit: https://github.com/groeimetai/snow-flow
4328
+ `;
4329
+ }
4330
+ await fs_1.promises.writeFile((0, path_1.join)(targetDir, 'CLAUDE.md'), claudeMdContent);
4331
+ }
4332
+ catch (error) {
4333
+ console.log('āš ļø Error copying CLAUDE.md, creating minimal version');
4334
+ // Minimal fallback
4335
+ const claudeMdFallback = `# Snow-Flow Development with Claude Code
4336
+
4337
+ ## Quick Start
4338
+ 1. \`snow-flow init --sparc\` - Initialize project with SPARC environment
4339
+ 2. Configure ServiceNow credentials in .env file
4340
+ 3. \`snow-flow auth login\` - Authenticate with ServiceNow OAuth
4341
+ 4. \`snow-flow swarm "create a widget for incident management"\` - Everything automatic!
4342
+
3832
4343
  For full documentation, visit: https://github.com/groeimetai/snow-flow
3833
4344
  `;
3834
4345
  await fs_1.promises.writeFile((0, path_1.join)(targetDir, 'CLAUDE.md'), claudeMdFallback);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "snow-flow",
3
- "version": "1.4.1",
3
+ "version": "1.4.3",
4
4
  "description": "ServiceNow Queen Agent - Hive-Mind Intelligence for ServiceNow Development inspired by claude-flow. Transform complex workflows into elegant one-command orchestration.",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",