Metadata-Version: 2.4
Name: opencontext-refactory-hackathon
Version: 0.1.0
Summary: CLI tool for architectural context tracking and agent task generation
Author-email: Fadhil R <fadhilr2@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/fadhilr2/opencontext
Project-URL: Repository, https://github.com/fadhilr2/opencontext
Project-URL: Bug Tracker, https://github.com/fadhilr2/opencontext/issues
Keywords: cli,architecture,context,agent,jira,sdlc
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Console
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.9.0
Requires-Dist: questionary>=2.0.0
Requires-Dist: requests>=2.28.0
Requires-Dist: lancedb>=0.4.0
Requires-Dist: sentence-transformers>=2.2.0

# OpenContext

CLI tool for architectural context tracking and agent task generation.

## Installation

```bash
pip install -e .
```

## Usage

```bash
# First-time global setup (Jira credentials + git hook)
opencontext setup

# Initialize a project (Jira domain + spec extraction)
opencontext init

# Initialize branch context (vectorize + generate agent task)
opencontext initbranch

# Sync diff analysis and regenerate agent task
opencontext sync
```

## Development

```bash
# Install in editable mode
pip install -e .

# Run directly
python -m opencontext.cli.main
```
