@jwdobeutechsolutions/dobeutech-claude-code-custom 1.0.1 → 1.0.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/commands/login.md +82 -0
  2. package/package.json +53 -53
@@ -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,53 +1,53 @@
1
- {
2
- "name": "@jwdobeutechsolutions/dobeutech-claude-code-custom",
3
- "version": "1.0.1",
4
- "description": "Comprehensive centralized repository of Claude Code configurations including agents, skills, commands, hooks, and MCP servers optimized for full-stack development",
5
- "author": "jwdobeutechsolutions",
6
- "license": "MIT",
7
- "main": "scripts/install.js",
8
- "bin": {
9
- "claude-config": "bin/claude-config.js"
10
- },
11
- "scripts": {
12
- "postinstall": "node scripts/install.js"
13
- },
14
- "files": [
15
- "agents",
16
- "skills",
17
- "commands",
18
- "rules",
19
- "hooks",
20
- "mcp-configs",
21
- "templates",
22
- "docs",
23
- "bin",
24
- "scripts",
25
- "README.md",
26
- "CONTRIBUTING.md",
27
- "CLAUDE.md"
28
- ],
29
- "keywords": [
30
- "claude-code",
31
- "agents",
32
- "skills",
33
- "commands",
34
- "hooks",
35
- "mcp",
36
- "full-stack",
37
- "development",
38
- "claude",
39
- "ai",
40
- "configuration"
41
- ],
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/dobeutech/dobeutech-claude-code-custom.git"
45
- },
46
- "publishConfig": {
47
- "registry": "https://registry.npmjs.org/",
48
- "access": "public"
49
- },
50
- "engines": {
51
- "node": ">=14.0.0"
52
- }
53
- }
1
+ {
2
+ "name": "@jwdobeutechsolutions/dobeutech-claude-code-custom",
3
+ "version": "1.0.3",
4
+ "description": "Comprehensive centralized repository of Claude Code configurations including agents, skills, commands, hooks, and MCP servers optimized for full-stack development",
5
+ "author": "jwdobeutechsolutions",
6
+ "license": "MIT",
7
+ "main": "scripts/install.js",
8
+ "bin": {
9
+ "claude-config": "bin/claude-config.js"
10
+ },
11
+ "scripts": {
12
+ "postinstall": "node scripts/install.js"
13
+ },
14
+ "files": [
15
+ "agents",
16
+ "skills",
17
+ "commands",
18
+ "rules",
19
+ "hooks",
20
+ "mcp-configs",
21
+ "templates",
22
+ "docs",
23
+ "bin",
24
+ "scripts",
25
+ "README.md",
26
+ "CONTRIBUTING.md",
27
+ "CLAUDE.md"
28
+ ],
29
+ "keywords": [
30
+ "claude-code",
31
+ "agents",
32
+ "skills",
33
+ "commands",
34
+ "hooks",
35
+ "mcp",
36
+ "full-stack",
37
+ "development",
38
+ "claude",
39
+ "ai",
40
+ "configuration"
41
+ ],
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/dobeutech/dobeutech-claude-code-custom.git"
45
+ },
46
+ "publishConfig": {
47
+ "registry": "https://registry.npmjs.org/",
48
+ "access": "public"
49
+ },
50
+ "engines": {
51
+ "node": ">=14.0.0"
52
+ }
53
+ }