βοΈ Release Notes
π Release 0.3.1 (2026-03-31)
β¨ Major Features
- π¦ Product Analysis Service: New
ProductServicefor the full product analysis lifecycle β create, poll, and retrieve reports via REST API (no WebSocket needed).client.product.create()β submit product name or URL with optional attachmentsclient.product.get_info()β poll product generation statusclient.product.get_report()β get full analysis report (keywords, personas, competitors, campaigns)client.product.get_categories()β retrieve industry classification dataclient.product.create_and_wait()β high-level method that handles the entire create β poll β report flow with callback support
- π Product Data Models: Typed Pydantic models for the product API:
CreateProductRequest,CreateProductResponse,ProductInfo,ProductReport,Campaign,IndustryCondition,Category,Industry
π§ Improvements
- π Cleaner Logging: WebSocket connection URL (containing credentials) moved from
INFOtoDEBUG; disconnect internals also demoted toDEBUG - π Better CLI Output: Plan status updates now use
[plan] status: xxxformat; task result shows[task_result] completed/stopped; JSON completion messages parsed to display human-readable reason instead of truncated raw JSON - π‘οΈ Example Robustness: Both examples now exit cleanly with a helpful message when
mate.yamlis missing or has invalid credentials, instead of falling back to empty defaults
π New Files
wyseos/mate/services/product.pyβ ProductService implementationexamples/product_analysis/example.pyβ standalone product analysis exampledocs/api-product-create.mdβ product API documentation (Chinese)
π¦ See: wyseos-sdk 0.3.1 on PyPI
π Release 0.3.0 (2026-03-31)
β¨ Major Features
- π― Marketing Mode: Full marketing support β product analysis, trending topic selection, tweet/thread generation, and rich streaming with chunk aggregation.
- New
TaskMode.Marketingfor marketing-specific session execution - New
MarketingServicewith REST APIs:get_product_info,get_report_detail,update_report,get_research_tweets - New
SessionService.get_marketing_data()for retrieving generated content (reply/like/retweet/tweet) per session - Rich streaming support for
writer_twitter,marketing_tweet_reply,marketing_tweet_interact
- New
- π JWT Authentication: Dual auth support β API key and JWT token, across both HTTP and WebSocket.
- π CLI Safe Mode:
stop_on_x_confirmoption to prevent browser actions in headless/CLI environments. - βΈοΈ Session Pause: New
send_pause()for pausing active sessions.
π§ Improvements
- π¦ TaskRunner Refactor: Extracted
TaskRunner,TaskExecutionOptions,TaskResult, andTaskModeout ofwebsocket.pyinto dedicatedtask_runner.py(~500 lines reduction in websocket module). - π Cleaner CLI Output: Debug logs moved from
INFOtoDEBUGlevel; verbose output uses consistent[plan]/[text]/[task_result]prefixes; JSON completion messages parsed to show human-readable reason. - π Session Protocol Alignment:
CreateSessionRequestsimplified (removedteam_id, addedmode/platform/extra);SessionInfofields made lenient with sensible defaults. - π Factory Function:
create_task_runner()exposed at package level for clean initialization.
π Bug Fixes
- Fixed
auto_accept_plannot working inrun_interactive_session - Fixed session not stopping after receiving final answer
- Fixed screenshot printing to omit large base64 data
π₯ Breaking Changes
CreateSessionRequestno longer requiresteam_id- Session status constants renamed:
SESSION_STATUS_RUNNINGβSESSION_STATUS_ACTIVE - Plan status
SKIPPEDrenamed toSKIP
π¦ See: wyseos-sdk 0.3.0 on PyPI
π Release 0.2.1 (2025-09-11)
β¨ Major Features
- π― New: TaskRunner Interface: Simplified task execution interface that reduces complex WebSocket operations from 400+ lines to 10-20 lines of clean code.
run_task()- Automated execution with comprehensive resultsrun_interactive_session()- Interactive mode with user input support
- βοΈ New: TaskExecutionOptions: Advanced configuration system with intelligent defaults including performance-optimized screenshot capture (
capture_screenshots=Falseby default). - π New: Enhanced Result Tracking: Complete
TaskResultmodel with execution duration, message counts, plan history, and structured error reporting.
π§ Improvements
- π¦ Refactored Message Handling: Modular message processing with dedicated handlers for text, plan, rich media, and input messages.
- π Enhanced Documentation: Complete rewrite of quickstart guide and README with modern examples and clear API documentation.
- β‘ Performance Optimizations: Default settings optimized for speed with conditional data collection and reduced memory usage.
- π‘οΈ Improved Error Handling: Enhanced exception management with detailed error context and graceful resource cleanup.
π Bug Fixes
- π§΅ Enhanced Thread Safety: Improved thread-safe completion event handling for concurrent operations.
- π Connection Management: Better WebSocket connection lifecycle management with proper cleanup.
π¦ See: wyseos-sdk 0.2.1 on PyPI
π¦ Release 0.2.0 (2025-08-25)
π₯ Breaking Changes
- π·οΈ Project Renamed: The SDK has been renamed from
wyse-mate-sdktowyseos-sdk. All module imports must be updated fromwyse_matetowyseos.mate.- Before:
from wyse_mate import Client - After:
from wyseos.mate import Client
- Before:
π§ Improvements
- ποΈ Project Restructuring: Aligned project with the
WyseOSand established a new, extensible namespacewyseosfor future tools. - βοΈ Simplified Configuration: Removed
user_agent,debug, andhttp_clientfrom the configuration options for a cleaner setup. - π Added Examples: Introduced a new
examplesdirectory with agetting_startedguide to improve user onboarding.
π Bug Fixes
- π« Fixed
ImportError: Resolved anImportErrorforDEFAULT_USER_AGENTthat occurred after simplifying the configuration. - β
Fixed
ValidationError: Addressed aValidationErrorby making theintent_idfield in theSessionInfomodel optional to handle missing fields in the API response.
π¦ See: wyseos-sdk 0.2.0 on PyPI
π¦ Release 0.1.2 (2025-08-08)
π§ Improvements
- π New: Plan messages with overall status tracking
- π New: Expanded WebSocket interactions and stability
- π Improvement: Clearer usage in examples
π¦ See: wyse-mate-sdk 0.1.2
π Commits
- 6d52b80 β release version 0.1.2
- dda05b0 β add plan overall status
- bcec77d β add message type Plan
- 09c20ad β update example
- 77fe5b3 β update example
- fb6fef6 β support more websocket interactions
π₯ Come Hang Out
- π Found a bug? Open an issue on Github