axe-cli 1.7.6__py3-none-any.whl → 1.8.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,7 +59,7 @@ class Shell:
59
59
  else:
60
60
  self._start_background_task(self._auto_update())
61
61
 
62
- _print_welcome_info(self.soul.name or "Axe Code CLI", self._welcome_info)
62
+ _print_welcome_info(self.soul.name or "axe", self._welcome_info)
63
63
 
64
64
  if isinstance(self.soul, AxeSoul):
65
65
  await replay_recent_history(
@@ -70,7 +70,7 @@ class Shell:
70
70
  with CustomPromptSession(
71
71
  status_provider=lambda: self.soul.status,
72
72
  model_capabilities=self.soul.model_capabilities or set(),
73
- model_name=self.soul.model_name,
73
+ model_name=self.soul.model_display_name,
74
74
  thinking=self.soul.thinking or False,
75
75
  agent_mode_slash_commands=list(self._available_slash_commands.values()),
76
76
  shell_mode_slash_commands=shell_mode_registry.list_commands(),
axe_cli/ui/shell/slash.py CHANGED
@@ -173,7 +173,7 @@ async def model(app: Shell, args: str):
173
173
  model_cfg = config.models[name]
174
174
  provider_label = model_cfg.provider
175
175
  marker = " (current)" if name == curr_model_name else ""
176
- label = f"{model_cfg.model} ({provider_label}){marker}"
176
+ label = f"{model_cfg.alias or model_cfg.model} ({provider_label}){marker}"
177
177
  model_choices.append((name, label))
178
178
 
179
179
  try:
@@ -0,0 +1,470 @@
1
+ Metadata-Version: 2.3
2
+ Name: axe-cli
3
+ Version: 1.8.0
4
+ Summary: axe, yerrrr
5
+ Requires-Dist: agent-client-protocol==0.7.0
6
+ Requires-Dist: axe-dig
7
+ Requires-Dist: aiofiles>=24.0,<26.0
8
+ Requires-Dist: aiohttp==3.13.3
9
+ Requires-Dist: typer==0.21.1
10
+ Requires-Dist: kosong[contrib]==0.41.0
11
+ Requires-Dist: loguru>=0.6.0,<0.8
12
+ Requires-Dist: prompt-toolkit==3.0.52
13
+ Requires-Dist: pillow==12.1.0
14
+ Requires-Dist: pyyaml==6.0.3
15
+ Requires-Dist: rich==14.2.0
16
+ Requires-Dist: ripgrepy==2.2.0
17
+ Requires-Dist: streamingjson==0.0.5
18
+ Requires-Dist: trafilatura==2.0.0
19
+ Requires-Dist: lxml==6.0.2
20
+ Requires-Dist: tenacity==9.1.2
21
+ Requires-Dist: fastmcp==2.12.5
22
+ Requires-Dist: pydantic==2.12.5
23
+ Requires-Dist: httpx[socks]==0.28.1
24
+ Requires-Dist: pykaos==0.6.0
25
+ Requires-Dist: batrachian-toad==0.5.23 ; python_full_version >= '3.14'
26
+ Requires-Dist: tomlkit==0.14.0
27
+ Requires-Dist: jinja2==3.1.6
28
+ Requires-Dist: pyobjc-framework-cocoa>=12.1 ; sys_platform == 'darwin'
29
+ Requires-Dist: keyring>=25.7.0
30
+ Requires-Dist: tiktoken>=0.8.0
31
+ Requires-Python: >=3.13
32
+ Description-Content-Type: text/markdown
33
+
34
+ # axe
35
+
36
+ **The agent built for real codebases.**
37
+
38
+ While other coding tools like claude code burn tokens on bloat to charge you more, axe gives you surgical precision. Built for large-scale projects, battle-tested internally for 6 months, and powered by the world's most advanced code retrieval engine.
39
+
40
+ ---
41
+
42
+ ## What is axe?
43
+
44
+ axe is an agent that runs in your terminal, helping you ship production code faster. It reads and edits code, executes shell commands, searches the web, and autonomously plans multi-step workflows—all while using **95% fewer tokens** than tools that dump your entire codebase into context.
45
+
46
+ **Built for:**
47
+ - **Real engineers** working on production systems with 100K+ line codebases
48
+ - **Precision refactoring** where you need to understand call graphs before changing a function
49
+ - **Debugging** that requires tracing data flow, not just reading error messages
50
+ - **Architecture exploration** in unfamiliar codebases where grep won't cut it
51
+
52
+ Hit **Ctrl+X** to toggle between axe and your normal shell. No context switching. No juggling terminals.
53
+
54
+ ---
55
+
56
+ ## Why axe exists
57
+
58
+ **The problem:** Other tools dump your entire codebase into context, charging you for irrelevant noise. They're built for vibe coding—one-shot weekend projects where "good enough" is the goal.
59
+
60
+ **The reality:** Real engineering happens in 100K+ line codebases where precision matters. You need to understand execution flow, trace bugs through call graphs, and refactor without breaking half your tests. You can't afford to burn 200K tokens reading files that don't matter.
61
+
62
+ **The solution:** axe combines intelligent agents with **axe-dig**, our 5-layer code intelligence engine that extracts meaning instead of dumping text.
63
+
64
+ ### The axe-dig Advantage
65
+
66
+ **Stop burning context windows. Start shipping features.**
67
+
68
+ Your codebase is 100,000 lines. Claude can read ~200,000 tokens. Math says you're already in trouble.
69
+
70
+ | Approach | Tokens Used | What You Get |
71
+ |----------|-------------|--------------|
72
+ | Read raw files | 23,314 | Full code, zero context window left |
73
+ | Grep results | ~5,000 | File paths. No understanding. |
74
+ | **axe-dig** | **1,189** | Structure + call graph + complexity—everything needed to edit correctly |
75
+
76
+ **95% token savings** while preserving the information LLMs actually need to write correct code.
77
+
78
+ #### How axe-dig Works: we dig 5 levels deep.
79
+
80
+ Not every question needs full program analysis. Pick the layer that matches your task:
81
+
82
+ ```
83
+ ┌─────────────────────────────────────────────────────────────┐
84
+ │ Layer 5: Program Dependence → "What affects line 42?" │
85
+ │ Layer 4: Data Flow → "Where does this value go?" │
86
+ │ Layer 3: Control Flow → "How complex is this?" │
87
+ │ Layer 2: Call Graph → "Who calls this function?" │
88
+ │ Layer 1: AST → "What functions exist?" │
89
+ └─────────────────────────────────────────────────────────────┘
90
+ ```
91
+
92
+ **Try it yourself on this codebase:**
93
+
94
+ ```bash
95
+ # first run this if you didn't run the "axe" command prior to it. axe automicatlly makes the .dig folder with all the indexes, edges-- but since its your first time, you can run this first
96
+ chop semantic index .
97
+
98
+ # 1. Find code that resets counters (semantic search)
99
+ chop semantic search "reset cumulative statistics and start fresh counter"
100
+
101
+ # Result: Finds reset_step_count() at position #2 (score: 0.632)
102
+ # Why this query? We're looking for state reset logic
103
+ # What it found: TokenCounter.reset_step_count() - even though the code
104
+ # doesn't mention "cumulative" or "fresh", the embedding understands
105
+ # it resets a TokenCount object in a statistics tracking class
106
+
107
+ # 2. Get token-efficient context
108
+ chop context reset_step_count --project src/axe_cli/
109
+
110
+ # Result: ~89 tokens (vs ~4,200 for reading the raw file)
111
+ # Shows: Function signature, what it calls, complexity metrics
112
+ # 98% token savings while preserving understanding
113
+
114
+ # 3. Check who uses it before refactoring
115
+ chop impact TokenCounter src/axe_cli/
116
+
117
+ # Result: Only called by get_global_counter() in same file
118
+ # Meaning: Safe to refactor - no external dependencies to break
119
+ ```
120
+
121
+ **What this demonstrates:**
122
+ - Semantic search finds code by behavior, not keywords
123
+ - Context extraction gives you understanding at 2% of the token cost
124
+ - Impact analysis shows dependencies instantly (no grep, no manual tracing)
125
+
126
+ #### Semantic Search: Find Code by Behavior
127
+
128
+ Traditional search finds syntax. axe-dig semantic search finds **what code does** based on call graphs and structure.
129
+
130
+ ```bash
131
+ # Try this on the axe-cli codebase itself:
132
+ chop semantic search "retry failed operations with exponential backoff"
133
+
134
+ # Result: Finds _is_retryable_error() at position #1 (score: 0.713)
135
+ # Why? The query doesn't mention "error" or specific function names
136
+ # But the embedding understands retry logic patterns:
137
+ # - Function checks exception types (retryable vs non-retryable)
138
+ # - Called by retry loops with backoff logic
139
+ # - Part of error handling flow in axesoul.py
140
+ ```
141
+
142
+ **What it found:**
143
+ ```json
144
+ [
145
+ {
146
+ "name": "_is_retryable_error",
147
+ "file": "src/axe_cli/soul/axesoul.py",
148
+ "score": 0.713
149
+ },
150
+ {
151
+ "name": "_retry_log",
152
+ "file": "src/axe_cli/soul/axesoul.py",
153
+ "score": 0.710
154
+ }
155
+ ]
156
+ ```
157
+
158
+ **Another example: Find config loading**
159
+ ```bash
160
+ chop semantic search "load configuration from toml file"
161
+
162
+ # Result: load_config_from_string() at #1 (score: 0.759)
163
+ # Finds TOML parsing, config migration, and related tests
164
+ ```
165
+
166
+ Every function gets embedded with:
167
+ - Signature + docstring
168
+ - What it calls + who calls it (forward & backward call graph)
169
+ - Complexity metrics (branches, loops, cyclomatic complexity)
170
+ - Data flow (which variables are used, how they transform)
171
+ - Dependencies (imports, external modules)
172
+ - First ~10 lines of code
173
+
174
+ This gets encoded into 1024-dimensional embeddings, so semantic search finds relevant code even when you use different terminology.
175
+
176
+ #### Daemon Architecture: 300x Faster
177
+
178
+ **The old way:** Every query spawns a new process, parses the entire codebase, throws away the results. ~30 seconds per query.
179
+
180
+ **axe-dig's daemon:** Long-running background process with indexes in RAM. ~100ms per query.
181
+
182
+ ```bash
183
+ # First query auto-starts daemon (transparent)
184
+ axe # In your project directory
185
+
186
+ # Daemon stays running, queries use in-memory indexes
187
+ # 100ms, not 30s per query
188
+ ```
189
+
190
+ **Incremental updates:** When you edit one function, axe-dig doesn't re-analyze the entire codebase. Content-hash-based caching with automatic dependency tracking means 10x faster incremental updates.
191
+
192
+ **What's stored:** The daemon keeps call graphs, complexity metrics, and semantic embeddings in `.dig/cache/`. A typical project generates ~10MB of indexes that load into RAM in \u003c1 second. See [full cache structure](docs/AXE-DIG.md#cache-structure) for details.
193
+
194
+ **[Read the full axe-dig documentation →](docs/AXE-DIG.md)**
195
+
196
+ ---
197
+
198
+ ## Documentation Index
199
+
200
+ We've organized the docs to make them digestible. Here's what's where:
201
+
202
+ ### [Common Use Cases & Workflows](examples/README.md)
203
+ Learn how to use axe for implementing features, fixing bugs, understanding unfamiliar code, and automating tasks. Includes real workflow examples for debugging, refactoring, and exploration. See how axe handles everything from adding pagination to investigating race conditions.
204
+
205
+ ### [Built-in Tools](src/axe_cli/tools/README.md)
206
+ Complete reference for all available tools: file operations, shell commands, multi-agent tasks, and the axe-dig code intelligence tools. CodeSearch finds code by behavior, CodeContext extracts LLM-ready summaries with 95% token savings, CodeStructure navigates files/directories, and CodeImpact shows reverse call graphs before you refactor. Every tool is designed for precision, not guesswork.
207
+
208
+ ### [Agent Skills](src/axe_cli/skills/README.md)
209
+ How to create and use specialized skills to extend axe's capabilities. Skills are reusable workflows and domain expertise that you can invoke with `/skill:name` commands. Includes flow skills for multi-step automated workflows and examples for code style, git commits, and project standards. Turn your team's best practices into executable knowledge.
210
+
211
+ ### [Agents & Subagents](src/axe_cli/agents/README.md)
212
+ Guide to creating custom agents and spawning specialized subagents for parallel work. Need a dedicated security researcher? A ruthlessly precise code reviewer? A creative copywriter? axe can create and deploy specialized subagents based on your exact requirements. These subagents operate with lethal precision to divide and conquer complex workflows.
213
+
214
+ ### [Technical Reference](src/axe_cli/README.md)
215
+ Deep dive into configuration (providers, models, loop control), session management, architecture, and MCP integration. Everything you need to customize axe for your workflow. Configure Bodega models, set up OpenRouter/Anthropic/OpenAI providers, manage sessions, and integrate with other tools via Model Context Protocol.
216
+
217
+ ### [axe-dig: Code Intelligence Engine](docs/AXE-DIG.md)
218
+ **The secret weapon.** Complete documentation on axe-dig's 5-layer architecture, semantic search, daemon mode, and program slicing. Learn how to extract 95% fewer tokens while preserving everything needed for correct edits. Includes performance benchmarks (155x faster queries, 89% token reduction), real-world debugging workflows, and the design rationale behind every choice. This is what makes axe different from every other coding tool.
219
+
220
+ ---
221
+
222
+ ## Quick start
223
+
224
+ ### Install
225
+ ```bash
226
+ # Install axe-cli (includes axe-dig)
227
+ uv pip install axe-cli
228
+
229
+ # Or from source
230
+ git clone https://github.com/SRSWTI/axe-cli
231
+ cd axe-cli
232
+ make prepare
233
+ make build
234
+
235
+ or uv run axe
236
+ ```
237
+
238
+ ### Run
239
+ ```bash
240
+ cd /path/to/your/project
241
+ axe
242
+ ```
243
+
244
+ On first run, axe-dig automatically indexes your codebase (30-60 seconds for typical projects). After that, queries are instant.
245
+
246
+ ### Start using
247
+ ```bash
248
+ # Find code by behavior
249
+ /skill:code-search "database connection pooling"
250
+
251
+ # Understand a function without reading the whole file
252
+ /skill:code-context get_user_by_id
253
+
254
+ # See who calls a function before refactoring
255
+ /skill:code-impact authenticate_request
256
+
257
+ # Make surgical edits
258
+ StrReplaceFile src/auth.py "old code" "new code"
259
+
260
+ # Toggle to shell mode
261
+ [Ctrl+X]
262
+ pytest tests/
263
+ [Ctrl+X]
264
+ ```
265
+
266
+ ---
267
+
268
+ ## Core capabilities
269
+
270
+ ### Code intelligence (powered by axe-dig)
271
+
272
+ | Tool | What it does | Use case |
273
+ |------|-------------|----------|
274
+ | **CodeSearch** | Semantic search by behavior | "Find payment processing logic" |
275
+ | **CodeContext** | LLM-ready function summaries (95% token savings) | Understand unfamiliar code |
276
+ | **CodeStructure** | Navigate functions/classes in files/dirs | Explore new codebases |
277
+ | **CodeImpact** | Reverse call graph (who calls this?) | Safe refactoring |
278
+
279
+ ### File operations
280
+ - `ReadFile` / `WriteFile` / `StrReplaceFile` - Standard file I/O
281
+ - `Grep` - Exact file locations + line numbers (use after CodeSearch)
282
+ - `Glob` - Pattern matching
283
+ - `ReadMediaFile` - Images, PDFs, videos
284
+
285
+ ### Multi-agent workflows
286
+ - `Task` - Spawn subagents for parallel work
287
+ - `CreateSubagent` - Custom agent specs
288
+ - `SetTodoList` - Track multi-step tasks
289
+
290
+ ### Shell integration
291
+ - `Shell` - Execute commands
292
+ - **Ctrl+X** - Toggle between axe and normal shell mode
293
+
294
+ ---
295
+
296
+ ## Powered by SRSWTI Inc.
297
+
298
+ **Building the world's fastest retrieval and inference engines.**
299
+
300
+ ### Bodega Inference Engine
301
+
302
+ Exclusive models trained/optimized for Bodega Inference Engine. axe includes **zero-day support** for all Bodega models (ofcourse), ensuring immediate access to our latest breakthroughs.
303
+
304
+ **Note:** Our models are also available on [🤗 Hugging Face](https://huggingface.co/srswti).
305
+
306
+ #### Raptor Series
307
+ Ultra-compact reasoning models designed for efficiency and edge deployment. **Super light**, amazing agentic coding capabilities, robust tool support, minimal memory footprint.
308
+
309
+ - [🤗 **bodega-raptor-0.9b**](https://huggingface.co/srswti/bodega-raptor-0.9b) - 900M params. Runs on mobile/Pi with 100+ tok/s.
310
+ - [🤗 **bodega-raptor-90m**](https://huggingface.co/srswti/bodega-raptor-90m) - Extreme edge variant. Sub-100M params for amazing tool calling.
311
+ - [🤗 **bodega-raptor-1b-reasoning-opus4.5-distill**](https://huggingface.co/srswti/bodega-raptor-1b-reasoning-opus4.5-distill) - Distilled from Claude Opus 4.5 reasoning patterns.
312
+ - [🤗 **bodega-raptor-8b-mxfp4**](https://huggingface.co/srswti/bodega-raptor-8b-mxfp4) - Balanced power/performance for laptops.
313
+ - [🤗 **bodega-raptor-15b-6bit**](https://huggingface.co/srswti/bodega-raptor-15b-6bit) - Enhanced raptor variant.
314
+
315
+ #### Flagship Models
316
+ Frontier intelligence, distilled and optimized.
317
+
318
+ - [🤗 **deepseek-v3.2-speciale-distilled-raptor-32b-4bit**](https://huggingface.co/srswti/deepseek-v3.2-speciale-distilled-raptor-32b-4bit) - DeepSeek V3.2 distilled to 32B with Raptor reasoning. Exceptional math/code generation in 5-7GB footprint. 120 tok/s on M1 Max.
319
+ - [🤗 **bodega-centenario-21b-mxfp4**](https://huggingface.co/srswti/bodega-centenario-21b-mxfp4) - Production workhorse. 21B params optimized for sustained inference workloads.
320
+ - [🤗 **bodega-solomon-9b**](https://huggingface.co/srswti/bodega-solomon-9b) - Multimodal and best for agentic coding.
321
+
322
+ #### Axe-Turbo Series
323
+ **Launched specifically for the Axe coding use case.** High-performance agentic coding models optimized for the Axe ecosystem.
324
+
325
+ - [🤗 **axe-turbo-1b**](https://huggingface.co/srswti/axe-turbo-1b) - 1B params, 150 tok/s, sub-50ms first token. Edge-first architecture.
326
+ - [🤗 **axe-turbo-31b**](https://huggingface.co/srswti/axe-turbo-31b) - High-capacity workloads. Exceptional agentic capabilities.
327
+
328
+ #### Specialized Models
329
+ Task-specific optimization.
330
+
331
+ - [🤗 **bodega-vertex-4b**](https://huggingface.co/srswti/bodega-vertex-4b) - 4B params. Optimized for structured data.
332
+ - [🤗 **blackbird-she-doesnt-refuse-21b**](https://huggingface.co/srswti/blackbird-she-doesnt-refuse-21b) - Uncensored 21B variant for unrestricted generation.
333
+
334
+ ### Using Bodega Models
335
+
336
+ Configure Bodega in `~/.axe/config.toml`:
337
+
338
+ ```toml
339
+ default_model = "bodega-raptor"
340
+
341
+ [providers.bodega]
342
+ type = "bodega"
343
+ base_url = "http://localhost:44468" # Local Bodega server
344
+ api_key = ""
345
+
346
+ [models.bodega-raptor]
347
+ provider = "bodega"
348
+ model = "srswti/bodega-raptor-8b-mxfp4"
349
+ max_context_size = 32768
350
+ capabilities = ["thinking"]
351
+
352
+ [models.bodega-turbo]
353
+ provider = "bodega"
354
+ model = "srswti/axe-turbo-31b"
355
+ max_context_size = 32768
356
+ capabilities = ["thinking"]
357
+ ```
358
+
359
+ See [sample_config.toml](sample_config.toml) for more examples including OpenRouter, Anthropic, and OpenAI configurations.
360
+
361
+ ---
362
+
363
+ ## What's coming
364
+
365
+ Our internal team has been using features that will change the game:
366
+
367
+ ### 1. Execution Tracing
368
+ See what actually happened at runtime. No more guessing why a test failed.
369
+
370
+ ```bash
371
+ # Trace a failing test
372
+ /trace pytest tests/test_payment.py::test_refund
373
+
374
+ # Shows exact values that flowed through each function:
375
+ # process_refund(amount=Decimal("50.00"), transaction_id="tx_123")
376
+ # → validate_refund(transaction=Transaction(status="completed"))
377
+ # → check_refund_window(created_at=datetime(2024, 1, 15))
378
+ # → datetime.now() - created_at = timedelta(days=45)
379
+ # → raised RefundWindowExpired # ← 30-day window exceeded
380
+ ```
381
+
382
+ ### 2. Performance Debugging
383
+ Flame graphs and memory profiling integrated directly in the chat interface.
384
+
385
+ ```bash
386
+ # Generate flame graph
387
+ /flamegraph api_server.py
388
+
389
+ # Find memory leaks
390
+ /memory-profile background_worker.py
391
+ ```
392
+
393
+ ### 3. Visual Debugging
394
+ Interactive visualizations for understanding complex codebases:
395
+
396
+ - **Call graphs**: See the entire call chain from entry point to implementation
397
+ - **Dependency graphs**: Understand module relationships and coupling
398
+ - **AST visualizations**: Navigate code structure visually
399
+ - **Data flow diagrams**: Trace how values transform through your system
400
+
401
+ All generated on demand and viewable in your browser. No more drawing diagrams on whiteboards—axe-dig generates them from your actual code.
402
+
403
+ ### 4. Smart Test Selection
404
+ ```bash
405
+ # Only run tests affected by your changes
406
+ /test-impact src/payment/processor.py
407
+
408
+ # Shows: 12 tests need to run (not all 1,847)
409
+ ```
410
+
411
+ ---
412
+
413
+ ## Why we built this
414
+
415
+ We're building the world's best retrieval and inference engine. We started with coding because it's the hardest problem: understanding large codebases, tracing execution, debugging logic errors, optimizing performance.
416
+
417
+ If we can nail code understanding, we can nail anything.
418
+
419
+ **This is not for vibe coders.** This is not for weekend hackathons where "it works on my machine" is good enough. This is for engineers shipping production code to real users, where bugs cost money and downtime costs more.
420
+
421
+ Other tools optimize for demo videos and charging per token. We optimize for engineers who need to:
422
+ - Refactor 10,000 lines without breaking tests
423
+ - Debug race conditions in distributed systems
424
+ - Understand legacy codebases with zero documentation
425
+ - Ship features on deadline without cutting corners
426
+
427
+ **The bottom line:** If you're building real software in large codebases, you need precision tools. Not vibe coding toys.
428
+
429
+ Welcome to axe.
430
+
431
+ ---
432
+
433
+ ## Supported languages
434
+
435
+ Python, TypeScript, JavaScript, Go, Rust, Java, C, C++, Ruby, PHP, C#, Kotlin, Scala, Swift, Lua, Elixir
436
+
437
+ Language auto-detected. Specify with `--lang` if needed.
438
+
439
+ ---
440
+
441
+ ## Comparison
442
+
443
+ | Feature | Claude Code | OpenAI Codex | axe |
444
+ |---------|-------------|--------------|-----|
445
+ | **Built for** | Weekend projects | Demos | Production codebases |
446
+ | **Context strategy** | Dump everything | Dump everything | Extract signal (95% savings) |
447
+ | **Code search** | Text/regex | Text/regex | Semantic (behavior-based) |
448
+ | **Call graph analysis** | ❌ | ❌ | ✅ 5-layer analysis |
449
+ | **Token optimization** | ❌ (incentivized to waste) | ❌ (incentivized to waste) | ✅ Show savings per query |
450
+ | **Execution tracing** | ❌ | ❌ | ✅ Coming soon |
451
+ | **Flame graphs** | ❌ | ❌ | ✅ Coming soon |
452
+ | **Memory profiling** | ❌ | ❌ | ✅ Coming soon |
453
+ | **Visual debugging** | ❌ | ❌ | ✅ Coming soon |
454
+ | **Shell integration** | ❌ | ❌ | ✅ Ctrl+X toggle |
455
+ | **Session management** | Limited | Limited | ✅ Full history + replay |
456
+ | **Skills system** | ❌ | ❌ | ✅ Modular, extensible |
457
+ | **Subagents** | ❌ | ❌ | ✅ Parallel task execution |
458
+ | **Battle-tested** | Public beta | Public API | 6 months internal use |
459
+
460
+ ---
461
+
462
+ ## Community
463
+
464
+ - **Issues**: [GitHub Issues](https://github.com/SRSWTI/axe-cli/issues)
465
+ - **Discussions**: [GitHub Discussions](https://github.com/SRSWTI/axe-cli/discussions)
466
+ - **Docs**: [Full documentation](https://axe-cli.dev/docs)
467
+
468
+ ## Acknowledgements
469
+
470
+ Special thanks to [MoonshotAI/kimi-cli](https://github.com/MoonshotAI/kimi-cli) for their amazing work, which inspired our tools and the Kosong provider.
@@ -1,4 +1,5 @@
1
1
  axe_cli/CHANGELOG.md,sha256=SGSnQvv2yk7kG6yVGqS8q44PLc9g4BcaCxXkFT_rMNw,16
2
+ axe_cli/README.md,sha256=nMESVr_BTlOz2Ie_7EqUGDIjX7I7uJIHHnpL085pheA,10748
2
3
  axe_cli/__init__.py,sha256=nnr9vBuaOPg3n4pkn07f4cvBIcjtqwTtyK26CKjSFCI,206
3
4
  axe_cli/acp/AGENTS.md,sha256=mWGID3bdGIIdlWGaLH09yN7KgQ_1mCPpqHjRUdXTjfc,4703
4
5
  axe_cli/acp/__init__.py,sha256=pDSEbgArG80xXe482DRrs4mt9lElrmFsw3Ss51lvTNU,391
@@ -9,12 +10,14 @@ axe_cli/acp/server.py,sha256=ABCOQZGofXA2XlvwRPiNnf5BSNg-TUi5JGycWIwQKI0,14213
9
10
  axe_cli/acp/session.py,sha256=92iMe_an-SWZpaIpXTv5auzVQLKzHHHx2bwYUsIxdlk,16952
10
11
  axe_cli/acp/tools.py,sha256=1HAhkr-ywLcWMnnrYiNidSH5rSwewzb_Yc6D-vbiJgU,5833
11
12
  axe_cli/acp/types.py,sha256=XpFjCPTAkmK-_NtFsL1C82UlQ2O88ngGmEaRp8bFgPQ,348
13
+ axe_cli/agents/README.md,sha256=jznLWPa95oB6PAOZJCmDVqjGjfh8hgsAJUrt0FRyeLc,4844
12
14
  axe_cli/agents/default/agent.yaml,sha256=TtuTy3l5GyHvsDpnikXvpo6VuxhCmPg-_D_5lQhoQDE,980
13
15
  axe_cli/agents/default/sub.yaml,sha256=bt4sqKHfhqr4ktUBBUidLGTYDlnHq7ZYjufA4FKC0dE,685
14
- axe_cli/agents/default/system.md,sha256=ojTGZATFit8ue9zWqQ7h3w72KYLOiJDqi5Cw-yaO6YM,11105
16
+ axe_cli/agents/default/system.md,sha256=ovucGEhxYszZZEa6evzFOXU5r4rjkFkbgcnlbpSWdzE,13438
15
17
  axe_cli/agents/okabe/agent.yaml,sha256=YnSLXnaBbqBg-AsCStx57_P5FUTTTU5Nmq5KwN2P_lk,571
16
18
  axe_cli/agentspec.py,sha256=Tbo1Yls1W_ETzBZCjw0KeZ2FgIMfDfqmWJg0uxfIcM0,5325
17
- axe_cli/app.py,sha256=aTh2YrcYrFVJ9L17OQO4PNOBSY1tE07_SOflY7TmReU,12788
19
+ axe_cli/app.py,sha256=yttKq_7ETFNfSawhOIf2uzYousk2WZhoQQBBa7LdqH8,13067
20
+ axe_cli/auth/__init__.py,sha256=3Vzh8L-ZCGmyVBZmkjSTS48xUT-VgHY-Lc3-umJ0ebE,70
18
21
  axe_cli/auth/oauth.py,sha256=qe5Ik5bPMZjCRr19PYleytC9Ep6fdTExEt5obvoSigw,22733
19
22
  axe_cli/auth/platforms.py,sha256=3tX8MHCtBjVCnckJN9WQm8Js3I1HfOI3W-wrHVcss-E,8739
20
23
  axe_cli/cli/__init__.py,sha256=xJTipwuCZzZOdbQzsFadGbEy80qKcVY653MYOJgTaLs,18086
@@ -22,10 +25,10 @@ axe_cli/cli/__main__.py,sha256=DSDCwRiTbY3qLsu1PJqbhJHmULGHn3avLTyarmK7MJA,124
22
25
  axe_cli/cli/info.py,sha256=2-if5tb5oKCAuS8LnWKSJAA6LdBTRczDT3n5AFv6GPU,1627
23
26
  axe_cli/cli/mcp.py,sha256=j6Dqy89crl2N4IH8TfQrAAkYFYITa9Fzt7AaGQ0tXkA,11348
24
27
  axe_cli/cli/toad.py,sha256=6Kncs4axEpM85xbFqZgB2udqf4yLMI108rsWGjPrePQ,2221
25
- axe_cli/config.py,sha256=RTGu0Artcz61tnQCxRrCzUgujGlU7-EZjOHZ0CUoB1s,9170
28
+ axe_cli/config.py,sha256=EiN-JNBglCC5VKFxpNOB8NV42OnM3e7lWY9nLtAJMDk,9458
26
29
  axe_cli/constant.py,sha256=seqfvVWoZFQF_K4MUyhp5xS9AfCG4fgqk1PNsQ7IFqU,166
27
30
  axe_cli/exception.py,sha256=Y_edY-Kh-g-9-vblfcXOsiM13x3dy7DU7sh05xet4GU,602
28
- axe_cli/llm.py,sha256=MMqVtlpqf00tLW5FVJTR5lxODyWG4PON_GOndYr15S0,11365
31
+ axe_cli/llm.py,sha256=PVCdzDhrlflK9Qjnb4ipwmFBggp3iT8JoVN5EGNVs0E,11504
29
32
  axe_cli/metadata.py,sha256=83ZjJJjJ3uaPYAMBAhzCOXIkh9gH6fpwRNvf0XW7W-Q,3159
30
33
  axe_cli/prompts/__init__.py,sha256=V9_bX3xUHgS4fy1wjuevRilXNeENbxizUxOn4wSDOFw,210
31
34
  axe_cli/prompts/compact.md,sha256=JHU6GaPA36vFVFoQNmalWcx92MqpY3Ff3Gyn3Xh6Dgo,1858
@@ -37,12 +40,13 @@ axe_cli/skill/__init__.py,sha256=ig3v_43ElRkPxWHYvJm8vURn2sVV5lklQl9pVc2N8zI,909
37
40
  axe_cli/skill/flow/__init__.py,sha256=w6kcpH-Uvsvehdfx41DxhZskJAIJoud65oKyXPyPwiA,2622
38
41
  axe_cli/skill/flow/d2.py,sha256=vMnhQHzmtEmPpLcEpuKDeEunjuctw5hwHq1O-Ov0gsY,14315
39
42
  axe_cli/skill/flow/mermaid.py,sha256=nmyOPfhA0uw6KPsEViMzzTB-XgA8jCsSB9Ay-XYaByA,8195
43
+ axe_cli/skills/README.md,sha256=zAzWHvHNEDuy7o1JOlI_tWhFI6sOYAgbPAVfD9MgwXY,8357
40
44
  axe_cli/skills/axe-cli-help/SKILL.md,sha256=A9NvPAwczhMk0TGC1aeUrB3isMKAbo8sA3ezXWE6BZU,1746
41
45
  axe_cli/skills/skill-creator/SKILL.md,sha256=3-I6klhUIwm2W_YQApCjippKx34hd4pgpZzLjzX1Zvo,18091
42
46
  axe_cli/soul/__init__.py,sha256=qKiTLxsz6S-AvUYfnYkocFUaFO1Wcaplk7vj-ok1vIg,6964
43
- axe_cli/soul/agent.py,sha256=NqpuduXKyC48GIctm-E5NuGlld76EvBgO4WxIV_JAIk,9455
47
+ axe_cli/soul/agent.py,sha256=Zx2BkTaOnAij_ss-bZ10AZd8AP53ouOiPQJuCEirzIQ,9889
44
48
  axe_cli/soul/approval.py,sha256=eroi2dZnt9yKtaq3hExmn30JEG6GL3GHhrfkQ51hxnc,4934
45
- axe_cli/soul/axesoul.py,sha256=5JJYcYQLq4A21u1A5UkPPOQTfZmXHOEYbZW3oo1d_rM,27974
49
+ axe_cli/soul/axesoul.py,sha256=HwMDPOvYIoSkd_Q2A59SpetMP6WHcwTV4gRgI7cJPlY,28474
46
50
  axe_cli/soul/compaction.py,sha256=IRwRUV9mLxia5_1z-2W8eP6dtz0inWe805IS1GA55_0,4322
47
51
  axe_cli/soul/context.py,sha256=iBHSK6qjCjtRAlOaGkWVNbsh7C9qb94j7Rsw59DtLog,6961
48
52
  axe_cli/soul/denwarenji.py,sha256=pfr7Pht9uPRedY_h5K6ENGry6-D10fTseL-_AEmNZj0,1420
@@ -51,14 +55,15 @@ axe_cli/soul/slash.py,sha256=W936fbQs_whaQ-aVKBRKKSiiPZyMRG8Yd1f3bYStnXE,2630
51
55
  axe_cli/soul/toolset.py,sha256=VOY-zanWz9mCujkeMXh5MCfOag_kh0lTVRsXlCmOiIo,16820
52
56
  axe_cli/token_counter.py,sha256=j_XDHMSScLoMFmVFQeSeyLRew2hFEFW8BAtw2Z3IT4E,9994
53
57
  axe_cli/tools/AGENTS.md,sha256=6sssYW5lxqrUL00FsiuV44MmLalPbbzg1vuwdfwJivw,211
58
+ axe_cli/tools/README.md,sha256=0BTc6npcyZF4WXfSK1LTfhLblT7ekHJm0Wg8pUB03ug,5316
54
59
  axe_cli/tools/__init__.py,sha256=ptBMSp7toE5HFABENBV33E3Tgo5KjmXrsbeMaVaBmsA,3805
55
60
  axe_cli/tools/axe/__init__.py,sha256=VWsIvoZ-wXcx3vfVr9XERp8_IfgkGVPMsNM2X0d6uWc,2977
56
- axe_cli/tools/axe/auto_init.py,sha256=jwBfsF-0bWyDFki-pHZkQHW__bsZSMwRnF10agqGr_s,12254
57
- axe_cli/tools/axe/context.py,sha256=wOG4suLx_L-zB-oaTEJs1RqGe5CaIIdJFxMrQq8f9Og,4956
58
- axe_cli/tools/axe/impact.py,sha256=EbFy81NzLsoT_ErU9_oh26qZu79sMUzZbEepNHGRuCU,4860
61
+ axe_cli/tools/axe/auto_init.py,sha256=mZFZ1_NTSEpbim51jDdzYwco9pgt4d3CGKA1kifB30Y,12227
62
+ axe_cli/tools/axe/context.py,sha256=qhJLGd5J6zS9q-mXUrfIIpTUFvTqwIzCD59gBYwy_Ss,4902
63
+ axe_cli/tools/axe/impact.py,sha256=-n5Y0YpzLrUhhcEuwA4yGmWCmbHj762rvcSJqVzdbGY,5112
59
64
  axe_cli/tools/axe/index.py,sha256=_CHTB1OCoaaBFmpr4xBLn9X4sjhhaRINmZJR5Eacvfg,4759
60
- axe_cli/tools/axe/prewarm.py,sha256=m6bT-zKW92ueql8yjRjnc1z448y9OGHw_VvbHT4sOaM,6346
61
- axe_cli/tools/axe/search.py,sha256=8GHqqnzAljSjcLBNqD20EbK-c8GfAijS3NiXDGaJKvg,4690
65
+ axe_cli/tools/axe/prewarm.py,sha256=4PZoJNnO_WW3UgxztxxiKXwrZEa56esMCU05SiUUjhI,6350
66
+ axe_cli/tools/axe/search.py,sha256=_dwq_Yx6xuJyPFm0fFZyeNudgh1AAAqBlthHGWArmxc,5111
62
67
  axe_cli/tools/axe/structure.py,sha256=FeNm6dnWQ5MDl83CM5OqzzsHrsXmPmNHYgwhulUvwYM,4321
63
68
  axe_cli/tools/axe/warm.py,sha256=EBLE8Mz_5m-EkBCnGcGXIceW989rDD8-DBcxUtvoJRY,3440
64
69
  axe_cli/tools/display.py,sha256=4czNWmAPsTeNBn_5DS6CFVepPsW16VABaZfkc4p2pec,671
@@ -101,7 +106,7 @@ axe_cli/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
106
  axe_cli/ui/acp/__init__.py,sha256=HzssqvXjFmvh4Ne9FD_VB0-X7OeCfLBk7-NOFBJGFNY,2681
102
107
  axe_cli/ui/print/__init__.py,sha256=VHstYvqDMqQxbev8lMB6vhDVAXoTsji5p9kW15W0Dg4,4732
103
108
  axe_cli/ui/print/visualize.py,sha256=9EPI4RwSCaIrZ6tfGgr4QZaXbtbgZXtC6PQG9xkbaGM,5664
104
- axe_cli/ui/shell/__init__.py,sha256=ARy_MF6ZBqSAJ82FIBKf0_2wrdqVSoPv8Nhbmm0rr2M,18778
109
+ axe_cli/ui/shell/__init__.py,sha256=V1rbxzJM-1xasYBdYV4UHnAzgWfRepkJLVCrpLEhEFI,18777
105
110
  axe_cli/ui/shell/console.py,sha256=GIKqLBHDHc-DRklGLB92Dem1AhP6CaqCNaon4_fj29g,878
106
111
  axe_cli/ui/shell/debug.py,sha256=RLLLBujvbfw5WcX4m5maSPDfSjDND81U8ccQhXUnWGA,5629
107
112
  axe_cli/ui/shell/keyboard.py,sha256=UPNEHdrTsKTPMpakcvgghYvyUopSXIXAEdy7LQgwHSU,7549
@@ -109,7 +114,7 @@ axe_cli/ui/shell/oauth.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
109
114
  axe_cli/ui/shell/prompt.py,sha256=LGqKknSje-hoyt53PAwFD3OprQ3n4dKRpmUk-mNHoqQ,32938
110
115
  axe_cli/ui/shell/replay.py,sha256=2NUmQpRtMxseW5wqp3uozBn6OfUc8nHh1OrHQMaaekQ,5625
111
116
  axe_cli/ui/shell/setup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
112
- axe_cli/ui/shell/slash.py,sha256=7nQA6xvCjajv_5eEYHzvrYpkN9YdYA4gSJv4tVt8gLQ,12710
117
+ axe_cli/ui/shell/slash.py,sha256=JtnCqzaQF_yQ4ZHjvCKDVlZQ66OeDEJxZmGSKX7Ev5Q,12729
113
118
  axe_cli/ui/shell/update.py,sha256=zHIUJvbtRa9m9waiO6tQpGpdLVVmFxDtRgKFfpWm2Po,7369
114
119
  axe_cli/ui/shell/usage.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
120
  axe_cli/ui/shell/visualize.py,sha256=nJcZZsoR3l2J7E1Uu8_lKwCzW3dfq9mkOXb5IxzPadY,30417
@@ -147,7 +152,7 @@ axe_cli/wire/protocol.py,sha256=hzlvXrvex6kL1eqltGDedvF1CrGY_8dINMMVluF_J1c,77
147
152
  axe_cli/wire/serde.py,sha256=v7MsE35R6Uy7ypynRaPG3iOdj4gkxzNprgaVmVVymBQ,742
148
153
  axe_cli/wire/server.py,sha256=oNjJUdALTL91ygEYsP4c4lWJ57T3Z7RIbd78nWH7O94,21218
149
154
  axe_cli/wire/types.py,sha256=O_uvsRoc5Xa7ODVcTYB9Po47cuLUErbEOhbA2qpUxOI,10597
150
- axe_cli-1.7.6.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
151
- axe_cli-1.7.6.dist-info/entry_points.txt,sha256=IOP2TaPtunLm5FigWdAF1KAzg7n6zN4L_JRNWbSm8Wg,41
152
- axe_cli-1.7.6.dist-info/METADATA,sha256=x3vVD6jJdFQSPqzFUccK_GGMvz54eGihF4-FSsP9Pb8,46656
153
- axe_cli-1.7.6.dist-info/RECORD,,
155
+ axe_cli-1.8.0.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
156
+ axe_cli-1.8.0.dist-info/entry_points.txt,sha256=IOP2TaPtunLm5FigWdAF1KAzg7n6zN4L_JRNWbSm8Wg,41
157
+ axe_cli-1.8.0.dist-info/METADATA,sha256=Ax-77Aupv6keO597S0_g6Hhk6WBV0OAnDt71Bnn8YI8,20087
158
+ axe_cli-1.8.0.dist-info/RECORD,,