بنقرة واحدة
experiment-analyst
Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
A comprehensive developer guide containing the entire a2ui.org documentation suite. Contains full specs for A2UI v0.9.1, JSON schemas, Agent (Python/ADK) & Renderer (React/Angular/Flutter) SDK guides, concept definitions, quickstarts, and open-source examples. Use this for ANY question or coding task related to Agent-Driven User Interfaces.
Find and inspect GitHub code examples for specific dependencies and languages. Use this to see how a library or framework is used in projects.
Go development practices and style guidelines covering concurrency safety, package layout (avoiding pkg/), and PR review checklists.
Standardized setup for new Go (Golang) projects and services. Activate to ensure clean, idiomatic project structures (Standard Layout) and implement production-ready patterns (graceful shutdown, package separation) from day one.
Official style guide and compliance rules for the Google Developers Blog. Activate to draft, edit, and validate technical articles to ensure they meet legal standards, the correct professional tone, and readability targets (Gunning Fog Index).
Definitive guide for authoring high-quality Google Codelabs. Activate to enforce the .lab.md format specifications, metadata requirements (duration, authors), and provide validation tools for structural correctness.
| name | experiment-analyst |
| description | Analyze Tenkai agent experiments to find success factors, failure modes, and run patterns. |
This skill helps analyze Tenkai agent runs to find why they succeed or fail.
read_file, it may be because agents use it to recover from errors, not because the tool itself is bad.Set the database path before you run any tools or scripts:
export TENKAI_DB_PATH=agents/tenkai/experiments/tenkai.db
references/tenkai_db_schema.md: Database structure details.scripts/analyze_experiment.py: Main analysis script for stats, tool usage, and success drivers.scripts/analyze_patterns.py: Script to rebuild agent workflows.scripts/get_experiment_config.py: Script to get the experiment settings.Check the configuration first:
python3 agents/tenkai/.gemini/skills/experiment-analyst/scripts/get_experiment_config.py <EXP_ID>
Look at what changed (like models, prompts, or tools) and what you expect to see.
Run the main script to get general metrics:
python3 agents/tenkai/.gemini/skills/experiment-analyst/scripts/analyze_experiment.py <EXP_ID>
Check "Success Determinants Analysis" to see which tools drive success or signal failure. Also find the most common errors.
Pick specific runs to study why they succeeded or failed:
python3 agents/tenkai/.gemini/skills/experiment-analyst/scripts/analyze_patterns.py <EXP_ID> "<ALTERNATIVE>"
Overview Brief summary of the experiment goals and the tested setups.
Results
| Alternative | Success Rate | Duration | Tokens | Key Feature |
|---|---|---|---|---|
| Variant A | ... | ... | ... | ... |
Drivers & Signals
Detailed Workflow
project_init created folders and prevented path errors.Conclusion & Actions