@jwdobeutechsolutions/dobeutech-claude-code-custom 1.0.1 → 1.0.2
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/commands/login.md +82 -0
- package/package.json +1 -1
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Authenticate with services (GitHub, MCP servers, APIs)
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Login & Authentication Helper
|
|
6
|
+
|
|
7
|
+
This command helps you authenticate with various services used in Claude Code workflows.
|
|
8
|
+
|
|
9
|
+
## Available Authentication Options
|
|
10
|
+
|
|
11
|
+
Please specify what you'd like to authenticate with:
|
|
12
|
+
|
|
13
|
+
1. **GitHub CLI (gh)**
|
|
14
|
+
- Repository access
|
|
15
|
+
- PR creation and management
|
|
16
|
+
- Issues and actions
|
|
17
|
+
|
|
18
|
+
2. **MCP Servers**
|
|
19
|
+
- Context7 (code documentation)
|
|
20
|
+
- Tavily (web search)
|
|
21
|
+
- GitHub MCP
|
|
22
|
+
- Linear, Notion, etc.
|
|
23
|
+
|
|
24
|
+
3. **Cloud Providers**
|
|
25
|
+
- AWS credentials
|
|
26
|
+
- Azure authentication
|
|
27
|
+
- GCP authentication
|
|
28
|
+
|
|
29
|
+
4. **API Keys**
|
|
30
|
+
- OpenAI API
|
|
31
|
+
- Anthropic API
|
|
32
|
+
- Other service APIs
|
|
33
|
+
|
|
34
|
+
## GitHub Authentication
|
|
35
|
+
|
|
36
|
+
To authenticate with GitHub:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
# Check if already logged in
|
|
40
|
+
gh auth status
|
|
41
|
+
|
|
42
|
+
# Login with browser
|
|
43
|
+
gh auth login
|
|
44
|
+
|
|
45
|
+
# Or use token
|
|
46
|
+
gh auth login --with-token < token.txt
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## MCP Server Configuration
|
|
50
|
+
|
|
51
|
+
MCP servers are configured in `~/.claude.json`. To set up:
|
|
52
|
+
|
|
53
|
+
1. Check current MCP status:
|
|
54
|
+
```bash
|
|
55
|
+
claude-mcp status
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
2. Add API keys to environment variables in `~/.env-mcp`:
|
|
59
|
+
```bash
|
|
60
|
+
export CONTEXT7_API_KEY="your_key_here"
|
|
61
|
+
export TAVILY_API_KEY="your_key_here"
|
|
62
|
+
export GITHUB_TOKEN="your_token_here"
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
3. Restart MCP servers:
|
|
66
|
+
```bash
|
|
67
|
+
claude-mcp restart
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
## Verification Steps
|
|
71
|
+
|
|
72
|
+
After authentication, verify:
|
|
73
|
+
|
|
74
|
+
- **GitHub**: `gh auth status`
|
|
75
|
+
- **MCP**: `claude-mcp status`
|
|
76
|
+
- **AWS**: `aws sts get-caller-identity`
|
|
77
|
+
- **Azure**: `az account show`
|
|
78
|
+
- **GCP**: `gcloud auth list`
|
|
79
|
+
|
|
80
|
+
## What would you like to authenticate?
|
|
81
|
+
|
|
82
|
+
Please respond with the service name (e.g., "GitHub", "MCP servers", "AWS") or ask for help with a specific authentication scenario.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jwdobeutechsolutions/dobeutech-claude-code-custom",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Comprehensive centralized repository of Claude Code configurations including agents, skills, commands, hooks, and MCP servers optimized for full-stack development",
|
|
5
5
|
"author": "jwdobeutechsolutions",
|
|
6
6
|
"license": "MIT",
|