agentic-workflow
Unified AI Development Workflow - Fusion of 10+ World-Class Skills
github
skill
developer-tools
planning-with-files
superpowers
tdd
python
⭐ 2⬇️ 0🏷️ main📦 2
agentic-workflow-main.zip
508.0 KB下载
安装与使用说明
Codex
- 先下载 ZIP 包(例如:agentic-workflow-main.zip)。
- 解压后放到 $CODEX_HOME/skills/ 目录下。
- 如果没有设置 $CODEX_HOME,通常可放到 ~/.codex/skills/。
- 确保目录内有 SKILL.md,然后重开会话即可使用。
源码目录预览
├── .github │ ├── ISSUE_TEMPLATE │ │ ├── bug.md │ │ └── feature.md │ └── workflows │ ├── publish.yml │ └── test.yml ├── .self-improvement │ ├── README.md │ ├── baseline_check.sh │ ├── record_result.sh │ ├── results.tsv │ ├── self_improve.sh │ └── zones.md ├── agents │ ├── README.md │ ├── backend_architect.md │ ├── coder.md │ ├── database_optimizer.md │ ├── debugger.md │ ├── devops_automator.md │ ├── frontend_developer.md │ ├── performance_expert.md │ ├── planner.md │ ├── researcher.md │ ├── reviewer.md │ ├── security_expert.md │ └── technical_writer.md ├── docs │ ├── history │ │ └── v5-history.md │ ├── roadmap │ │ ├── acceptance-matrix.md │ │ ├── experimental-modules.md │ │ └── roadmap.md │ ├── EXPERIMENTAL_GRADUATION.md │ ├── STATE_ARCHITECTURE.md │ ├── agent_teams_integration_design.md │ ├── alignment_plan.md │ ├── ecc_subagents_integration_design.md │ ├── execution_loop_multiagent_plan.md │ └── self_improvement_program.md ├── references │ ├── _deprecated_v4 │ │ ├── daily_memory.md │ │ ├── debugging.md │ │ ├── executing.md │ │ ├── reviewing.md │ │ ├── session_state.md │ │ ├── spawn_subagents.md │ │ └── thinking.md │ ├── builtin_e2e.md │ ├── builtin_tdd.md │ ├── ecc_integration.md │ ├── memory_architecture.md │ ├── memory_integration.md │ ├── novel_generation_workflow.md │ └── quick_ref.md ├── scripts │ ├── experimental │ │ ├── agent_spawner.py │ │ ├── context_manager.py │ │ ├── evaluator.py │ │ ├── execution_loop.py │ │ ├── parallel_executor.py │ │ └── semantic_router.py │ ├── templates │ │ ├── plan_template.md │ │ ├── spec_template.md │ │ └── tasks_template.md │ ├── tools │ │ ├── win │ │ │ ├── README.md │ │ │ ├── check_env.bat │ │ │ ├── check_template.bat │ │ │ ├── create_plan.bat │ │ │ ├── init_session.bat │ │ │ └── quick_review.bat │ │ ├── auto_commit.sh │ │ ├── check_env.sh │ │ ├── check_template.sh │ │ ├── create_plan.sh │ │ ├── init_session.sh │ │ ├── quick_review.sh │ │ ├── quick_tdd.sh │ │ └── watch_progress.sh │ ├── utils │ │ ├── binary_tree.py │ │ ├── lru_cache.py │ │ ├── lru_cache_direct.py │ │ └── string_utils.py │ ├── README.md │ ├── analyze_gate.py │ ├── contract_manager.py │ ├── experience_store.py │ ├── memory_daily.py │ ├── memory_longterm.py │ ├── memory_ops.py │ ├── pattern_detector.py │ ├── quality_gate.py │ ├── reward_calculator.py │ ├── router.py │ ├── run_tracker.py │ ├── safe_io.py │ ├── search_adapter.py │ ├── skill_loader.py │ ├── state_schema.py │ ├── step_recorder.py │ ├── subagent_runner.py │ ├── task_decomposer.py │ ├── task_tracker.py │ ├── team_agent.py │ ├── trajectory_logger.py │ ├── unified_state.py │ ├── wal_scanner.py │ ├── workflow_engine.py │ └── worktree_manager.py ├── skills │ ├── _shared │ │ ├── ask-user-question.md │ │ ├── boil-the-lake.md │ │ ├── browser-daemon.md │ │ ├── cache.md │ │ ├── contributor-mode.md │ │ ├── parallel-execution.md │ │ ├── preamble.md │ │ └── telemetry.md │ ├── baidu-search │ │ └── skill.md │ ├── complete │ │ └── skill.md │ ├── debugging │ │ └── skill.md │ ├── executing │ │ └── skill.md │ ├── exploring │ │ └── skill.md │ ├── gstack │ │ ├── commands │ │ │ ├── qa.md │ │ │ ├── retro.md │ │ │ └── ship.md │ │ └── SKILL.md │ ├── office-hours │ │ └── skill.md │ ├── planning │ │ └── skill.md │ ├── refining │ │ └── skill.md │ ├── research │ │ └── skill.md │ ├── reviewing │ │ └── skill.md │ ├── router │ │ └── skill.md │ └── thinking │ └── skill.md ├── src │ ├── palindrome_with_skill.py │ ├── palindrome_without_skill.py │ └── string_reverse.py ├── tests │ ├── bench_todo │ │ ├── COMPLETE_REPORT.md │ │ ├── test_todo.py │ │ ├── test_todo_tdd.py │ │ ├── todo.py │ │ └── todo_v1_direct.py │ ├── evals │ │ ├── evals.json │ │ ├── evals_100.json │ │ ├── evals_ecc_50.json │ │ └── evals_modules_60.json │ ├── ECC_TEST_DESIGN.md │ ├── MODULES_TEST_DESIGN.md │ ├── SUBAGENT_TEST_DESIGN.md │ ├── TEST_ANALYSIS.md │ ├── TEST_REPORT.md │ ├── bench_lru_cache_analysis.md │ ├── bench_result_only_analysis.md │ ├── bench_string_permutation.py │ ├── bench_thinking_fp_analysis.md │ ├── ecc_test_results.json │ ├── evaluator.py │ ├── modules_test_results.json │ ├── quality_results.json │ ├── router_helpers.py │ ├── run_benchmark_test.py │ ├── run_ecc_test.py │ ├── run_full_test.py │ ├── run_modules_test.py │ ├── run_multi_dim_test.py │ ├── run_phase_test.py │ ├── run_quality_comparison.py │ ├── run_quality_full.py │ ├── run_quality_test.py │ ├── run_real_test.py │ ├── run_subagent_test.py │ ├── run_test.py │ ├── test_analyze_gate.py │ ├── test_artifact_registry.py │ ├── test_binary_tree.py │ ├── test_e2e_business.py │ ├── test_evaluation.py │ ├── test_failure_handling.py │ ├── test_frontier_scheduler.py │ ├── test_lru_cache.py │ ├── test_memory_longterm.py │ ├── test_memory_ops.py │ ├── test_palindrome_with_skill.py │ ├── test_palindrome_without_skill.py │ ├── test_quality_gate.py │ ├── test_result_only_spawning.py │ ├── test_self_improvement_harness.py │ ├── test_string_utils.py │ ├── test_task_decomposer.py │ ├── test_task_tracker.py │ ├── test_trajectory.py │ ├── test_wal_scanner.py │ ├── test_workflow_chain.py │ └── test_workflow_engine.py ├── .DS_Store ├── .gitignore ├── .pre-commit-config.yaml ├── AGENTS.md ├── CLAUDE.md ├── CONTRIBUTING.md ├── CONTRIBUTING.zh-CN.md ├── LICENSE ├── README.md ├── README_CN.md ├── SKILL.md ├── agentic-workflow.lock ├── mypy.ini ├── pyproject.toml ├── pytest.ini ├── refining_report.md └── review_report.md
元数据
Slug: agentic-workflow
作者: mightyoung
协议: NOASSERTION
包大小: 436.3 KB
SHA256: 23077d92615931c75c95de2750392adaa945cec3843dcb457be04ac78b31ef5e