- Removed `injectAll`, `injectSoulIntoMessage`, and `injectToolsIntoMessage` along with their utilities.
- Added `injectOpenClawContext` as the new single context injection system.
- Updated context injection logic across Redux, APIs, and Tauri commands.
- Deleted SOUL and TOOLS injection code, aligning with the new OpenClaw approach.
- Consolidated JSON structure in `.mcp.json` and `.claude/mcp.json` for improved readability.
- Updated `CLAUDE.md` and other documentation files to enhance formatting consistency and clarity.
- Improved the organization of agent roles and initialization procedures in `AGENTS.md`, `BOOTSTRAP.md`, and `IDENTITY.md`.
- Enhanced user understanding and personalization strategies in `USER.md` and `MEMORY.md`.
- Refined tool generation scripts for better error handling and output formatting in `discover-tools.js` and `openClaw-formatter.js`.
* feat: add .mcp.json for MCP server configuration
- Introduced `.mcp.json` with server details for managing MCP integrations
- Defines `readme` server with HTTP type and URL endpoint configuration
* fix: Update skills submodule with Telegram error handling improvements
- Fixed setup flow showing false success when TDLib errors occurred
- Improved async error handling in setup steps
- Added client reset mechanisms for error recovery
- Enhanced error messaging for better user experience
- Cleaned up excessive debug logging while maintaining error logs
Resolves issue where Telegram setup showed success modal despite underlying TDLib errors.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* fix: align frontend API endpoints with backend specification
- Fix thread API endpoints by removing incorrect /telegram prefix
- Fix user settings endpoint path
- Add missing API services: settings, actionable items, credits, feedback, API keys
- Ensure all endpoints match backend OpenAPI specification
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
* Refactor MCP server configuration structure
Updated the MCP configuration to use "alphaHuman" as the key instead of "readme" for clarity and consistency. This change ensures better alignment with naming conventions and improves readability.
---------
Co-authored-by: Claude <noreply@anthropic.com>
* feat: add E2E tests for auth access control and billing/subscription flows
Add comprehensive E2E test coverage for authentication, access control,
and billing/subscription lifecycle using Appium mac2 + WebDriverIO.
New test cases (11 total):
- 1.1 User registration via deep link
- 1.1.1 Duplicate account handling
- 1.2 Multi-device sessions
- 3.1.1 Default FREE plan allocation
- 3.2.1 Upgrade flow (Stripe purchase API + polling)
- 3.2.2 Downgrade flow verification
- 3.3.1 Active subscription display
- 3.3.2 Renewal date handling
- 3.3.3 Cancellation via Stripe portal
- 1.3 Logout via Settings
- 1.3.1 Revoked session auto-logout
Mock server additions:
- Dynamic team data with subscription controlled by mockBehavior
- /payments/stripe/currentPlan, purchasePlan, portal routes
- /payments/coinbase/charge route
Split e2e.sh into per-flow scripts (e2e-login.sh, e2e-auth.sh) to
prevent Redux Persist state leaking between specs.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* style: fix Prettier formatting for E2E test files
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: address review findings for E2E auth spec
- clickFirstCandidate: check retry result, return null with tree dump on failure
- navigateToHome: throw on failure instead of silently continuing
- 3.2.2: assert exactly 1 Upgrade element (PRO only) and verify PRO visible
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add E2E tests for card payment processing flow
Add 8 new E2E tests covering checkout sessions, payment confirmation
via polling, duplicate prevention, and billing events for Stripe card
and Coinbase crypto payment flows.
New files:
- test/e2e/specs/card-payment-flow.spec.ts (8 test cases)
- scripts/e2e-payment.sh (standalone runner)
Modified:
- mock-server.ts: add purchaseError/coinbaseError behavior toggles
- package.json: add test:e2e:payment script and chain into test:e2e
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* fix: add assertions to waitForTextToDisappear calls and guard purchaseError cleanup
Ensure all waitForTextToDisappear results are asserted with expect().toBe(true)
instead of silently discarding the return value. Wrap 5.2.2 test body in
try/finally so the purchaseError mock flag is always reset even if assertions throw.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* style: fix Prettier formatting in card payment spec
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* style: fix pre-existing Prettier formatting issues
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add E2E tests for cryptocurrency payment processing flow
Covers invoice creation (Coinbase charge), confirmation handling
(success, underpayment, overpayment), and payment status updates
(polling, API errors, expired charges). Extends mock server with
crypto payment status endpoint and adds test runner script.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add E2E tests for Telegram integration flows
Covers sections 7.1-7.5: account linking, permission levels, command
processing, webhook handling, and disconnect/re-setup flows (13 tests).
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add E2E tests for Notion integration flows
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* feat: add E2E tests for Gmail integration flows
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
* Implement data synchronization feature in SkillManagementPanel
- Added a new `handleSync` function to trigger manual synchronization for skills, enhancing user control over data updates.
- Integrated skill state management to track synchronization progress, errors, and completion status.
- Updated the UI to display synchronization status, including progress indicators and error messages, improving user feedback during sync operations.
- Enhanced the SkillManager and SkillRuntime classes to support the new sync functionality, ensuring proper handling of sync requests and lifecycle hooks.
Updated subproject commit reference in the skills directory.
* Implement Conversations UI with two-panel thread layout and resizable sidebar
Add full Conversations feature: thread types, API service, Redux slice, and a
two-panel page with a draggable resize handle. Uncomment Conversations nav item
in MiniSidebar and enable prefix-based active state matching.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
* Add Intelligence page and integrate intelligence stats hook
- Introduced a new Intelligence page with a skill management interface, allowing users to view and manage skills.
- Implemented the `useIntelligenceStats` hook to fetch and display session statistics, memory files, and entity counts.
- Enhanced the SkillsGrid component to utilize shared skill icons and status displays, improving UI consistency.
- Added functionality for skill synchronization and management, including action buttons for skill setup and syncing.
- Updated the Conversations page to support sending messages with optimistic UI updates, enhancing user experience.
This commit lays the groundwork for a more interactive and informative intelligence management feature.
* Update subproject commit reference in skills directory and enhance fetch handling in bootstrap.js
- Updated the subproject commit reference in the skills directory to the latest version.
- Modified the fetch implementation in bootstrap.js to ensure options are sent as a JSON string and to parse the JSON response, improving data handling and error management.
* Update subproject commit reference in skills directory and comment out Conversations nav item in MiniSidebar
- Updated the subproject commit reference in the skills directory to the latest version.
- Commented out the Conversations navigation item in MiniSidebar for future implementation.
---------
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>