Metadata-Version: 2.4
Name: inye-adk
Version: 0.2.0
Summary: Inye Agentic Development Kit - Intent clarification command for Claude Code
Project-URL: Homepage, https://github.com/iyeaaa/inye-adk
Project-URL: Repository, https://github.com/iyeaaa/inye-adk
Project-URL: Issues, https://github.com/iyeaaa/inye-adk/issues
Author: iyeaaa
License-Expression: MIT
License-File: LICENSE
Keywords: adk,agent,ai,claude,claude-code,intent
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
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 :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: click>=8.0.0
Requires-Dist: rich>=13.0.0
Description-Content-Type: text/markdown

# Inye-ADK

**Inye Agentic Development Kit** - Intent clarification command for Claude Code.

## What is this?

Inye-ADK provides the `/inye:intent` command for Claude Code that forces exhaustive questioning until user intent converges to a single unambiguous requirement.

**The problem:** AI typically picks the most probable interpretation and runs with it.

**The solution:** `/inye:intent` makes AI ask questions until there's only ONE possible interpretation.

## Installation

```bash
# Using pipx (recommended)
pipx install inye-adk

# Using uv
uv tool install inye-adk

# Using pip
pip install inye-adk
```

## Usage

### Initialize in your project

```bash
cd your-project
inye init
```

This installs the `/inye:intent` command to `.claude/commands/inye/`.

### Use in Claude Code

```
/inye:intent Add order cancellation feature
```

Claude will then ask high-level questions until your intent is 100% clear:

1. "What's the main reason users need to cancel orders?"
2. "Can all orders be cancelled, or only before shipping?"
3. "What happens to payment when cancelled?"
4. ...continues until clear...

Then presents a summary for your confirmation:

```
Based on our discussion:

**Purpose:**
Allow users to self-cancel orders before shipping...

**Scope:**
- Included: Full order cancellation, auto-refund
- Excluded: Partial cancellation

**Success Criteria:**
- User can cancel from order detail page
- Refund is automatically initiated

Is this correct?
```

## MoAI Compatibility

Inye-ADK is compatible with [MoAI-ADK](https://github.com/modu-ai/moai-adk). When `.moai/project/` files exist:

- `product.md` - Product definition
- `structure.md` - Project structure
- `tech.md` - Tech stack

The `/inye:intent` command reads these files to ask more contextual questions.

## Commands

| Command | Description |
|---------|-------------|
| `inye init` | Install /inye:intent command in current project |
| `inye status` | Check if /inye:intent command is installed |

## License

MIT
