Install any skill in seconds. Free to start, no credit card required.
Get Started Free →AutoGen (Microsoft) — multi-agent conversation framework. Agent-to-agent chat, code generation & execution, tool use, group chat, and human-in-the-loop. Build collaborative AI systems with specialized agents.
.claude/skills/mkurman-autogen/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-14 | ✗→✓ | ▲ Improved | 140% | 0% |
| case-02 | ✓→✓ | = Same ✓ | -47% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 11% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 12% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 3% | 0% |
AutoGen (Microsoft) enables multi-agent conversations where specialized LLM agents collaborate, write and execute code, use tools, and solve problems together. Supports group chat, human-in-the-loop, and flexible agent topologies.
bashuv pip install pyautogen
pythonimport autogen config_list = [{"model": "gpt-4", "api_key": "sk-your-key"}] assistant = autogen.AssistantAgent( name="coder", llm_config={"config_list": config_list}, ) user = autogen.UserProxyAgent( name="user", human_input_mode="NEVER", code_execution_config={"work_dir": "coding", "use_docker": False}, ) user.initiate_chat( assistant, message="Write a Python function to calculate Fibonacci numbers.", )
pythonfrom autogen import GroupChat, GroupChatManager groupchat = GroupChat(agents=[engineer, critic, executor], messages=[], max_round=10) manager = GroupChatManager(groupchat=groupchat, llm_config=llm_config)
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 14,222 | 10,627 | -25% | 1 | 1 | 0% | 1,871 | 1,591 | -15% | 0 | 0 | — |
case-02 | pass→pass | 5,574 | 1,667 | -70% | 1 | 1 | 0% | 862 | 461 | -47% | 0 | 0 | — |
case-03 | pass→pass | 9,546 | 8,308 | -13% | 1 | 1 | 0% | 1,717 | 1,904 | +11% | 0 | 0 | — |
case-04 | pass→pass | 8,694 | 8,751 | +1% | 1 | 1 | 0% | 1,429 | 1,602 | +12% | 0 | 0 | — |
case-05 | pass→pass | 5,644 | 3,061 | -46% | 1 | 1 | 0% | 782 | 809 | +3% | 0 | 0 | — |
case-06 | pass→pass | 5,535 | 4,078 | -26% | 1 | 1 | 0% | 824 | 827 | +0% | 0 | 0 | — |
case-07 | pass→pass | 4,828 | 5,492 | +14% | 1 | 1 | 0% | 800 | 1,232 | +54% | 0 | 0 | — |
case-08 | pass→pass | 7,055 | 4,144 | -41% | 1 | 1 | 0% | 1,344 | 1,004 | -25% | 0 | 0 | — |
case-09 | pass→pass | 10,035 | 4,334 | -57% | 1 | 1 | 0% | 1,832 | 1,164 | -36% | 0 | 0 | — |
case-10 | pass→pass | 7,474 | 13,895 | +86% | 1 | 1 | 0% | 1,427 | 1,765 | +24% | 0 | 0 | — |
case-11 | pass→pass | 7,500 | 4,507 | -40% | 1 | 1 | 0% | 1,381 | 1,076 | -22% | 0 | 0 | — |
case-12 | pass→pass | 7,430 | 3,419 | -54% | 1 | 1 | 0% | 1,327 | 843 | -36% | 0 | 0 | — |
case-13 | pass→pass | 4,968 | 2,142 | -57% | 1 | 1 | 0% | 694 | 630 | -9% | 0 | 0 | — |
case-14 | fail→pass | 2,135 | 2,461 | +15% | 1 | 1 | 0% | 277 | 664 | +140% | 0 | 0 | — |
case-15 | pass→pass | 3,176 | 2,083 | -34% | 1 | 1 | 0% | 384 | 621 | +62% | 0 | 0 | — |
case-16 | pass→pass | 3,768 | 1,931 | -49% | 1 | 1 | 0% | 566 | 550 | -3% | 0 | 0 | — |
case-17 | pass→pass | 3,316 | 1,952 | -41% | 1 | 1 | 0% | 539 | 597 | +11% | 0 | 0 | — |
case-18 | pass→pass | 2,911 | 1,697 | -42% | 1 | 1 | 0% | 413 | 554 | +34% | 0 | 0 | — |
case-19 | pass→pass | 14,363 | 12,084 | -16% | 1 | 1 | 0% | 2,181 | 1,862 | -15% | 0 | 0 | — |
case-20 | pass→pass | 14,057 | 10,365 | -26% | 1 | 1 | 0% | 2,636 | 2,338 | -11% | 0 | 0 | — |
case-21 | pass→pass | 9,074 | 6,611 | -27% | 1 | 1 | 0% | 1,638 | 1,516 | -7% | 0 | 0 | — |
case-22 | pass→pass | 16,413 | 9,444 | -42% | 1 | 1 | 0% | 3,090 | 2,188 | -29% | 0 | 0 | — |
case-23 | pass→pass | 14,837 | 10,173 | -31% | 1 | 1 | 0% | 2,575 | 2,226 | -14% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +4 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.