@paulduvall/claude-dev-toolkit 0.0.1-alpha.10 → 0.0.1-alpha.11

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.
package/README.md CHANGED
@@ -1,12 +1,5 @@
1
1
  # Claude Dev Toolkit
2
2
 
3
- [![npm version](https://badge.fury.io/js/%40paulduvall%2Fclaude-dev-toolkit.svg)](https://www.npmjs.com/package/@paulduvall/claude-dev-toolkit)
4
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
- ![Test Status](https://img.shields.io/badge/tests-100%25%20passing-brightgreen)
6
- ![Active Commands](https://img.shields.io/badge/active%20commands-13-blue)
7
- ![Experimental Commands](https://img.shields.io/badge/experimental%20commands-45-orange)
8
- ![Total Commands](https://img.shields.io/badge/total%20commands-58-brightgreen)
9
-
10
3
  **Transform Claude Code into a complete development platform** with 58 AI-powered custom commands that automate your entire software development workflow.
11
4
 
12
5
  ## 🚀 Quick Installation
@@ -266,11 +266,24 @@ program
266
266
  const oidcCmd = new OidcCommand();
267
267
  try {
268
268
  const result = await oidcCmd.execute(options);
269
- if (!result.success && !result.dryRun) {
269
+ if (result.success) {
270
+ if (result.message) {
271
+ console.log(result.message);
272
+ }
273
+ if (options.verbose && result.duration) {
274
+ console.log(`✅ Completed in ${result.duration}ms`);
275
+ }
276
+ } else {
277
+ console.error(`❌ OIDC setup failed: ${result.error || 'Unknown error'}`);
278
+ if (result.enhancedError && result.enhancedError.suggestions) {
279
+ result.enhancedError.suggestions.forEach(suggestion => {
280
+ console.log(suggestion);
281
+ });
282
+ }
270
283
  process.exit(1);
271
284
  }
272
285
  } catch (error) {
273
- console.error(`OIDC setup failed: ${error.message}`);
286
+ console.error(`❌ OIDC setup failed: ${error.message}`);
274
287
  process.exit(1);
275
288
  }
276
289
  });
@@ -292,14 +292,23 @@ Run 'claude-commands oidc --help' for complete setup requirements.`;
292
292
  const { dryRun = false } = options;
293
293
 
294
294
  if (dryRun) {
295
- return this.showDryRun(options);
295
+ this.showDryRun(options);
296
+ return {
297
+ message: '✅ Dry run completed successfully',
298
+ dryRun: true
299
+ };
296
300
  }
297
301
 
298
- // Minimal implementation for current phase
299
- this.showProgress('Initializing OIDC command...', options);
302
+ // Show progress to user
303
+ this.showProgress('🚀 Initializing OIDC command...', options);
304
+
305
+ // For now, this is a minimal implementation placeholder
306
+ console.log('📋 OIDC Setup Status: Command structure implemented');
307
+ console.log('⚠️ Full OIDC implementation is in development');
308
+ console.log('💡 Use --dry-run to preview planned functionality');
300
309
 
301
310
  return {
302
- message: 'OIDC command executed successfully'
311
+ message: 'OIDC command executed successfully (minimal implementation)'
303
312
  };
304
313
  }
305
314
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paulduvall/claude-dev-toolkit",
3
- "version": "0.0.1-alpha.10",
3
+ "version": "0.0.1-alpha.11",
4
4
  "description": "Custom commands toolkit for Claude Code - streamline your development workflow",
5
5
  "author": "Paul Duvall",
6
6
  "license": "MIT",