Metadata-Version: 2.4
Name: craftpilot
Version: 0.0.1
Summary: CraftPilot Python SDK — Dson plugin framework and Houdini HAPI wrapper for AI-assisted content creation
Home-page: https://craftpilot.notion.site/
Author: GenesisGroup
Author-email: cheneyshen@tencent.com
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Games/Entertainment
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pillow
Requires-Dist: requests
Requires-Dist: pyyaml
Requires-Dist: importlib_resources
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# craftpilot

**craftpilot** is the Python SDK for the CraftPilot AI-assisted content creation platform.
It provides the core framework and toolsets for building Dson plugins and integrating with Houdini Engine.

## Modules

| Module | Description |
|---|---|
| `craftpilot.common` | General-purpose utility library: path handling, logging, file operations |
| `craftpilot.pyhapi` | Houdini Engine API (HAPI) Python wrapper: node management, geometry I/O, cook control |
| `craftpilot.pypapi` | Dson plugin framework: `DsonBase`, `DsonMeta`, `Dispatcher`, `DsonPool`, field types, CLI |
| `craftpilot.pypapi.mcp` | MCP tool development public API: `MCPToolBase`, `expose_as_mcp` |
| `craftpilot.pypapi.testing` | Testing framework for external Dson plugin developers |
| `craftpilot.pypapi.pantry` | Pre-built Dson configuration templates (`.yaml`) |

## Installation

```bash
pip install craftpilot
```

## Quick Start

```python
from craftpilot.pypapi.dson import DsonBase
from craftpilot.pypapi.dson_field import String, Float3

class MyPlugin(DsonBase):
    name = String(default="my_plugin")
    position = Float3(default=(0.0, 0.0, 0.0))
```

## Documentation

Full documentation is available at:
https://craftpilot.notion.site/
