Skip to main content

WYN360 - An intelligent AI coding assistant CLI tool powered by Anthropic Claude

Project description

WYN360 CLI

An intelligent AI coding assistant CLI tool powered by Anthropic Claude.

PyPI version Python 3.10+ License

๐ŸŽฏ Overview

WYN360 CLI is an AI-powered coding assistant that helps you build projects, generate code, and improve your codebase through natural language conversations. Built with pydantic-ai and Anthropic Claude, it provides intelligent file operations, command execution, and context-aware assistance.

๐Ÿ—๏ธ System Architecture

For a detailed architecture overview including all components, layers, and data flows, see SYSTEM.md.

๐Ÿ“ฆ Installation

pip install wyn360-cli

๐Ÿš€ Quick Start

1. Set up your Anthropic API key (choose one method):

Option 1: Environment variable

export ANTHROPIC_API_KEY=your_key_here

Option 2: .env file (recommended for local development)

# Create a .env file in your project directory
echo "ANTHROPIC_API_KEY=your_key_here" > .env

Option 3: Command-line argument

wyn360 --api-key your_key_here

2. Run the CLI:

wyn360

3. Start chatting:

You: Build a Streamlit app for data visualization

WYN360: I'll create a Streamlit app for you...
[Generates complete code and saves to app.py]

โœจ Features

Core Capabilities

  • ๐Ÿค– Interactive AI Assistant - Natural language conversations with Claude
  • ๐Ÿ“ Code Generation - Generate production-ready Python code from descriptions
  • ๐Ÿ” Project Analysis - Understand and improve existing codebases
  • ๐Ÿ“ Smart File Operations - Context-aware file creation and updates
  • โšก Command Execution - Run Python scripts, UV commands, shell scripts, any CLI tool
  • โŒจ๏ธ Multi-line Input - Press Enter to submit, Shift+Enter for newline
  • ๐Ÿ”’ Safety First - Confirmation prompts before executing commands

Intelligent Features (v0.2.x)

  • ๐Ÿง  Intent Recognition - Understands "update" vs "create new" from natural language
  • ๐Ÿ”„ Context-Aware Updates - Reads files before modifying them
  • ๐Ÿ” Self-Correcting - Smart retry mechanism with 3 attempts
  • โฑ๏ธ Timeout Protection - Prevents infinite loops (5 min default)
  • ๐Ÿ“Š Comprehensive Output - Captures stdout, stderr, and exit codes

Context Management (v0.2.8)

  • ๐Ÿ’ฌ Conversation History - Maintains context across multiple interactions
  • ๐Ÿ“Š Token Tracking - Real-time monitoring of API usage and costs
  • ๐Ÿ’พ Session Save/Load - Preserve conversations for later continuation
  • ๐ŸŽฏ Slash Commands - Quick access to history, stats, and session management

Model Selection & Optimization (v0.3.0)

  • ๐Ÿ”„ Dynamic Model Switching - Switch between Haiku, Sonnet, and Opus mid-session
  • ๐Ÿ’ฐ Cost Optimization - Choose the right model for your task complexity
  • ๐Ÿ“Š Model Information - View current model, pricing, and capabilities
  • โšก Flexible Performance - Balance between speed, capability, and cost

Configuration & Personalization (v0.3.1)

  • โš™๏ธ User Configuration - Personal preferences via ~/.wyn360/config.yaml
  • ๐Ÿ“ Project Configuration - Project-specific settings via .wyn360.yaml
  • ๐ŸŽฏ Custom Instructions - Add your coding standards to every conversation
  • ๐Ÿ—๏ธ Project Context - Help AI understand your tech stack automatically

Streaming Responses (v0.3.2)

  • โšก Real-Time Output - See responses as they're generated, token-by-token
  • ๐ŸŽฏ Immediate Feedback - Start reading while AI is still generating
  • ๐Ÿ“บ Progress Visibility - Watch code and explanations appear in real-time
  • ๐Ÿ’จ Faster Perceived Speed - Feels 2-3x faster with instant feedback

