juglans 0.2.16

Compiler and runtime for Juglans Workflow Language
# Contributing to Juglans

Thank you for your interest in contributing to Juglans!

## Development Setup

### Prerequisites

- [Rust]https://rustup.rs/ (1.80+)
- Git

### Build & Test

```bash
git clone https://github.com/juglans-ai/juglans.git
cd juglans
cargo build
cargo test
```

### Code Style

```bash
cargo fmt          # Format code
cargo clippy       # Lint
```

All PRs must pass `cargo fmt --check` and `cargo clippy -- -D warnings`.

## Pull Request Process

1. Fork the repo and create a branch from `main`
2. Make your changes with clear, focused commits
3. Add tests for new functionality
4. Ensure all tests pass: `cargo test`
5. Open a PR against `main`

### Commit Messages

Follow [Conventional Commits](https://www.conventionalcommits.org/):

```
feat: add new builtin tool for X
fix: resolve panic on CJK characters in TUI
docs: update workflow syntax guide
refactor: simplify expression evaluator
test: add parser edge case tests
```

## Project Structure

```
src/
├── core/       # Parser, executor, validator, expression evaluator, type checker
├── builtins/   # Built-in tools (ai, system, devtools, http, network, database, device)
├── services/   # Config, web server, local runtime, deploy
├── providers/  # LLM provider implementations (OpenAI, Anthropic, DeepSeek, ...)
├── registry/   # Package ecosystem
├── runtime/    # Python integration (worker pool + JSON-RPC)
├── adapters/   # Bot adapters (Telegram, Feishu, WeChat)
├── lsp/        # Language Server Protocol implementation
├── wasm/       # WASM engine bindings
├── workers/    # Subprocess workers (python_worker.py)
├── testing/    # test_* node discovery and execution
├── doctest.rs  # Markdown doctest runner
├── runner.rs   # Shared run entry point used by several subcommands
└── ui/         # Terminal REPL & TUI
```

## Reporting Issues

Use [GitHub Issues](https://github.com/juglans-ai/juglans/issues) with the provided templates.

## License

By contributing, you agree that your contributions will be licensed under the MIT License.