claude-autopm 1.14.1 → 1.15.1

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 (50) hide show
  1. package/autopm/.claude/agents/cloud/aws-cloud-architect.md +3 -3
  2. package/autopm/.claude/agents/cloud/azure-cloud-architect.md +3 -3
  3. package/autopm/.claude/agents/cloud/gcp-cloud-architect.md +3 -3
  4. package/autopm/.claude/agents/cloud/gcp-cloud-functions-engineer.md +4 -4
  5. package/autopm/.claude/agents/cloud/gemini-api-expert.md +3 -3
  6. package/autopm/.claude/agents/cloud/kubernetes-orchestrator.md +3 -3
  7. package/autopm/.claude/agents/cloud/openai-python-expert.md +3 -3
  8. package/autopm/.claude/agents/cloud/terraform-infrastructure-expert.md +4 -4
  9. package/autopm/.claude/agents/core/agent-manager.md +4 -4
  10. package/autopm/.claude/agents/core/code-analyzer.md +4 -4
  11. package/autopm/.claude/agents/core/file-analyzer.md +4 -4
  12. package/autopm/.claude/agents/core/mcp-manager.md +2 -2
  13. package/autopm/.claude/agents/core/parallel-worker.md +4 -4
  14. package/autopm/.claude/agents/core/test-runner.md +4 -4
  15. package/autopm/.claude/agents/data/airflow-orchestration-expert.md +3 -3
  16. package/autopm/.claude/agents/data/kedro-pipeline-expert.md +2 -2
  17. package/autopm/.claude/agents/data/langgraph-workflow-expert.md +3 -3
  18. package/autopm/.claude/agents/databases/bigquery-expert.md +4 -4
  19. package/autopm/.claude/agents/databases/cosmosdb-expert.md +4 -4
  20. package/autopm/.claude/agents/databases/mongodb-expert.md +4 -4
  21. package/autopm/.claude/agents/databases/postgresql-expert.md +4 -4
  22. package/autopm/.claude/agents/databases/redis-expert.md +3 -3
  23. package/autopm/.claude/agents/devops/azure-devops-specialist.md +3 -3
  24. package/autopm/.claude/agents/devops/docker-containerization-expert.md +4 -4
  25. package/autopm/.claude/agents/devops/observability-engineer.md +4 -4
  26. package/autopm/.claude/agents/devops/ssh-operations-expert.md +3 -3
  27. package/autopm/.claude/agents/devops/traefik-proxy-expert.md +3 -3
  28. package/autopm/.claude/agents/frameworks/e2e-test-engineer.md +4 -4
  29. package/autopm/.claude/agents/frameworks/nats-messaging-expert.md +2 -2
  30. package/autopm/.claude/agents/frameworks/react-frontend-engineer.md +3 -3
  31. package/autopm/.claude/agents/frameworks/react-ui-expert.md +4 -4
  32. package/autopm/.claude/agents/frameworks/tailwindcss-expert.md +4 -4
  33. package/autopm/.claude/agents/frameworks/ux-design-expert.md +4 -4
  34. package/autopm/.claude/agents/integration/message-queue-engineer.md +4 -4
  35. package/autopm/.claude/agents/languages/bash-scripting-expert.md +4 -4
  36. package/autopm/.claude/agents/languages/javascript-frontend-engineer.md +4 -4
  37. package/autopm/.claude/agents/languages/nodejs-backend-engineer.md +4 -4
  38. package/autopm/.claude/agents/languages/python-backend-engineer.md +3 -3
  39. package/autopm/.claude/agents/languages/python-backend-expert.md +4 -4
  40. package/autopm/.claude/agents/testing/frontend-testing-engineer.md +4 -4
  41. package/autopm/.claude/examples/mcp/README.md +11 -15
  42. package/autopm/.claude/examples/mcp/context7.md +205 -0
  43. package/autopm/.claude/examples/mcp-servers.example.json +9 -9
  44. package/autopm/.claude/mcp/MCP-REGISTRY.md +10 -10
  45. package/autopm/.claude/rules/agent-coordination.md +5 -5
  46. package/bin/commands/mcp.js +59 -0
  47. package/package.json +1 -1
  48. package/scripts/mcp-handler.js +343 -0
  49. package/autopm/.claude/examples/mcp/context7-codebase.md +0 -267
  50. package/autopm/.claude/examples/mcp/context7-docs.md +0 -190
