Core capabilities: - Jira ticket lifecycle: status, update, comment, transitions, close - JSM Store Support request creation with Assets object resolution - Assets AQL diagnostic probe endpoint with schema/type introspection - Webex transcript ingestion (audio + JSON + human-readable) with restricted-visibility summary comments - Grok-powered single-ticket and open-tickets-by-reporter summaries Repo hygiene: - .gitignore covering .env, node_modules, logs, IDE dirs - .env.example documenting every env var - discover-ss-*.js scripts refactored to read credentials from .env - README covering setup, endpoints, and the Assets scope-vs-role gotcha Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
No EOL
368 B
YAML
15 lines
No EOL
368 B
YAML
services:
|
|
wxcc-jira-grok:
|
|
build: .
|
|
ports:
|
|
- "1866:1866"
|
|
env_file:
|
|
- .env
|
|
restart: unless-stopped
|
|
# Optional: healthcheck at compose level
|
|
healthcheck:
|
|
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:1866/health"]
|
|
interval: 30s
|
|
timeout: 8s
|
|
start_period: 15s
|
|
retries: 3 |