HuggingFace Integration (v0.3.3 - v0.3.13)

  • ๐Ÿค— HuggingFace Authentication - Auto-login with HF_TOKEN environment variable
  • ๐Ÿ“ README Generation - Create professional README files for Spaces
  • ๐Ÿš€ Space Creation - Create Streamlit/Gradio Spaces directly from CLI
  • ๐Ÿ“ค File Upload - Push your code to HuggingFace Spaces automatically
  • ๐ŸŽฏ One-Command Deploy - From code to live Space in seconds

Automatic Test Generation (v0.3.18)

  • ๐Ÿงช Test Generation - Automatically generate pytest tests for Python files
  • ๐Ÿ“Š Smart Analysis - Analyzes functions and classes to create comprehensive tests
  • โšก Quick Setup - Creates test files with proper structure and imports
  • ๐ŸŽฏ Code Coverage - Generates tests for edge cases and error handling

GitHub Integration (v0.3.22)

  • ๐Ÿ” GitHub Authentication - Auto-login with GH_TOKEN/GITHUB_TOKEN
  • ๐Ÿ’พ Commit & Push - Stage, commit, and push changes with one command
  • ๐Ÿ”€ Pull Requests - Create PRs with generated descriptions
  • ๐ŸŒฟ Branch Management - Create, checkout, and merge branches seamlessly
  • ๐Ÿ”„ Merge Operations - Smart branch merging with conflict detection

Web Search (v0.3.21, Enhanced v0.3.23)

  • ๐Ÿ” Real-Time Search - Access current information from the web
  • ๐ŸŒฆ๏ธ Weather Queries - Get current weather for any location
  • ๐Ÿ”— URL Reading - Fetch and summarize web page content
  • ๐Ÿ“š Resource Finding - Find GitHub repos, libraries, and tutorials
  • ๐Ÿ“Š Current Data - Latest package versions, documentation, and trends
  • ๐Ÿ’ฐ Cost Effective - Limited to 5 searches per session, $10 per 1K searches

๐ŸŽฎ Usage Examples

Starting a New Project

You: Create a FastAPI app with authentication

WYN360:
- Generates main.py with FastAPI setup
- Creates auth middleware
- Adds example routes
- Provides setup instructions

Updating Existing Code

You: Add logging to my script.py

WYN360:
- Reads current script.py
- Adds logging configuration
- Updates functions with log statements
- Preserves existing functionality

Executing Commands

You: Run the analysis script

WYN360: [Generates the command to run]

======================================================================
โš ๏ธ  COMMAND EXECUTION CONFIRMATION
======================================================================
Command: python analysis.py
Directory: /current/working/directory
Permissions: Full user permissions
======================================================================

>>> WAITING FOR YOUR RESPONSE <<<

Execute this command? (y/N): y

โœ… Command executed successfully
[Shows output]

Note: When you see the confirmation prompt, the "thinking" spinner may still appear in the background. This is normal - just type y and press Enter to proceed, or N to cancel.

Web Search & Resource Finding

You: Find a popular GitHub repo for machine learning

WYN360: [Searches the web]

Here are some popular GitHub repositories for machine learning:

1. **tensorflow/tensorflow** โญ 185k stars
   https://github.com/tensorflow/tensorflow
   - End-to-end machine learning platform
   - Used by Google and industry leaders

2. **pytorch/pytorch** โญ 82k stars
   https://github.com/pytorch/pytorch
   - Deep learning framework by Meta
   - Popular in research and production

3. **scikit-learn/scikit-learn** โญ 59k stars
   https://github.com/scikit-learn/scikit-learn
   - Classic ML algorithms for Python
   - Great for beginners and experts

[Sources: GitHub search results, updated recently]
You: What's the weather in San Francisco?

WYN360: [Searches for current weather]

Current weather in San Francisco:
๐ŸŒค๏ธ 62ยฐF (17ยฐC), Partly cloudy
๐Ÿ’จ Wind: 12 mph
๐Ÿ’ง Humidity: 65%
๐ŸŒ… Sunrise: 7:15 AM | Sunset: 5:02 PM

Source: [Weather service URL]

๐ŸŽฏ Commands

Chat Commands

Command Description
<message> Chat with the AI assistant
Enter Submit your message
Ctrl+Enter Add a new line (multi-line input)
exit or quit End the session

Slash Commands (v0.2.8+)

