platform_react_runner

Run React Agent prompt tests on external platforms with LangGraph and MCP tooling.

6|Updated Mar 5, 2026
One-click install
npx skills add https://github.com/slowman2084/meta-agent --skill platform-react-runner
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: platform_react_runner
Source: https://github.com/slowman2084/meta-agent/tree/main/source/agents/cls-log-agent/skills/platform_react_runner
Command: npx skills add https://github.com/slowman2084/meta-agent --skill platform-react-runner

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires langchain-core, langchain-openai, langgraph, mcp, pyyaml, pydantic, typing-extensions, and includes scripts (resource) components.

What problem does it solve?

基于 LangGraph 的平台级 ReAct 智能体运行时,用于通过外部平台(而非 IDE Sub Agent)执行 Agent 提示词测试。所有代码自包含,零项目内部依赖。

Core Features & Use Cases

  • 独立自包含的 ReAct 运行时,支持在外部平台执行测试,避免对 IDE 的依赖。
  • 占位符机制:配置文件中使用 {{AgentName}},在运行前由编排器自动替换为 source/AgentName/prompt.md 的内容。
  • 对比 IDE Sub Agent 测试,支持更接近生产环境的模型与工具组合,便于上线前评测。
  • 应用场景包括在线生产环境测试、与 #test_agent 与 #evalooper 流程集成,以及作为 IDE Sub Agent 的替代执行方式。

Quick Start

将配置 YAML 填写完毕并运行示例脚本,即可在外部平台上对代理提示词进行测试。

Frequently Asked Questions about platform_react_runner

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I test React Agent prompts in a production-like environment outside of an IDE?

To test React Agent prompts outside an IDE, you use a self-contained LangGraph runner that executes tests on external platforms using configurable LLM and MCP settings. This approach validates prompts in environments closer to production before deployment.

How does the {{AgentName}} placeholder mechanism work in LangGraph prompt configuration?

The {{AgentName}} placeholder mechanism works by automatically replacing the tag in a configuration YAML with the contents of a corresponding prompt.md file before execution. This allows dynamic prompt injection without hardcoding agent logic directly into the config.

Can I use MCP tooling and LangGraph to run offline React Agent tests?

Yes, you can use MCP tooling and LangGraph to run offline React Agent tests. The runner supports offline operation with zero internal project dependencies, requiring only external libraries like langchain-core and pydantic to function.

What is the best way to validate agent prompts across different LLM models?

The best way to validate agent prompts across different LLM models is by using a platform runner with configurable LLM settings. This allows you to execute the same LangGraph ReAct agent against multiple models to compare behavior in production-like environments.

Does the external platform React runner require internal project dependencies?

No, the external platform React runner does not require internal project dependencies. It is fully self-contained, relying only on standard external packages like langgraph, mcp, and pyyaml to execute the prompt testing scripts.

When should I choose an external platform runner over IDE Sub Agent for prompt testing?

You should choose an external platform runner over an IDE Sub Agent when you need to test prompts using specific MCP tooling and LLM combinations that closely mimic your production environment, which IDE sub agents often cannot fully replicate.