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>
54 lines
911 B
Text
54 lines
911 B
Text
# =============================================
|
|
# Secrets — NEVER commit these
|
|
# =============================================
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.p12
|
|
*.pfx
|
|
credentials*
|
|
secrets*
|
|
|
|
# =============================================
|
|
# Node
|
|
# =============================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.npm/
|
|
.yarn/
|
|
.pnp.*
|
|
|
|
# =============================================
|
|
# Runtime / build artifacts
|
|
# =============================================
|
|
logs/
|
|
*.log
|
|
dist/
|
|
build/
|
|
coverage/
|
|
.nyc_output/
|
|
tmp/
|
|
.tmp/
|
|
|
|
# =============================================
|
|
# Editor / IDE / OS
|
|
# =============================================
|
|
.vscode/
|
|
.idea/
|
|
.continue/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# =============================================
|
|
# Docker
|
|
# =============================================
|
|
docker-compose.override.yml
|