GenX FX Trading System
5cbf182434
Merge pull request #297 from A6-9V/bolt-upgrade-repo-parallelization-16375986474887536509
...
⚡ Bolt: Parallelize AI requests in upgrade_repo.py
2026-02-10 12:47:18 +07:00
google-labs-jules[bot]
cf1b95ec8a
feat(scripts): parallelize AI requests in upgrade_repo.py
...
- Replaced sequential execution of `ask_gemini` and `ask_jules` with `concurrent.futures.ThreadPoolExecutor`.
- Reduced total execution time by running independent network-bound tasks in parallel.
- Added necessary import for `concurrent.futures`.
⚡ Bolt: Parallelize AI requests (~2x speedup)
2026-02-10 05:36:36 +00:00
Cursor Agent
8a8a6521e2
Hardening: disable WebRequest by default
...
Co-authored-by: GenX FX Trading System <Mouy-leng@users.noreply.github.com>
2026-02-10 04:38:44 +00:00
Cursor Agent
f3ea60475b
Security: remove leaked tokens and add secret scan
...
Co-authored-by: GenX FX Trading System <Mouy-leng@users.noreply.github.com>
2026-02-10 04:38:19 +00:00
google-labs-jules[bot]
5f27eafb6f
feat: implement unified MQL5 EA containerized deployment and CI/CD
2026-02-09 16:19:26 +00:00
google-labs-jules[bot]
0b8a09a572
Add security headers to web dashboard (CSP, HSTS, X-Frame-Options)
...
- Implemented `@app.after_request` in `scripts/web_dashboard.py` to inject security headers.
- Added `Content-Security-Policy` with `default-src 'self'`, blocking inline scripts.
- Added `X-Content-Type-Options: nosniff`.
- Added `X-Frame-Options: SAMEORIGIN`.
- Added `Referrer-Policy: strict-origin-when-cross-origin`.
- Added unit test `test_security_headers` to `scripts/test_web_dashboard.py` to verify header presence.
- Mitigates Stored XSS, Clickjacking, and MIME sniffing risks.
2026-02-09 11:27:48 +00:00
google-labs-jules[bot]
af093f1a67
🎨 Palette: Improve emoji accessibility
...
Wrapped emojis in <span> tags with role="img" and aria-label to improve accessibility for screen readers. This ensures icons are announced correctly (e.g., "Rocket", "Chart") rather than as characters or ignored.
Affected files:
- index.html
- dashboard/index.html
- offline.html
- sw-inspector.html
2026-02-09 11:13:59 +00:00
google-labs-jules[bot]
228aa8d2cf
feat: add CircleCI configuration with validation and testing
2026-02-09 09:54:11 +00:00
GenX FX Trading System
ab590ee14d
Merge pull request #288 from A6-9V/bolt-optimize-pr-review-1839512656808885464
...
⚡ Bolt: Optimize branch analysis in PR review script
2026-02-09 12:13:25 +07:00
copilot-swe-agent[bot]
b8cf76aac5
Improve variable and function naming for clarity
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-09 05:12:51 +00:00
copilot-swe-agent[bot]
6ab61f8c3c
Add documentation for echo and hello window feature
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-09 05:09:47 +00:00
copilot-swe-agent[bot]
70608d418d
Add echo and hello window functionality
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-09 05:08:59 +00:00
copilot-swe-agent[bot]
4027d7175c
Initial plan
2026-02-09 05:08:54 +00:00
google-labs-jules[bot]
1b82a2865d
Optimize branch analysis in PR review script
...
- Modified `scripts/review_pull_requests.py` to filter `git for-each-ref` output by unmerged branches.
- Reduces algorithmic complexity from O(N) to O(M) where N is total branches and M is active branches.
- Avoids expensive `ahead-behind` calculations for potentially thousands of stale merged branches.
2026-02-09 05:06:55 +00:00
copilot-swe-agent[bot]
b6eb54ba66
Initial plan
2026-02-09 05:06:12 +00:00
GenX FX Trading System
0758aa640e
Merge pull request #285 from A6-9V/cleanup-vps-docs-3659919150454117231
...
Update VPS and Terminal configuration documentation
2026-02-09 08:12:38 +07:00
google-labs-jules[bot]
643c712228
docs: update VPS and terminal configuration metadata
2026-02-09 01:03:32 +00:00
GenX FX Trading System
d99ec0046e
Merge pull request #274 from A6-9V/bolt-optimize-git-review-rev-list-count-10239882398315046114
...
⚡ Bolt: Optimize PR review script with git rev-list
2026-02-09 07:18:49 +07:00
GenX FX Trading System
aa6632ee80
Merge branch 'copilot/install-juless-cli' into bolt-optimize-git-review-rev-list-count-10239882398315046114
2026-02-09 07:18:44 +07:00
GenX FX Trading System
ab97941a31
Merge pull request #284 from A6-9V/perf-market-research-loop-opt-6994024450981106396
...
⚡ Optimize market data processing loop and fix logic error
2026-02-09 04:41:46 +07:00
google-labs-jules[bot]
151f18724c
⚡ Optimize market data processing loop and fix logic error
2026-02-08 20:49:39 +00:00
GenX FX Trading System
49d4ac6b88
Merge pull request #281 from A6-9V/feat/install-vercel-cli-11754633077534590389
...
Install Vercel CLI and update setup documentation
2026-02-09 00:46:16 +07:00
google-labs-jules[bot]
887b8b73e9
feat: install Vercel CLI and update setup documentation
...
- Installed Vercel CLI v50.13.2 via npm.
- Created docs/Vercel_CLI_setup.md with installation and usage guides.
- Updated setup.sh to track Vercel CLI status and show documentation path.
2026-02-08 17:30:10 +00:00
GenX FX Trading System
789c3f032f
Merge pull request #279 from A6-9V/copilot/run-continuous-deployment
...
Add CD workflow for automated multi-platform deployment
2026-02-08 23:50:22 +07:00
copilot-swe-agent[bot]
12adedda33
Fix spacing issue in CD workflow guide
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 16:17:47 +00:00
copilot-swe-agent[bot]
38c90da940
Add CD quick reference guide
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 16:17:15 +00:00
copilot-swe-agent[bot]
88195a51ff
Add CD workflow with comprehensive deployment automation
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 16:16:13 +00:00
copilot-swe-agent[bot]
6d1d2a0422
Initial plan
2026-02-08 16:13:26 +00:00
GenX FX Trading System
2a51319a6e
Merge pull request #278 from A6-9V/circleci-project-setup
...
Add .circleci/config.yml
2026-02-08 23:12:11 +07:00
GenX FX Trading System
048950bb62
Add .circleci/config.yml
2026-02-08 22:58:37 +07:00
GenX FX Trading System
8bc0bc6ba3
Merge pull request #276 from A6-9V/palette-skip-link-12897505139395664782
...
🎨 Palette: Add skip-to-content link for accessibility
2026-02-08 22:35:17 +07:00
google-labs-jules[bot]
644c00e696
🎨 Palette: Add skip-to-content link for accessibility
2026-02-08 11:20:56 +00:00
GenX FX Trading System
c161565f6b
Merge pull request #273 from A6-9V/copilot/update-defaults-and-fix-issues
...
Configure Telegram bot and GitHub PAT for deployment automation
2026-02-08 15:50:11 +07:00
google-labs-jules[bot]
92e5a0540b
perf: optimize PR review script using git rev-list
...
- Replaced O(N) `git log` parsing with O(1) `git rev-list --count` for branch commit counts.
- Updated `get_all_branch_details` to return an empty `commits` list to ensure consistent data structure with `get_branch_info`, preventing potential runtime errors.
- Changed base branch reference from `main` to `origin/main` to support CI/CD environments and shallow clones where local `main` might be missing.
- Removed unused `commits` list generation in `get_branch_info` to improve fallback performance.
2026-02-08 05:36:14 +00:00
copilot-swe-agent[bot]
2e4cd72c57
Add task completion summary for Telegram bot configuration
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 04:18:31 +00:00
copilot-swe-agent[bot]
70d30bb991
Add comprehensive documentation for Telegram bot and GitHub secrets setup
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 04:17:00 +00:00
copilot-swe-agent[bot]
e1d193b6f9
Security fix: Replace real credentials with placeholders in docs and examples
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 04:15:17 +00:00
copilot-swe-agent[bot]
7c55d36653
Update Telegram bot defaults and webhook configuration
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-08 04:12:44 +00:00
copilot-swe-agent[bot]
8b4900e555
Initial plan
2026-02-08 04:09:16 +00:00
GenX FX Trading System
646e6011d6
Merge pull request #266 from A6-9V/palette-enhance-ux-links-10354272485788745226
...
🎨 Palette: Enhance button UX and link accessibility
2026-02-07 22:55:54 +07:00
GenX FX Trading System
69605a5491
Merge pull request #267 from A6-9V/sentinel-telegram-auth-fix-5349804444230613079
...
🛡️ Sentinel: Fix Critical Authorization Bypass in Telegram Bot
2026-02-07 22:54:43 +07:00
google-labs-jules[bot]
9b6778cba0
Fix CRITICAL authorization bypass in Telegram Bot
...
- Changed `check_authorized` in `scripts/telegram_deploy_bot.py` to fail closed (deny all) if `TELEGRAM_ALLOWED_USER_IDS` is unset or empty.
- Updated `scripts/TELEGRAM_BOT_SETUP.md` and `QUICK_DEPLOY.md` to document that `TELEGRAM_ALLOWED_USER_IDS` is now mandatory for bot access.
- Added Sentinel Journal entry in `.jules/sentinel.md` documenting the vulnerability and learning.
- Verified fix with reproduction script.
2026-02-07 11:33:43 +00:00
google-labs-jules[bot]
5810104082
🎨 Palette: Enhance button UX and link accessibility
...
- Add `.btn:focus-visible` styles for better keyboard navigation visibility.
- Add `rel="noopener noreferrer"` and `aria-label` to external links for security and accessibility.
- Add `role="button"` to placeholder links (`href="#"`) for semantic correctness.
- Replace blocking `alert()` with a non-blocking button text change ("Coming Soon! 🚧 ") for better UX.
- Apply changes to both `index.html` and `dashboard/index.html`.
2026-02-07 11:23:41 +00:00
GenX FX Trading System
77eaff3696
Merge pull request #261 from A6-9V/feature/ssh-setup-10158562751495496513
...
Add SSH Key Setup and Update Git Remote
2026-02-07 00:15:49 +07:00
google-labs-jules[bot]
ccae9d48a0
feat: add SSH key setup and update git remote to SSH
...
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-06 17:09:17 +00:00
Copilot
655fa623fc
Add Kubernetes introduction documentation ( #251 )
...
* Initial plan
* Add comprehensive Kubernetes introduction guide
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-05 02:53:41 +07:00
Copilot
3ae9f3f7e7
Add release management infrastructure and automation ( #255 )
...
* Initial plan
* Add release infrastructure: CHANGELOG, workflow, and documentation
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
* Add release checklist and VERSION file
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
* Fix variable assignment in release preparation script
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
* Add release quick reference and update documentation
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
* Add comprehensive release preparation summary
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
* Add task completion summary
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Mouy-leng <199350297+Mouy-leng@users.noreply.github.com>
2026-02-05 02:53:31 +07:00
GenX FX Trading System
e699d85ad6
Merge pull request #248 from A6-9V/launch-to-vps-singapore-10-7441465906439053279
...
Launch to MetaTrader VPS Singapore 10
2026-02-04 15:05:36 +07:00
GenX FX Trading System
472652f860
Merge branch 'copilot/install-juless-cli' into launch-to-vps-singapore-10-7441465906439053279
2026-02-04 15:05:24 +07:00
GenX FX Trading System
0c7436ffa4
Merge pull request #249 from A6-9V/copilot/merge-and-update-default
...
[WIP] Merge commits and update default branch
2026-02-04 15:05:00 +07:00