Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
A comprehensive collection of Agent Skills for context engineering, multi-agent architectures, and production agent systems.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
examples/interleaved-thinking/pyproject.toml
1[build-system]2requires = ["setuptools>=61.0", "wheel"]3build-backend = "setuptools.build_meta"45[project]6name = "reasoning-trace-optimizer"7version = "0.1.0"8description = "Debug and optimize AI agents by analyzing reasoning traces using MiniMax M2.1's interleaved thinking. Built in partnership with MiniMax AI."9readme = "README.md"10license = {text = "MIT"}11authors = [12{name = "Muratcan Koylan", email = "[email protected]"}13]14keywords = [15"ai-agents",16"reasoning-traces",17"prompt-optimization",18"minimax-m2",19"interleaved-thinking",20"agent-debugging",21"context-engineering"22]23classifiers = [24"Development Status :: 3 - Alpha",25"Intended Audience :: Developers",26"License :: OSI Approved :: MIT License",27"Programming Language :: Python :: 3",28"Programming Language :: Python :: 3.10",29"Programming Language :: Python :: 3.11",30"Programming Language :: Python :: 3.12",31"Topic :: Scientific/Engineering :: Artificial Intelligence",32]33requires-python = ">=3.10"34dependencies = [35"anthropic>=0.40.0",36"pydantic>=2.0.0",37"rich>=13.0.0",38"python-dotenv>=1.0.0",39]4041[project.optional-dependencies]42dev = [43"pytest>=8.0.0",44"pytest-asyncio>=0.23.0",45"ruff>=0.1.0",46]4748[project.scripts]49rto = "reasoning_trace_optimizer.cli:main"5051[project.urls]52Homepage = "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering"53Repository = "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering"54Documentation = "https://github.com/muratcankoylan/Agent-Skills-for-Context-Engineering/tree/main/examples/interleaved-thinking"5556[tool.setuptools.packages.find]57where = ["."]58include = ["reasoning_trace_optimizer*"]5960[tool.ruff]61line-length = 10062target-version = "py310"6364[tool.ruff.lint]65select = ["E", "F", "I", "N", "W"]66ignore = ["E501"]6768[tool.pytest.ini_options]69asyncio_mode = "auto"70testpaths = ["tests"]71