Slash commands provide quick access to context management and model selection features:

Command Description Example
/clear Clear conversation history and reset token counters /clear
/history Display conversation history in a table /history
/save <file> Save current session to JSON file /save my_session.json
/load <file> Load session from JSON file /load my_session.json
/tokens Show detailed token usage statistics and costs /tokens
/model [name] Show current model info or switch models (v0.3.0) /model haiku
/config Show current configuration (v0.3.1) /config
/help Display help message with all commands /help

Example Usage:

You: Write a data analysis script
WYN360: [Creates analysis.py]

You: /tokens
[Shows token usage: 1,500 input tokens, 800 output tokens, $0.02 cost]

You: /model
[Shows current model: Sonnet 4, pricing: $3.00/$15.00 per M tokens]

You: /model haiku
โœ“ Switched to Haiku (claude-3-5-haiku-20241022)

You: /save my_analysis_session.json
โœ“ Session saved to: my_analysis_session.json

You: /clear
โœ“ Conversation history cleared. Token counters reset.

You: /load my_analysis_session.json
โœ“ Session loaded from: my_analysis_session.json

๐Ÿ“š Documentation

For comprehensive documentation including:

  • Detailed use cases and examples
  • Tool descriptions and capabilities
  • UV workflow integration
  • Best practices and tips

See: USE_CASES.md

๐Ÿ› ๏ธ Development & Testing

Prerequisites

  • Python >= 3.10
  • Poetry (package manager)
  • Anthropic API key

Setting Up Development Environment

  1. Clone the repository:
git clone https://github.com/yiqiao-yin/wyn360-cli.git
cd wyn360-cli
  1. Install Poetry (if not already installed):
curl -sSL https://install.python-poetry.org | python3 -
  1. Install dependencies:
poetry install

This will:

  • Create a virtual environment
  • Install all production dependencies from pyproject.toml
  • Install development dependencies (pytest, pytest-asyncio, pytest-mock)
  • Install the package in editable mode

Running Tests

Run all tests with verbose output:

# Skip command confirmation prompts in tests
WYN360_SKIP_CONFIRM=1 poetry run pytest tests/ -v

Run tests with short traceback:

WYN360_SKIP_CONFIRM=1 poetry run pytest tests/ -v --tb=short

Run specific test file:

poetry run pytest tests/test_agent.py -v

Run specific test class:

poetry run pytest tests/test_utils.py::TestExecuteCommandSafe -v

Run with coverage report:

poetry run pytest tests/ --cov=wyn360_cli --cov-report=html

Test Structure

tests/
โ”œโ”€โ”€ __init__.py
โ”œโ”€โ”€ test_agent.py          # Agent and tool tests (46 tests)
โ”œโ”€โ”€ test_cli.py            # CLI and slash command tests (33 tests)
โ”œโ”€โ”€ test_config.py         # Configuration tests (25 tests)
โ””โ”€โ”€ test_utils.py          # Utility function tests (29 tests)
                           # Total: 133 tests

Expected Output

When all tests pass, you should see:

============================= test session starts ==============================
platform linux -- Python 3.10.12, pytest-8.4.2, pluggy-1.6.0
cachedir: .pytest_cache
rootdir: /home/workbench/wyn360-cli/wyn360-cli
configfile: pyproject.toml
plugins: asyncio-1.2.0, mock-3.15.1
collected 133 items

tests/test_agent.py::TestWYN360Agent::test_agent_initialization PASSED   [  1%]
tests/test_agent.py::TestHistoryManagement::test_clear_history PASSED    [ 18%]
tests/test_agent.py::TestStreaming::test_chat_stream_method_exists PASSED [ 40%]
tests/test_cli.py::TestSlashCommands::test_clear_command PASSED          [ 42%]
tests/test_config.py::TestWYN360Config::test_default_values PASSED       [ 60%]
...
tests/test_utils.py::TestExecuteCommandSafe::test_execute_python_script PASSED [100%]

============================== 133 passed in 2.64s

Building and Publishing

Build the package:

poetry build

This creates:

  • dist/wyn360_cli-X.Y.Z.tar.gz (source distribution)
  • dist/wyn360_cli-X.Y.Z-py3-none-any.whl (wheel)

