Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm run check
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@ playwright-report/
*.log
.DS_Store
Thumbs.db
release/*.zip
test-results/
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog

## 0.1.0 — 2026-08-10

First public-ready developer-mode alpha.

- Added local-first MV3 service worker, schedule engine, rule classifier, run state machine, storage, tab preservation, notifications, and generated audio.
- Added scheduled/recurring and passive watch profiles, guarded-refresh/observe-only modes, optional per-origin access, watch copy, and automatic schedule start.
- Added command center, live workspace, watch builder, activity ledger, Queue Lab, settings, and compact side panel.
- Added queue/challenge navigation lock, prior-queue admission guard, position/ETA extraction, durable absolute ETA, low-ETA notification, and background-discard protection.
- Added synthetic Queue Lab, 26 unit tests, real extension E2E, CI, package verification, release packaging, and public documentation.
35 changes: 26 additions & 9 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,31 @@
# Contributing

QueueScope is being prepared privately before its first public release. Contributions are not yet open.
QueueScope welcomes retailer-neutral fixes, tests, documentation, accessibility work, and capability-bounded generic features after the repository becomes public.

Once public development begins, changes should:
## Local setup

- Remain retailer-neutral in the core repository.
- Preserve the automation and privacy boundaries.
- Add or update tests for every state transition.
- Include visual evidence for command-center or side-panel changes.
- Avoid committing captured production pages, responses, credentials, or session material.
- Keep adapters capability-bounded and documented.
```powershell
npm ci
npm run check
```

Detailed development commands will be added with the first implementation phase.
Useful commands:

- `npm run dev` — Vite UI preview.
- `npm run test:watch` — focused unit tests.
- `npm run build` — production MV3 build plus artifact verification.
- `npm run test:e2e` — load the extension in a disposable visible Chromium profile.
- `npm run package` — create the unpacked release ZIP and SHA-256 file.

## Change requirements

- Keep the core retailer-neutral.
- Preserve the privacy and automation boundaries.
- Add or update tests for state/schedule/rule changes.
- Use only synthetic fixtures committed to this repository.
- Include fresh browser screenshots for meaningful UI changes and inspect them at full resolution.
- Do not commit captured production pages, private responses, credentials, cookies, session material, product identifiers, or provider endpoints.
- Explain new permissions and keep origin access optional.
- Do not weaken the queue-lock or prior-queue admission invariants.

Run `npm run check` before opening a pull request. UI changes should also pass `npm run test:e2e` on Windows or document why the visible-browser gate could not run.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2026 Noah Hicks

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading