- Refactor monolithic index.js (2646 lines) into src/{webex,integrations,
cards,flows,commands,services} modules; replace node-fetch/form-data
with native fetch/FormData; move all secrets to .env via dotenv
- Add dockerized remote SIW agent (docker/remote-agent/) with cross-arch
buildx packaging (arm64 Mac -> linux/amd64), idempotent install.sh
deploy bundle, and docker-free ZIP inspector for arch verification
- Bot hosts a WebSocket server; agent proxies SIW requests with a
per-request insecure:true flag, replacing the process-wide
NODE_TLS_REJECT_UNAUTHORIZED bypass
- Add ESLint flat config + Prettier, rewrite Dockerfile as non-root
multi-stage node:22-alpine build, README covering setup / deploy /
remote agent workflow
- Fix parseStoreArg to read trigger.prompt correctly (was indexing past
the framework's post-match slice); register /help as regex (string
matcher only compares the first token); switch catch-all to /.+/
(previous /.*/gim was stateful due to the g flag); remove
/fixDisplayNames command and its flow/card
Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
603 B
Text
39 lines
603 B
Text
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Secrets and local config
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
config.json
|
|
config/wbxTokens.json
|
|
config/google-service-account.json
|
|
config/*-service-account.json
|
|
googleData.json
|
|
*.pem
|
|
*.key
|
|
|
|
# Runtime artifacts
|
|
*.log
|
|
buildlogs.log
|
|
|
|
# Generated CSV outputs (from scripts/generate911Csv.js)
|
|
buildingFile.csv
|
|
locationFile.csv
|
|
|
|
# Archives
|
|
*.zip
|
|
|
|
# Remote agent packaging output (produced by docker/remote-agent/package.sh)
|
|
docker/remote-agent/dist/
|
|
docker/remote-agent/.env
|
|
|
|
# OS / editor cruft
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|