Metadata-Version: 2.5
Name: create-promptex-py
Version: 0.0.1a1
Summary: promptex 專案鷹架的最小原型（alpha）：產出可立即建置的專案骨架
Project-URL: Homepage, https://github.com/promptex-ai/promptex
Project-URL: Repository, https://github.com/promptex-ai/promptex
Project-URL: Issues, https://github.com/promptex-ai/promptex/issues
Author: promptex-ai
License: MIT OR Apache-2.0
License-File: LICENSE-APACHE
License-File: LICENSE-MIT
Keywords: agent,ai,claude,llm,prompt,prompt-engineering,scaffold,skills
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Code Generators
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# create-promptex-py（alpha 原型）

promptex 專案鷹架的**最小原型**。產出一個可立即建置的專案骨架：宣告一份
skill，建置後得到 Claude Code 的 `SKILL.md`。

## 這不是什麼

本套件是早期 alpha。骨架只有四個檔案、一份範例宣告，沒有多單元配置、沒有
多平台選擇、沒有外掛與轉接器。正式版把骨架收在核心（`promptex init`），
本原型自帶一份副本，正式版發布時會被整份取代。

介面與骨架內容在正式版之前都會變，不保證任何相容性。

## 用法

不需要事先安裝，`uvx`（或 `pipx run`）會取得後直接執行。需要 Python 3.10 以上。

```bash
uvx create-promptex-py my-prompts
```

產出：

```text
my-prompts/
├── .gitignore
├── README.md
├── package.json
└── prompts/skill.ts
```

（上為 `--lang ts` 的形態；`--lang python` 產出 `pyproject.toml` 與
`prompts/skill.py`，`--lang rust` 產出 `Cargo.toml` 與 `src/main.rs`。）

### 選項

```text
uvx create-promptex-py <目錄> [--lang ts|python|rust] [--yes]

  --lang <語言>  骨架語言，預設 ts
  --yes          目標目錄已有同名檔案時仍覆寫
```

非互動：全部輸入取自位置參數與旗標，與正式版 `promptex init` 的介面一致。
目標目錄已有同名檔案且未帶 `--yes` 時**一個檔案都不寫**，不留半套骨架。

## 三生態等價

`create-promptex-js`、`create-promptex-py`、`create-promptex-rs` 對同一組
參數產出逐字相同的檔案樹。正式版靠骨架住核心由結構保證，本原型是三份獨立
實作，等價由產物比對承擔。

## 授權

MIT OR Apache-2.0，見 `LICENSE-MIT` 與 `LICENSE-APACHE`。
