AIAny
AI Agent2025
Icon for item

XianyuAutoAgent

Provides 7×24 automated customer service for the Xianyu marketplace with multi-expert routing, context-aware dialogue, and a laddered bargaining system. Built in Python and designed to run against an LLM provider with browser-cookie integration for web interactions.

Introduction

Most marketplace customer-service failures come from slow replies and one-size-fits-all bots that can’t negotiate price or route complex queries. XianyuAutoAgent addresses that gap by combining prompt-engineered intent classification, specialist "expert" agents, and a tiered discounting (ladder) bargaining strategy so automations can handle both routine Q&A and nuanced price negotiation.

What Sets It Apart
  • Multi-expert routing: intent classification + prompt-based rules dispatch queries to specialized agents (price/tech/default), so responses stay context-appropriate rather than generic. This reduces mismatched replies when conversation intent shifts.
  • Context-aware memory: keeps recent conversation history as LLM context, enabling follow-up questions and continuity across turns without an external vector DB by default.
  • Laddered bargaining system: implements staged price-reduction logic (阶梯降价策略) so automated negotiations follow configurable policies instead of single-step offers.
  • Practical web integration: operates by driving web requests with a user-provided COOKIES_STR and an LLM API key, trading off tight integration for simplicity—no proprietary marketplace SDK required.
Who It's For and Trade-offs

Great fit if you maintain listings on Xianyu (or similar web marketplaces) and need around-the-clock automated replies plus basic automated negotiation rules. It's also useful for teams who want a Python-based, prompt-driven architecture they can extend with custom expert prompts.

Look elsewhere if you need a production-grade, fully auditable deployment out of the box (the repo is opinionated about cookie-based web access and assumes you will integrate with your own hosting/monitoring). Also avoid it if you require built-in RAG with a managed vector DB—RAG and advanced analytics are listed as planned features, not shipped defaults.

Where It Fits

Positioned between lightweight chat wrappers and full conversational commerce platforms: easier to extend than closed SaaS, but expects engineering effort to harden for scale and compliance (cookie handling, data retention, and model choice). With ~7k stars (as of repo metadata), it’s a widely noticed community project for marketplace automation and a good starting point for teams prototyping agent-driven e-commerce automation.

Information

  • Websitegithub.com
  • Authorsshaxiu, cv-cat (contributor)
  • Published date2025/03/14

Categories

More Items

Turns fragile, implicit search progress into explicit, persistent, shared state for multi-agent information seeking — externalizes progress as Frontier Task, Evidence Graph, Coverage Map and Failure Memory, and uses pipeline-parallel scheduling plus a middleware harness to avoid repeated failed searches and improve utilization and throughput.

GitHub
AI Agent2026

Provides a lightweight Python harness that turns LLMs into working agents with tool-use, skills, persistent memory, permission controls and multi-agent coordination. Ships with a CLI/React TUI, 43+ built-in tools, a plugin/skill system and the ohmo personal-agent for chat gateways. Best for developers prototyping agent workflows and multi-agent experiments.

GitHub
AI Client2025

Turns Chromium into a local-first AI browser with an embedded assistant that can summarise pages, extract structured data, automate web tasks, and run scheduled agents. Built as an open-source Chromium fork with 53+ built-in browser tools, 40+ app integrations, and support for BYO AI keys or fully local models (Ollama / LM Studio).