For agentic workers: REQUIRED SUB-SKILL: Use superpowers:subagent-driven-development (recommended) or superpowers:executing-plans to implement this plan task-by-task. Steps use checkbox (
- [ ]) syntax for tracking.
Goal: Add a Hotmail account pool with Microsoft OAuth authorization and Microsoft Graph mail polling, then wire it into the existing automation flow as a new mail provider.
Architecture: Keep the existing 1~9 step orchestrator in background.js, add a new hotmail-api provider path, and extend the side panel to manage Hotmail accounts. Preserve QQ, 163, and Inbucket behavior while introducing account allocation, token management, and Graph-based verification-code retrieval.
Tech Stack: Chrome Extension MV3, plain JavaScript, chrome.identity.launchWebAuthFlow, fetch, chrome.storage.local, chrome.storage.session
Files:
background.jsModify: README.md
[ ] Step 1: Write the failing test
Document the expected account shape and provider behavior in code comments or development notes before implementation:
// Expected local storage shape:
// hotmailAccounts: [{ id, email, password, clientId, accessToken, refreshToken, expiresAt, status, lastUsedAt, lastAuthAt, lastError }]
// mailProvider accepts 'hotmail-api'
Run a manual smoke check by loading the current extension and confirming there is no hotmail-api provider and no persisted Hotmail account state.
Expected: The provider does not exist yet and account state is absent.
Add new persisted keys and runtime state helpers in background.js:
hotmailAccountscurrentHotmailAccountIdhelper functions to read, write, upsert, delete, and mark account status
[ ] Step 4: Run test to verify it passes
Reload the extension and confirm Hotmail account state can be read and written through background message handlers.
[ ] Step 5: Commit
git add background.js README.md
git commit -m "feat: add hotmail account state model"
Files:
sidepanel/sidepanel.htmlsidepanel/sidepanel.cssModify: sidepanel/sidepanel.js
[ ] Step 1: Write the failing test
Describe the expected UI state:
hotmail-apiuser can add, authorize, test, and delete accounts
[ ] Step 2: Run test to verify it fails
Reload the current extension.
Expected: No Hotmail provider option and no account section.
Add:
side panel event handlers for add, authorize, test, delete, and select current account status
[ ] Step 4: Run test to verify it passes
Reload the extension and verify:
account rows render correctly from stored state
[ ] Step 5: Commit
git add sidepanel/sidepanel.html sidepanel/sidepanel.css sidepanel/sidepanel.js
git commit -m "feat: add hotmail account pool panel"
Files:
background.jsModify: manifest.json
[ ] Step 1: Write the failing test
Define the expected authorization flow in a focused helper-oriented checklist:
token response updates the account record
[ ] Step 2: Run test to verify it fails
Trigger the new Authorize action from the side panel.
Expected: The action is not implemented yet and fails.
Add background handlers and helpers for:
chrome.identity.getRedirectURL()chrome.identity.launchWebAuthFlowaccount token persistence and error reporting
[ ] Step 4: Run test to verify it passes
Manually authorize a Hotmail account and confirm:
account status becomes authorized
[ ] Step 5: Commit
git add background.js manifest.json
git commit -m "feat: add microsoft oauth authorization"
Files:
Modify: background.js
[ ] Step 1: Write the failing test
Define the expected helper behavior:
refresh_tokenfiltering returns the newest matching verification code after the requested timestamp
[ ] Step 2: Run test to verify it fails
Use the side panel Test Mail Access action before implementing the Graph path.
Expected: The action fails because Graph mail polling does not exist yet.
Add helpers in background.js for:
verification code extraction
[ ] Step 4: Run test to verify it passes
Authorize a Hotmail account and verify the test action can fetch mailbox data and surface a success or meaningful “no matching mail” response.
[ ] Step 5: Commit
git add background.js
git commit -m "feat: add graph mail polling"
Files:
background.jssidepanel/sidepanel.jsModify: README.md
[ ] Step 1: Write the failing test
Define the expected run behavior:
Step 4 and Step 7 read verification mail through Graph instead of mailbox tabs
[ ] Step 2: Run test to verify it fails
Select hotmail-api and run a manual or auto flow.
Expected: The flow cannot yet allocate an account or fetch verification codes from Graph.
Update:
getMailConfig() or a replacement provider resolverauto-run preconditions for Hotmail accounts
[ ] Step 4: Run test to verify it passes
Run:
hotmail-apiExpected: no mailbox tab is opened for Hotmail, and verification codes come from Graph.
[ ] Step 5: Commit
git add background.js sidepanel/sidepanel.js README.md
git commit -m "feat: integrate hotmail api provider into automation flow"
Files:
Modify: README.md
[ ] Step 1: Write the failing test
List the required regression checks:
Hotmail provider uses API path only
[ ] Step 2: Run test to verify it fails
Manually inspect pre-change behavior expectations against the new code before cleanup.
Expected: Any missing provider branch or broken selector is identified.
Clean up labels, update README usage instructions, and ensure all branches show accurate UI copy.
Reload the extension and perform:
one mail access smoke test
[ ] Step 5: Commit
git add README.md
git commit -m "docs: document hotmail oauth mail provider"