Publish to PyPI:

poetry publish

Build and publish in one command:

poetry build && poetry publish

Version Management

Update version in these files:

  • pyproject.toml - version = "X.Y.Z"
  • wyn360_cli/__init__.py - __version__ = "X.Y.Z"
  • USE_CASES.md - Update changelog and version number

Development Workflow

  1. Create a feature branch:
git checkout -b feature/your-feature-name
  1. Make changes and test:
# Make your changes
WYN360_SKIP_CONFIRM=1 poetry run pytest tests/ -v
  1. Update version and documentation:
# Update version in pyproject.toml, __init__.py, USE_CASES.md
  1. Commit and push:
git add .
git commit -m "feat: your feature description"
git push origin feature/your-feature-name
  1. Build and publish:
poetry build && poetry publish
git push origin main

๐Ÿงช Environment Variables

Variable Description Default
ANTHROPIC_API_KEY Anthropic API key (required) None
HF_TOKEN or HUGGINGFACE_TOKEN HuggingFace API token (optional, for HF features) None
GH_TOKEN or GITHUB_TOKEN GitHub access token (optional, for GitHub features) None
WYN360_SKIP_CONFIRM Skip command execution confirmations 0 (disabled)

Setup Example:

# .env file
ANTHROPIC_API_KEY=your_anthropic_key
GH_TOKEN=ghp_your_github_token
HF_TOKEN=hf_your_huggingface_token
WYN360_SKIP_CONFIRM=0

Set WYN360_SKIP_CONFIRM=1 to skip confirmation prompts (useful for testing or automation).

๐Ÿ“‹ Requirements

  • Python >= 3.10, < 4.0
  • Dependencies (automatically installed):
    • click>=8.1.0 - CLI framework
    • pydantic-ai>=1.13.0 - AI agent framework with web search support
    • anthropic>=0.39.0 - Anthropic API client
    • rich>=13.0.0 - Terminal formatting
    • python-dotenv>=1.2.1 - Environment variable management
    • prompt-toolkit>=3.0.0 - Advanced input handling
    • pyyaml>=6.0.0 - Configuration file support
    • huggingface-hub>=0.20.0 - HuggingFace integration

๐Ÿค Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Run tests (WYN360_SKIP_CONFIRM=1 poetry run pytest tests/ -v)
  4. Commit your changes (git commit -m 'feat: add amazing feature')
  5. Push to the branch (git push origin feature/amazing-feature)
  6. Open a Pull Request

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐Ÿ‘ค Author

Yiqiao Yin

๐Ÿ™ Acknowledgments

๐Ÿ”— Links


Current Version: 0.3.23 Last Updated: December 10, 2025

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wyn360_cli-0.3.23.tar.gz (42.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wyn360_cli-0.3.23-py3-none-any.whl (40.3 kB view details)

Uploaded Python 3

File details

Details for the file wyn360_cli-0.3.23.tar.gz.

File metadata

  • Download URL: wyn360_cli-0.3.23.tar.gz
  • Upload date:
  • Size: 42.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.10.12 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for wyn360_cli-0.3.23.tar.gz
Algorithm Hash digest
SHA256 7efc103562b75b53a5cd5002e3b1fd891e4db49a0adc78d8a8cae6337b9f8777
MD5 61e663dca1688c498946143f33ad8261
BLAKE2b-256 4fe65c61344ab85c13b005ed7c552c01eaf3458f3c65cf9b2d7192983af346e2

See more details on using hashes here.

File details

Details for the file wyn360_cli-0.3.23-py3-none-any.whl.

File metadata

  • Download URL: wyn360_cli-0.3.23-py3-none-any.whl
  • Upload date:
  • Size: 40.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.10.12 Linux/6.6.87.2-microsoft-standard-WSL2

File hashes

Hashes for wyn360_cli-0.3.23-py3-none-any.whl
Algorithm Hash digest
SHA256 40c571866d9e8059facbca226daf1fe637822e68ba593a77fdd1811cf624f6a9
MD5 8fe13004d38b221cb3845aee99a9fed9
BLAKE2b-256 ca2de8d42309b7b5081bcf61daa87ab62a3f15f7141e3ba2b244ada2bd66b93c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page