Fixes several categories of test failures to achieve a clean test suite:
**Python 3.14 / chromadb compatibility**
- chroma.py: broaden except clause to catch pydantic ConfigError on Python 3.14
- test_adaptors_e2e.py, test_integration_adaptors.py: skip on (ImportError, Exception)
**sys.modules corruption (test isolation)**
- test_swift_detection.py: save/restore all skill_seekers.cli modules AND parent
package attributes in test_empty_swift_patterns_handled_gracefully; prevents
@patch decorators in downstream test files from targeting stale module objects
**Removed unnecessary @unittest.skip decorators**
- test_claude_adaptor.py, test_gemini_adaptor.py, test_openai_adaptor.py: remove
skip from tests that already had pass-body or were compatible once deps installed
**Fixed openai import guard for installed package**
- test_openai_adaptor.py: use patch.dict(sys.modules, {"openai": None}) for
test_upload_missing_library since openai is now a transitive dep
**langchain import path update**
- test_rag_chunker.py: fix from langchain.schema → langchain_core.documents
**config_extractor tomllib fallback**
- config_extractor.py: use stdlib tomllib (Python 3.11+) as fallback when
tomli/toml packages are not installed
**Remove redundant sys.path.insert() calls**
- codebase_scraper.py, doc_scraper.py, enhance_skill.py, enhance_skill_local.py,
estimate_pages.py, install_skill.py: remove legacy path manipulation no longer
needed with pip install -e . (src/ layout)
**Test fixes: removed @requires_github from fully-mocked tests**
- test_unified_analyzer.py: 5 tests that mock GitHubThreeStreamFetcher don't
need a real token; remove decorator so they always run
**macOS-specific test improvements**
- test_terminal_detection.py: use @patch(sys.platform, "darwin") instead of
runtime skipTest() so tests run on all platforms
**Dependency updates**
- pyproject.toml, uv.lock: add langchain and llama-index as core dependencies
**New workflow presets and tests**
- src/skill_seekers/workflows/: add 60 new domain-specific workflow YAML presets
- tests/test_mcp_workflow_tools.py: tests for MCP workflow tool implementations
- tests/test_unified_scraper_orchestration.py: tests for UnifiedScraper methods
Result: 2115 passed, 158 skipped (external services/long-running), 0 failures
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
195 lines
5.1 KiB
YAML
195 lines
5.1 KiB
YAML
name: api-gateway
|
|
description: Document API gateway configuration, routing, and management
|
|
version: "1.0"
|
|
applies_to:
|
|
- codebase_analysis
|
|
- github_analysis
|
|
variables:
|
|
depth: comprehensive
|
|
stages:
|
|
- name: base_patterns
|
|
type: builtin
|
|
target: patterns
|
|
enabled: true
|
|
uses_history: false
|
|
|
|
- name: gateway_platform
|
|
type: custom
|
|
target: platform
|
|
uses_history: false
|
|
enabled: true
|
|
prompt: >
|
|
Analyze the API gateway platform and configuration.
|
|
|
|
Identify:
|
|
1. Gateway technology (Kong, AWS API Gateway, Nginx, Envoy, etc.)
|
|
2. Deployment mode (managed, self-hosted, Kubernetes)
|
|
3. Configuration method (declarative, UI, API)
|
|
4. Multi-region or edge deployment
|
|
5. High availability setup
|
|
6. Version being used
|
|
|
|
Output JSON with:
|
|
- "technology": gateway platform
|
|
- "deployment_mode": hosting approach
|
|
- "configuration": config method
|
|
- "topology": deployment layout
|
|
- "ha_setup": availability config
|
|
- "version": gateway version
|
|
|
|
- name: routing_configuration
|
|
type: custom
|
|
target: routing
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document routing and traffic management.
|
|
|
|
Cover:
|
|
1. Route matching rules (path, method, host)
|
|
2. Upstream service definitions
|
|
3. Load balancing algorithms
|
|
4. Path rewriting and transformation
|
|
5. Header manipulation
|
|
6. Redirect and forwarding rules
|
|
|
|
Output JSON with:
|
|
- "route_rules": matching configuration
|
|
- "upstreams": backend services
|
|
- "load_balancing": LB strategy
|
|
- "path_rewrite": URL transformation
|
|
- "headers": header rules
|
|
- "redirects": redirect config
|
|
|
|
- name: security_policies
|
|
type: custom
|
|
target: security
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document gateway security policies.
|
|
|
|
Include:
|
|
1. Authentication methods (JWT, API keys, OAuth)
|
|
2. Rate limiting and throttling
|
|
3. IP allowlisting/blocklisting
|
|
4. CORS configuration
|
|
5. SSL/TLS termination
|
|
6. WAF integration
|
|
7. Bot protection
|
|
|
|
Output JSON with:
|
|
- "authentication": auth methods
|
|
- "rate_limiting": throttling rules
|
|
- "ip_policies": IP restrictions
|
|
- "cors": CORS setup
|
|
- "tls": encryption config
|
|
- "waf": WAF rules
|
|
- "bot_protection": bot defense
|
|
|
|
- name: traffic_management
|
|
type: custom
|
|
target: traffic
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document advanced traffic management.
|
|
|
|
Cover:
|
|
1. Canary deployments
|
|
2. Blue-green deployments
|
|
3. A/B testing configuration
|
|
4. Circuit breaker patterns
|
|
5. Retry policies
|
|
6. Timeout configuration
|
|
7. Request buffering
|
|
|
|
Output JSON with:
|
|
- "canary": canary release config
|
|
- "blue_green": blue-green setup
|
|
- "ab_testing": A/B routing
|
|
- "circuit_breaker": failure handling
|
|
- "retries": retry logic
|
|
- "timeouts": timeout settings
|
|
- "buffering": request buffering
|
|
|
|
- name: observability_gateway
|
|
type: custom
|
|
target: observability
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document gateway observability.
|
|
|
|
Include:
|
|
1. Access logging configuration
|
|
2. Metrics collection (latency, throughput, errors)
|
|
3. Distributed tracing integration
|
|
4. Health check endpoints
|
|
5. Alerting rules
|
|
6. Dashboard setup
|
|
|
|
Output JSON with:
|
|
- "access_logs": logging config
|
|
- "metrics": key metrics
|
|
- "tracing": trace integration
|
|
- "health_checks": health endpoints
|
|
- "alerts": alerting rules
|
|
- "dashboards": monitoring UI
|
|
|
|
- name: plugin_extensions
|
|
type: custom
|
|
target: plugins
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document gateway plugins and extensions.
|
|
|
|
Cover:
|
|
1. Built-in plugins used
|
|
2. Custom plugin development
|
|
3. Plugin configuration
|
|
4. Plugin ordering and precedence
|
|
5. Serverless/Lambda integration
|
|
6. Request/response transformation
|
|
|
|
Output JSON with:
|
|
- "built_in": standard plugins
|
|
- "custom_plugins": custom extensions
|
|
- "configuration": plugin config
|
|
- "ordering": execution order
|
|
- "serverless": function integration
|
|
- "transformations": data transformation
|
|
|
|
- name: developer_portal
|
|
type: custom
|
|
target: portal
|
|
uses_history: true
|
|
enabled: true
|
|
prompt: >
|
|
Document developer experience and portal.
|
|
|
|
Include:
|
|
1. API documentation generation
|
|
2. Developer portal setup
|
|
3. API key management
|
|
4. Usage analytics for consumers
|
|
5. Onboarding flows
|
|
6. Sandbox/testing environment
|
|
|
|
Output JSON with:
|
|
- "documentation": API docs
|
|
- "portal": developer portal
|
|
- "key_management": API key handling
|
|
- "analytics": usage tracking
|
|
- "onboarding": getting started
|
|
- "sandbox": test environment
|
|
|
|
post_process:
|
|
reorder_sections: []
|
|
add_metadata:
|
|
enhanced: true
|
|
workflow: api-gateway
|
|
domain: backend
|
|
has_gateway_docs: true
|