@@ -1,190 +0,0 @@
1
- ---
2
- name: context7-docs
3
- command: npx
4
- args: ["@upstash/context7-mcp"]
5
- env:
6
- CONTEXT7_API_KEY:
7
- default: ""
8
- description: "Your Context7 API key"
9
- required: true
10
- CONTEXT7_MCP_URL:
11
- default: "https://mcp.context7.com/mcp"
12
- description: "MCP endpoint URL"
13
- required: false
14
- CONTEXT7_API_URL:
15
- default: "https://context7.com/api/v1"
16
- description: "API endpoint URL"
17
- required: false
18
- CONTEXT7_WORKSPACE:
19
- default: "default"
20
- description: "Your workspace identifier (uses default workspace if not set)"
21
- required: false
22
- CONTEXT7_MODE:
23
- default: "documentation"
24
- description: "Server mode"
25
- required: false
26
- envFile: .claude/.env
27
- description: Context7 documentation server for accessing technical documentation
28
- category: documentation
29
- status: active
30
- version: ">=1.0.0"
31
- ---
32
-
33
- # Context7 Documentation Server
34
-
35
- ## Description
36
-
37
- The Context7 Documentation Server provides AI agents with access to comprehensive technical documentation from various sources. It enables intelligent documentation retrieval, contextual search, and knowledge base integration.
38
-
39
- ## Features
40
-
41
- - **Smart Documentation Search**: AI-powered search across multiple documentation sources
42
- - **Contextual Retrieval**: Returns relevant documentation based on current task context
43
- - **Version-Aware**: Handles multiple versions of documentation
44
- - **Caching**: Local caching for improved performance
45
- - **Multi-Source Support**: Aggregates documentation from various sources
46
-
47
- ## Configuration
48
-
49
- ### Required Environment Variables
50
-
51
- - `CONTEXT7_API_KEY`: Your Context7 API key (required)
52
- - `CONTEXT7_WORKSPACE`: Your workspace identifier (optional)
53
-
54
- ### Optional Environment Variables
55
-
56
- - `CONTEXT7_MCP_URL`: MCP endpoint URL (default: mcp.context7.com/mcp)
57
- - `CONTEXT7_API_URL`: API endpoint URL (default: context7.com/api/v1)
58
- - `CONTEXT7_MODE`: Server mode (default: documentation)
59
-
60
- ## Usage Examples
61
-
62
- ### Basic Setup
63
-
64
- ```bash
65
- # Enable the server
66
- autopm mcp enable context7-docs
67
-
68
- # Set up environment variables
69
- echo "CONTEXT7_API_KEY=your-api-key" >> .claude/.env
70
- echo "CONTEXT7_WORKSPACE=your-workspace" >> .claude/.env
71
-
72
- # Sync configuration
73
- autopm mcp sync
74
- ```
75
-
76
- ### Integration with Agents
77
-
78
- This server is commonly used with:
79
- - `python-backend-engineer` - For Python documentation
80
- - `react-frontend-engineer` - For React/JavaScript documentation
81
- - `azure-devops-specialist` - For Azure DevOps documentation
82
- - `kubernetes-orchestrator` - For Kubernetes documentation
83
-
84
- ### Context Pool Configuration
85
-
86
- ```json
87
- {
88
- "python-docs": {
89
- "type": "shared",
90
- "agents": ["python-backend-engineer"],
91
- "sources": ["context7-docs"],
92
- "filters": ["fastapi", "sqlalchemy", "pydantic"],
93
- "maxSize": "100MB",
94
- "retention": "7d"
95
- }
96
- }
97
- ```
98
-
99
- ## Supported Documentation Sources
100
-
101
- ### Programming Languages
102
- - Python (CPython, PyPI packages)
103
- - JavaScript/TypeScript (MDN, Node.js)
104
- - Go (official docs)
105
- - Rust (docs.rs)
106
- - Java (OpenJDK)
107
-
108
- ### Frameworks & Libraries
109
- - FastAPI, Flask, Django
110
- - React, Vue, Angular
111
- - Express, NestJS
112
- - Spring Boot
113
-
114
- ### Cloud & DevOps
115
- - AWS, Azure, GCP documentation
116
- - Kubernetes, Docker
117
- - Terraform, Ansible
118
- - GitHub Actions, GitLab CI
119
-
120
- ### Databases
121
- - PostgreSQL, MySQL, MongoDB
122
- - Redis, Elasticsearch
123
- - SQLAlchemy, Prisma
124
-
125
- ## Performance Optimization
126
-
127
- ### Caching Strategy
128
- - Local cache: 7 days for stable docs
129
- - Version-specific caching
130
- - Incremental updates for large docs
131
-
132
- ### Request Optimization
133
- - Batch requests when possible
134
- - Use filters to reduce payload
135
- - Enable compression
136
-
137
- ## Troubleshooting
138
-
139
- ### Common Issues
140
-
141
- 1. **Authentication Failed**
142
- - Verify CONTEXT7_API_KEY is set correctly
143
- - Check API key permissions
144
-
145
- 2. **Slow Response Times**
146
- - Enable local caching
147
- - Use specific filters
148
- - Check network connectivity
149
-
150
- 3. **Missing Documentation**
151
- - Verify documentation source is supported
152
- - Check workspace configuration
153
- - Update server version
154
-
155
- ### Debug Mode
156
-
157
- Enable debug logging:
158
- ```bash
159
- export CONTEXT7_DEBUG=true
160
- ```
161
-
162
- ## Security Considerations
163
-
164
- 1. **API Key Management**
165
- - Store in `.claude/.env`
166
- - Never commit to version control
167
- - Rotate keys regularly
168
-
169
- 2. **Network Security**
170
- - Use HTTPS endpoints only
171
- - Validate SSL certificates
172
- - Monitor API usage
173
-
174
- 3. **Access Control**
175
- - Limit workspace access
176
- - Use read-only permissions when possible
177
- - Audit access logs
178
-
179
- ## Version History
180
-
181
- - **1.0.0**: Initial release
182
- - **1.1.0**: Added caching support
183
- - **1.2.0**: Multi-source aggregation
184
- - **1.3.0**: Context-aware retrieval
185
-
186
- ## Related Resources
187
-
188
- - [Context7 Documentation](https://docs.context7.com)
189
- - [MCP Protocol Specification](https://modelcontextprotocol.org)
190
- - [Agent Integration Guide](../agents/AGENT-MCP-INTEGRATION.md)