Metadata-Version: 2.4
Name: victor-coding
Version: 0.5.6
Summary: Coding vertical for Victor AI - Software development, debugging, and code generation
Author-email: Vijaykumar Singh <singhvjd@gmail.com>
Maintainer-email: Vijaykumar Singh <singhvjd@gmail.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/vjsingh1984/victor-coding
Project-URL: Repository, https://github.com/vjsingh1984/victor-coding
Project-URL: Documentation, https://docs.victor.dev/verticals/coding
Project-URL: Issues, https://github.com/vjsingh1984/victor-coding/issues
Keywords: victor,vertical,coding,development,debugging,refactoring
Classifier: Development Status :: 4 - Beta
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
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: victor-ai>=0.5.6
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
Requires-Dist: pytest-cov>=4.1; extra == "dev"
Requires-Dist: black==26.1.0; extra == "dev"
Requires-Dist: ruff>=0.5; extra == "dev"
Requires-Dist: mypy>=1.10; extra == "dev"
Dynamic: license-file

# victor-coding

**Coding vertical for Victor AI - Software development, debugging, and code generation**

## Features

🚀 **Software Development**
Code generation, refactoring, and optimization
Multi-language support (Python, JS, TypeScript, Go, Rust, C++, Java)

🔍 **Code Analysis**
Code review and quality checks
Coverage analysis and visualization

Symbol resolution and code navigation
🧪 **Testing**
Automated test generation

TDD workflow support
Test coverage analysis


## Installation

```bash
# Install with Victor core
pip install victor-ai

# Install coding vertical
pip install victor-coding
```

## Quick Start

```python
from victor.framework import Agent

# Create agent with coding vertical
agent = await Agent.create(
    provider="anthropic",
    model="claude-3-opus-20240229",
    vertical="coding"
)
```

## Available Tools

Once installed, the coding vertical provides these tools:

- **edit_files** - Edit multiple files at once
- **code_search** - Semantic code search
- **grep** - Search codebase with patterns
- **test_runner** - Execute tests
- **coverage_analyzer** - Analyze test coverage

## License

Apache License 2.0 - see [LICENSE](LICENSE) for details.

## Links

- **Victor AI**: https://github.com/vijay-singh/codingagent
- **Documentation**: https://docs.victor.dev/verticals/coding
- **Victor Registry**: https://github.com/vjsingh1984/victor-registry
