@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 +0 -7
- package/bin/claude-commands +15 -2
- package/lib/oidc-command.js +13 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
# Claude Dev Toolkit
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@paulduvall/claude-dev-toolkit)
|
|
4
|
-
[](https://opensource.org/licenses/MIT)
|
|
5
|
-

|
|
6
|
-

|
|
7
|
-

|
|
8
|
-

|
|
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
|
package/bin/claude-commands
CHANGED
|
@@ -266,11 +266,24 @@ program
|
|
|
266
266
|
const oidcCmd = new OidcCommand();
|
|
267
267
|
try {
|
|
268
268
|
const result = await oidcCmd.execute(options);
|
|
269
|
-
if (
|
|
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(
|
|
286
|
+
console.error(`❌ OIDC setup failed: ${error.message}`);
|
|
274
287
|
process.exit(1);
|
|
275
288
|
}
|
|
276
289
|
});
|
package/lib/oidc-command.js
CHANGED
|
@@ -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
|
-
|
|
295
|
+
this.showDryRun(options);
|
|
296
|
+
return {
|
|
297
|
+
message: '✅ Dry run completed successfully',
|
|
298
|
+
dryRun: true
|
|
299
|
+
};
|
|
296
300
|
}
|
|
297
301
|
|
|
298
|
-
//
|
|
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