Commit Graph

18 Commits

Author SHA1 Message Date
john kevin asprec
2c00d2e431 feat(cli): add initial CLI implementation with argument parsing and prompt handling
Some checks failed
CI — Test & Build / Test & Build (pull_request) Has been cancelled
Preview — PR Build Check / PR Preview Build (pull_request) Has been cancelled
- Created package.json and package-lock.json for CLI package.
- Implemented argument parsing in args.ts to handle various flags and commands.
- Developed main CLI logic in cli.ts to execute commands and handle errors.
- Added configuration loading from a JSON file in config.ts, with environment variable support.
- Implemented prompt resolution and provider interaction in prompt.ts.
- Added usage documentation for the CLI.
- Configured TypeScript settings in tsconfig.json for the CLI package.
- Updated README in vscode package to reflect the new CLI functionality.
- Refactored root tsconfig.json to streamline project structure.
2026-08-13 19:19:42 +08:00
john kevin asprec
7adcb47584 release: v1.1.0 — prompt patterns, CHANGELOG-driven release notes
- Prompt Builder: 12 named patterns (Direct/Reasoning/Agentic + Auto), live
  per-pattern hints in popup and in-page dialog, legacy promptStyle migration,
  and a 2048-token floor fix so longer patterns stop getting truncated.
- CHANGELOG.md added (Keep a Changelog + SemVer); release.yml now builds the
  Gitea release body from the matching version section, with a generic
  fallback, plus a zip-root fix so manifest.json sits at the archive root.
- package.json/package-lock.json bumped to 1.1.0; CLAUDE.md documents the
  CHANGELOG-gated release process.
2026-08-12 07:51:15 +08:00
john kevin asprec
c2ca659a2b feat: Enhance project memory and skills documentation; add memory-sync skill for knowledge consolidation
All checks were successful
CI — Test & Build / Test & Build (push) Successful in 1m15s
2026-07-15 16:01:13 +08:00
john kevin asprec
57bc3419fa fix(ci): test triggering ref on PRs, unify token secret, harden JSON parsing
- ci.yml: check out the PR head (or push SHA) instead of always cloning
  main; PR checks now test the actual diff. Drop http.sslVerify=false.
  Publish to the package registry only on push events.
- preview.yml/release.yml: use GITEATOKEN (GITEA_TOKEN is reserved by
  Gitea, so these token steps were silently broken).
- deploy-chrome.yml/release.yml: parse JSON with node instead of
  python3 (not installed in the container) and grep; fail loudly
  instead of swallowing errors with 2>/dev/null.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-14 21:26:36 +08:00
1fedaf4dfa fix: zip chrome-mv3 contents at root level + log manifest version
Some checks failed
CI — Test & Build / Test & Build (push) Successful in 1m20s
Deploy — Chrome Web Store / Build & Deploy to Chrome Web Store (push) Failing after 1m18s
Release — Package & Publish / Build & Package Release (push) Successful in 1m13s
2026-03-11 08:42:39 +00:00
41b13e5b90 fix: use python3 to parse upload response (handles multiline JSON)
Some checks failed
CI — Test & Build / Test & Build (push) Successful in 1m41s
Deploy — Chrome Web Store / Build & Deploy to Chrome Web Store (push) Failing after 1m7s
Release — Package & Publish / Build & Package Release (push) Successful in 1m5s
2026-03-11 08:21:28 +00:00
ecbab9c7ac fix: use python3 to parse OAuth2 token response (handles spaces in JSON)
Some checks failed
CI — Test & Build / Test & Build (push) Successful in 1m0s
Deploy — Chrome Web Store / Build & Deploy to Chrome Web Store (push) Failing after 1m0s
Release — Package & Publish / Build & Package Release (push) Successful in 57s
2026-03-11 08:17:42 +00:00
64c1e65dea ci: add Chrome Web Store deploy workflow
All checks were successful
CI — Test & Build / Test & Build (push) Successful in 54s
2026-03-11 08:06:28 +00:00
a4580cd892 fix: use GITEATOKEN secret (GITEA_TOKEN is reserved by Gitea)
All checks were successful
CI — Test & Build / Test & Build (push) Successful in 52s
2026-03-06 22:44:49 +00:00
Forge
a3072dadfb fix: add timestamp to package version to prevent duplicate conflict
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 46s
2026-03-06 14:05:04 +08:00
Forge
0884f2f18a feat: add Telegram notifications on CI success/failure
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 48s
2026-03-06 14:02:25 +08:00
Forge
7732aace54 fix: clone to /tmp/lexai - avoid mounted workspace volume conflicts
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 35s
2026-03-06 13:52:30 +08:00
Forge
eb691ebb44 fix: use git fetch+reset instead of clone - workspace is a mounted volume
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 10s
2026-03-06 13:51:02 +08:00
Forge
20424af7db fix: clear /workspace before clone to avoid 'already exists' error
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 10s
2026-03-06 13:49:54 +08:00
Forge
7713fb1b1d fix: ci workflow - fix working-directory, git clone path, env var passing
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 10s
2026-03-06 13:45:14 +08:00
Forge
a47b82ab84 feat: publish versioned ZIP to Gitea package registry on CI 2026-03-06 13:43:57 +08:00
Forge
7f16bd886f fix: rewrite workflows without GitHub marketplace actions
Some checks failed
CI — Test & Build / Test & Build (push) Failing after 1m13s
- Use native git clone instead of actions/checkout
- Use node:22-bookworm container directly
- Remove dependency on actions/setup-node, upload-artifact
- Use curl for Gitea API calls directly
- Fixes CI failure on self-hosted runner
2026-03-06 13:18:27 +08:00
Nemo
b04076081c feat: initial LexAI Chrome extension scaffold
Some checks failed
CI — Test & Build / Unit Tests (push) Failing after 54s
CI — Test & Build / Build Extension (push) Has been skipped
- WXT + React 18 + TypeScript setup
- Background service worker (LLM API proxy)
- Content script (floating toolbar + text selection)
- Options page (provider/model/API key config)
- Popup UI
- Gitea Actions workflows (CI, preview, release)
- Vitest unit tests + Playwright E2E setup
- Supports: OpenAI, Anthropic, Groq, OpenRouter
2026-03-06 09:34:15 +08:00