Metadata-Version: 2.4
Name: kosmos-cli
Version: 0.2.1
Summary: A powerful CLI tool for interacting with Kosmos knowledge base system
Home-page: https://github.com/IndenScale/Kosmos
Author: IndenScale
Author-email: hfu7565ytru@gmail.com
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Utilities
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.1
Requires-Dist: python-dotenv>=0.19.0
Provides-Extra: dev
Requires-Dist: pytest>=6.0; extra == "dev"
Requires-Dist: pytest-cov>=2.0; extra == "dev"
Requires-Dist: black>=21.0; extra == "dev"
Requires-Dist: isort>=5.0; extra == "dev"
Requires-Dist: flake8>=3.9; extra == "dev"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# Kosmos CLI

A powerful command-line interface for interacting with the Kosmos knowledge base system.

## Installation

```bash
pip install kosmos-cli
```

## Usage

After installation, you can use the `kosmos` command:

```bash
kosmos --help
```

### Available Commands

- `login` - Authenticate with the Kosmos server
- `search` - Search for documents and content
- `read` - Read document content
- `document` - Manage documents
- `asset` - Manage assets
- `job` - Manage background jobs
- `logs` - View system logs

## Configuration

Set environment variables for authentication:

```bash
export KOSMOS_USERNAME=your_username
export KOSMOS_PASSWORD=your_password
export KOSMOS_BASE_URL=https://your-kosmos-server.com
```

## Development

To install from source:

```bash
git clone https://github.com/IndenScale/Kosmos.git
cd Kosmos
pip install -e .
```

## License

MIT License
