git-aware-coding-agent 1.0.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.
- avos_cli/__init__.py +3 -0
- avos_cli/agents/avos_ask_agent.md +47 -0
- avos_cli/agents/avos_ask_agent_JSON_converter.md +78 -0
- avos_cli/agents/avos_hisotry_agent_JSON_converter.md +92 -0
- avos_cli/agents/avos_history_agent.md +58 -0
- avos_cli/agents/git_diff_agent.md +63 -0
- avos_cli/artifacts/__init__.py +17 -0
- avos_cli/artifacts/base.py +47 -0
- avos_cli/artifacts/commit_builder.py +35 -0
- avos_cli/artifacts/doc_builder.py +30 -0
- avos_cli/artifacts/issue_builder.py +37 -0
- avos_cli/artifacts/pr_builder.py +50 -0
- avos_cli/cli/__init__.py +1 -0
- avos_cli/cli/main.py +504 -0
- avos_cli/commands/__init__.py +1 -0
- avos_cli/commands/ask.py +541 -0
- avos_cli/commands/connect.py +363 -0
- avos_cli/commands/history.py +549 -0
- avos_cli/commands/hook_install.py +260 -0
- avos_cli/commands/hook_sync.py +231 -0
- avos_cli/commands/ingest.py +506 -0
- avos_cli/commands/ingest_pr.py +239 -0
- avos_cli/config/__init__.py +1 -0
- avos_cli/config/hash_store.py +93 -0
- avos_cli/config/lock.py +122 -0
- avos_cli/config/manager.py +180 -0
- avos_cli/config/state.py +90 -0
- avos_cli/exceptions.py +272 -0
- avos_cli/models/__init__.py +58 -0
- avos_cli/models/api.py +75 -0
- avos_cli/models/artifacts.py +99 -0
- avos_cli/models/config.py +56 -0
- avos_cli/models/diff.py +117 -0
- avos_cli/models/query.py +234 -0
- avos_cli/parsers/__init__.py +21 -0
- avos_cli/parsers/artifact_ref_extractor.py +173 -0
- avos_cli/parsers/reference_parser.py +117 -0
- avos_cli/services/__init__.py +1 -0
- avos_cli/services/chronology_service.py +68 -0
- avos_cli/services/citation_validator.py +134 -0
- avos_cli/services/context_budget_service.py +104 -0
- avos_cli/services/diff_resolver.py +398 -0
- avos_cli/services/diff_summary_service.py +141 -0
- avos_cli/services/git_client.py +351 -0
- avos_cli/services/github_client.py +443 -0
- avos_cli/services/llm_client.py +312 -0
- avos_cli/services/memory_client.py +323 -0
- avos_cli/services/query_fallback_formatter.py +108 -0
- avos_cli/services/reply_output_service.py +341 -0
- avos_cli/services/sanitization_service.py +218 -0
- avos_cli/utils/__init__.py +1 -0
- avos_cli/utils/dotenv_load.py +50 -0
- avos_cli/utils/hashing.py +22 -0
- avos_cli/utils/logger.py +77 -0
- avos_cli/utils/output.py +232 -0
- avos_cli/utils/sanitization_diagnostics.py +81 -0
- avos_cli/utils/time_helpers.py +56 -0
- git_aware_coding_agent-1.0.0.dist-info/METADATA +390 -0
- git_aware_coding_agent-1.0.0.dist-info/RECORD +62 -0
- git_aware_coding_agent-1.0.0.dist-info/WHEEL +4 -0
- git_aware_coding_agent-1.0.0.dist-info/entry_points.txt +2 -0
- git_aware_coding_agent-1.0.0.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,390 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: git_aware_coding_agent
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Git history and session memory for AI coding agents working in the same repository.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Avos-Lab/git-aware-coding-agent
|
|
6
|
+
Project-URL: Documentation, https://github.com/Avos-Lab/git-aware-coding-agent/blob/main/docs/user/README.md
|
|
7
|
+
Project-URL: Source, https://github.com/Avos-Lab/git-aware-coding-agent
|
|
8
|
+
Project-URL: Issues, https://github.com/Avos-Lab/git-aware-coding-agent/issues
|
|
9
|
+
Author: Avos Lab
|
|
10
|
+
License-Expression: Apache-2.0
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: ai-agents,cli,developer-tools,engineering-memory,knowledge-management
|
|
13
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Requires-Python: >=3.10
|
|
24
|
+
Requires-Dist: httpx>=0.27.0
|
|
25
|
+
Requires-Dist: pydantic>=2.0.0
|
|
26
|
+
Requires-Dist: python-dotenv>=1.0.1
|
|
27
|
+
Requires-Dist: rich>=13.0.0
|
|
28
|
+
Requires-Dist: tenacity>=8.2.0
|
|
29
|
+
Requires-Dist: typer>=0.9.0
|
|
30
|
+
Provides-Extra: dev
|
|
31
|
+
Requires-Dist: freezegun>=1.4.0; extra == 'dev'
|
|
32
|
+
Requires-Dist: mypy>=1.8.0; extra == 'dev'
|
|
33
|
+
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
|
|
34
|
+
Requires-Dist: pytest-timeout>=2.2.0; extra == 'dev'
|
|
35
|
+
Requires-Dist: pytest-xdist>=3.5.0; extra == 'dev'
|
|
36
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
37
|
+
Requires-Dist: pyyaml>=6.0.0; extra == 'dev'
|
|
38
|
+
Requires-Dist: respx>=0.21.0; extra == 'dev'
|
|
39
|
+
Requires-Dist: ruff>=0.3.0; extra == 'dev'
|
|
40
|
+
Provides-Extra: full
|
|
41
|
+
Requires-Dist: anthropic>=0.25.0; extra == 'full'
|
|
42
|
+
Description-Content-Type: text/markdown
|
|
43
|
+
|
|
44
|
+
# git-aware-coding-agent
|
|
45
|
+
|
|
46
|
+
**Git history for AI agents.**
|
|
47
|
+
|
|
48
|
+
<p align="center">
|
|
49
|
+
<img src="docs/assets/git-aware-coding-agent.gif" alt="git-aware-coding-agent demo" width="100%" />
|
|
50
|
+
</p>
|
|
51
|
+
|
|
52
|
+
**Demo:** [docs/assets/git-aware-coding-agent.gif](docs/assets/git-aware-coding-agent.gif)
|
|
53
|
+
|
|
54
|
+
Avos gives AI coding agents persistent, queryable memory so they can remember **why code exists**, **what decisions shaped it**, and **how it was built** — before they modify it.
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
58
|
+
│ Developer / AI Agent │
|
|
59
|
+
│ (Claude Code, Cursor, Terminal) │
|
|
60
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
61
|
+
│
|
|
62
|
+
▼
|
|
63
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
64
|
+
│ Avos CLI │
|
|
65
|
+
│ connect · ingest · ask · history │
|
|
66
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
67
|
+
│
|
|
68
|
+
▼
|
|
69
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
70
|
+
│ Avos Memory Layer │
|
|
71
|
+
│ Repository Memory │
|
|
72
|
+
│ ├── PRs & commits │
|
|
73
|
+
│ ├── issues & comments │
|
|
74
|
+
│ ├── documentation │
|
|
75
|
+
│ └── historical context │
|
|
76
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
77
|
+
│
|
|
78
|
+
▼
|
|
79
|
+
┌─────────────────────────────────────────────────────────────────┐
|
|
80
|
+
│ Agents retrieve context before reasoning │
|
|
81
|
+
│ or modifying code │
|
|
82
|
+
└─────────────────────────────────────────────────────────────────┘
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Works with **Claude Code**, **Cursor**, and the **terminal**. Python 3.10+. Apache-2.0.
|
|
86
|
+
|
|
87
|
+
---
|
|
88
|
+
|
|
89
|
+
## Quick Start (60 seconds)
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
# Install (PyPI package name). After install, use the avos CLI everywhere below.
|
|
93
|
+
pip install git_aware_coding_agent
|
|
94
|
+
|
|
95
|
+
# Set credentials
|
|
96
|
+
export AVOS_API_KEY="your-key"
|
|
97
|
+
export GITHUB_TOKEN="your-token"
|
|
98
|
+
|
|
99
|
+
# Connect your repository
|
|
100
|
+
avos connect org/repo
|
|
101
|
+
|
|
102
|
+
# Ingest history (last 90 days)
|
|
103
|
+
avos ingest org/repo --since 90d
|
|
104
|
+
|
|
105
|
+
# Ask a question
|
|
106
|
+
avos ask "Why do we use Kafka here?"
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
That's it. Your repository now has queryable memory.
|
|
110
|
+
|
|
111
|
+
---
|
|
112
|
+
|
|
113
|
+
## The Problem
|
|
114
|
+
|
|
115
|
+
AI coding agents forget.
|
|
116
|
+
|
|
117
|
+
They can read the current file tree, but they cannot know:
|
|
118
|
+
|
|
119
|
+
- why a function exists
|
|
120
|
+
- what constraints shaped a module
|
|
121
|
+
- which old assumptions still matter
|
|
122
|
+
- what happened in previous PRs
|
|
123
|
+
|
|
124
|
+
This causes bad rewrites, repeated mistakes, and fragile changes.
|
|
125
|
+
|
|
126
|
+
## The Solution
|
|
127
|
+
|
|
128
|
+
Avos attaches **portable memory** to your repository.
|
|
129
|
+
|
|
130
|
+
Agents can query this memory before reasoning about code, giving them long-term context about the system — not just the current snapshot.
|
|
131
|
+
|
|
132
|
+
---
|
|
133
|
+
|
|
134
|
+
## What Avos Enables
|
|
135
|
+
|
|
136
|
+
- **Persistent memory** across agent sessions
|
|
137
|
+
- **PR-aware reasoning** about past changes
|
|
138
|
+
- **Queryable knowledge** from code, docs, and artifacts
|
|
139
|
+
- **Traceable decision history** for agents
|
|
140
|
+
- **Portable memory** that moves between agents and tools
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## Repository Memory
|
|
145
|
+
|
|
146
|
+
Stores the durable history of the codebase: PRs, commits, issues, comments, and documentation.
|
|
147
|
+
|
|
148
|
+
Powers `avos ask` and `avos history`.
|
|
149
|
+
|
|
150
|
+
---
|
|
151
|
+
|
|
152
|
+
## Example Use Cases
|
|
153
|
+
|
|
154
|
+
### AI coding agents
|
|
155
|
+
|
|
156
|
+
Agents can remember previous design decisions and reuse solutions across sessions.
|
|
157
|
+
|
|
158
|
+
```bash
|
|
159
|
+
avos ask "Why was retry scheduler added?"
|
|
160
|
+
avos history "retry scheduler"
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
### Engineering teams
|
|
164
|
+
|
|
165
|
+
Teams can query historical reasoning before modifying old code.
|
|
166
|
+
|
|
167
|
+
```bash
|
|
168
|
+
avos ask "What constraints shaped the auth module?"
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Onboarding
|
|
172
|
+
|
|
173
|
+
New engineers or agents can understand the trajectory of the codebase.
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
avos ask "What is this subsystem responsible for?"
|
|
177
|
+
avos history "retry flow"
|
|
178
|
+
```
|
|
179
|
+
|
|
180
|
+
---
|
|
181
|
+
|
|
182
|
+
## Command Reference
|
|
183
|
+
|
|
184
|
+
| Command | What it does |
|
|
185
|
+
| ---------------------------------- | --------------------------------------------------------------- |
|
|
186
|
+
| `avos connect org/repo` | Attach a repository to Avos Memory |
|
|
187
|
+
| `avos ingest org/repo --since 90d` | Import PRs, issues, commits, and docs into repository memory |
|
|
188
|
+
| `avos ingest-pr org/repo 123` | Ingest a single PR (after push/merge) |
|
|
189
|
+
| `avos ask "question"` | Search repository memory for evidence-backed answers |
|
|
190
|
+
| `avos history "subject"` | Reconstruct the chronological history of a subsystem or concept |
|
|
191
|
+
| `avos hook-install` | Install pre-push hook (auto-installed on connect) |
|
|
192
|
+
|
|
193
|
+
### Global Options
|
|
194
|
+
|
|
195
|
+
```
|
|
196
|
+
--json Emit machine-readable JSON (for AI agents and automation)
|
|
197
|
+
--verbose Enable debug output
|
|
198
|
+
--version Show version
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Automatic Commit Sync
|
|
204
|
+
|
|
205
|
+
When you connect a repository, avos automatically installs a **pre-push git hook** that syncs commits to Avos Memory on every `git push`. This keeps your team's memory up-to-date without manual `avos ingest` runs.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## JSON Output for AI Agents
|
|
210
|
+
|
|
211
|
+
Every command supports `--json` for strict machine-readable output:
|
|
212
|
+
|
|
213
|
+
```bash
|
|
214
|
+
avos --json ask "how does auth work?"
|
|
215
|
+
avos --json ingest-pr org/repo 123
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
All JSON responses follow the same envelope:
|
|
219
|
+
|
|
220
|
+
```json
|
|
221
|
+
{
|
|
222
|
+
"success": true,
|
|
223
|
+
"data": { ... },
|
|
224
|
+
"error": null
|
|
225
|
+
}
|
|
226
|
+
```
|
|
227
|
+
|
|
228
|
+
On error:
|
|
229
|
+
|
|
230
|
+
```json
|
|
231
|
+
{
|
|
232
|
+
"success": false,
|
|
233
|
+
"data": null,
|
|
234
|
+
"error": {
|
|
235
|
+
"code": "ERROR_CODE",
|
|
236
|
+
"message": "Human-readable message",
|
|
237
|
+
"hint": "How to fix it",
|
|
238
|
+
"retryable": true
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
```
|
|
242
|
+
|
|
243
|
+
For `ask` and `history`, JSON output is produced by LLM converter agents and requires the `REPLY_MODEL` environment variables. For all other commands, JSON output is deterministic (no LLM dependency).
|
|
244
|
+
|
|
245
|
+
---
|
|
246
|
+
|
|
247
|
+
## AI Agent Integration
|
|
248
|
+
|
|
249
|
+
Avos ships with built-in integration files for AI coding platforms.
|
|
250
|
+
|
|
251
|
+
### Cursor
|
|
252
|
+
|
|
253
|
+
```
|
|
254
|
+
.cursor/
|
|
255
|
+
├── rules/avos-agent-workflow.mdc # Always-on workflow rules
|
|
256
|
+
└── skills/
|
|
257
|
+
├── avos-search/SKILL.md # Memory search with avos ask
|
|
258
|
+
├── avos-history/SKILL.md # Chronological history
|
|
259
|
+
└── avos-ingest-pr/SKILL.md # Single-PR ingest after push
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
### Claude Code
|
|
263
|
+
|
|
264
|
+
```
|
|
265
|
+
.claude/
|
|
266
|
+
├── CLAUDE.md # Project-level instructions
|
|
267
|
+
├── commands/ # Slash commands
|
|
268
|
+
├── agents/ # Sub-agents for research/session management
|
|
269
|
+
└── instincts/ # Auto-trigger behaviors
|
|
270
|
+
```
|
|
271
|
+
|
|
272
|
+
### Other Platforms
|
|
273
|
+
|
|
274
|
+
```
|
|
275
|
+
.codex/instructions.md # Community stub
|
|
276
|
+
.agents/README.md # Integration guide for new platforms
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
---
|
|
280
|
+
|
|
281
|
+
## Recommended Workflow
|
|
282
|
+
|
|
283
|
+
### Before changing old code
|
|
284
|
+
|
|
285
|
+
```bash
|
|
286
|
+
avos ask "why does this function exist?"
|
|
287
|
+
avos history "module-or-function-name"
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
### After pushing a PR
|
|
291
|
+
|
|
292
|
+
```bash
|
|
293
|
+
avos ingest-pr org/repo 456
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## Architecture
|
|
299
|
+
|
|
300
|
+
```
|
|
301
|
+
avos_cli/
|
|
302
|
+
├── cli/main.py # Typer CLI entry point
|
|
303
|
+
├── commands/ # Orchestrators (one per command)
|
|
304
|
+
├── artifacts/ # Builders that produce canonical text for memory
|
|
305
|
+
├── services/ # Memory API, GitHub, LLM, citation validator
|
|
306
|
+
├── agents/ # LLM prompt templates for output formatting
|
|
307
|
+
├── models/ # Pydantic models
|
|
308
|
+
├── config/ # State files, hash store, lock manager
|
|
309
|
+
└── utils/ # Output formatting, logging
|
|
310
|
+
```
|
|
311
|
+
|
|
312
|
+
**Design principles:**
|
|
313
|
+
|
|
314
|
+
- Each command is an independent orchestrator with constructor DI
|
|
315
|
+
- Stateless CLI, stateful memory (via `memory_id`)
|
|
316
|
+
- Graceful degradation: if LLM synthesis fails, fallback to evidence-backed raw output
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## Environment Variables
|
|
321
|
+
|
|
322
|
+
| Variable | Required for | Description |
|
|
323
|
+
| --------------------- | -------------------------------- | -------------------------------------------------------- |
|
|
324
|
+
| `AVOS_API_KEY` | All commands | Avos Memory API key from `https://avoslab.com/` |
|
|
325
|
+
| `AVOS_API_URL` | All commands | API endpoint (default: `https://avosmemory.avoslab.com`) |
|
|
326
|
+
| `GITHUB_TOKEN` | `connect`, `ingest`, `ingest-pr` | GitHub personal access token |
|
|
327
|
+
| `OPENAI_API_KEY` | `ask`, `history` | OpenAI API key for LLM synthesis (default provider) |
|
|
328
|
+
| `ANTHROPIC_API_KEY` | `ask`, `history` | Use when `AVOS_LLM_PROVIDER=anthropic` or config says so |
|
|
329
|
+
| `REPLY_MODEL` | `--json` for `ask`/`history` | Model identifier for output formatting |
|
|
330
|
+
| `REPLY_MODEL_URL` | `--json` for `ask`/`history` | API endpoint for reply model |
|
|
331
|
+
| `REPLY_MODEL_API_KEY` | `--json` for `ask`/`history` | API key for reply model |
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## Development
|
|
336
|
+
|
|
337
|
+
```bash
|
|
338
|
+
git clone https://github.com/Avos-Lab/git-aware-coding-agent.git
|
|
339
|
+
cd git-aware-coding-agent
|
|
340
|
+
pip install -e ".[dev]"
|
|
341
|
+
|
|
342
|
+
# Run tests
|
|
343
|
+
pytest
|
|
344
|
+
|
|
345
|
+
# Lint and type check
|
|
346
|
+
ruff check avos_cli/
|
|
347
|
+
mypy avos_cli/
|
|
348
|
+
```
|
|
349
|
+
|
|
350
|
+
Coverage target: 90%+ (enforced in CI).
|
|
351
|
+
|
|
352
|
+
---
|
|
353
|
+
|
|
354
|
+
## Why This Project Exists
|
|
355
|
+
|
|
356
|
+
AI agents will become long-lived collaborators on codebases.
|
|
357
|
+
|
|
358
|
+
But without memory, they cannot accumulate knowledge. They forget decisions, repeat mistakes, and lose context between sessions.
|
|
359
|
+
|
|
360
|
+
Avos explores what persistent memory for autonomous agents should look like.
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## Contributing
|
|
365
|
+
|
|
366
|
+
We welcome contributions to the CLI, integrations, and developer workflows.
|
|
367
|
+
|
|
368
|
+
Areas we're especially interested in:
|
|
369
|
+
|
|
370
|
+
- New memory connectors
|
|
371
|
+
- Retrieval algorithms
|
|
372
|
+
- Agent integrations (Codex, OpenCode, etc.)
|
|
373
|
+
- Developer tooling
|
|
374
|
+
|
|
375
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for setup and PR process.
|
|
376
|
+
|
|
377
|
+
---
|
|
378
|
+
|
|
379
|
+
## Documentation
|
|
380
|
+
|
|
381
|
+
- [User Guide](docs/user/README.md) — Command reference, troubleshooting
|
|
382
|
+
- [Contributor Guide](CONTRIBUTING.md) — Setup, testing, code style
|
|
383
|
+
- [Changelog](CHANGELOG.md) — Release history
|
|
384
|
+
- [Agent Integration Guide](.agents/README.md) — Adding new platform integrations
|
|
385
|
+
|
|
386
|
+
---
|
|
387
|
+
|
|
388
|
+
## License
|
|
389
|
+
|
|
390
|
+
Apache-2.0
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
avos_cli/__init__.py,sha256=oOIcjQUKGOEYN2U6FUPgolCP90yCoFJok_Inq2LD4JQ,79
|
|
2
|
+
avos_cli/exceptions.py,sha256=hi5cl2liSZ5_1gkth2m7wH9211__bUv5-S4W5OuXx3I,9017
|
|
3
|
+
avos_cli/agents/avos_ask_agent.md,sha256=Ng5NiRwwpTzIuqISuWHWJ54-C7aLaWpoFOItccfv0OY,1803
|
|
4
|
+
avos_cli/agents/avos_ask_agent_JSON_converter.md,sha256=FYehbYrIO7e1ykJh9rJJxUwid4T-E51GBmrwZGPZycE,2531
|
|
5
|
+
avos_cli/agents/avos_hisotry_agent_JSON_converter.md,sha256=X9ROkXtew_1tKYMg76u6rbV_8nGtKoZ_FHoM_GKgrhY,3020
|
|
6
|
+
avos_cli/agents/avos_history_agent.md,sha256=oIIDJGhaeCOE41nErlN4XGbACuGMFJql2LHhjPR_vPA,2192
|
|
7
|
+
avos_cli/agents/git_diff_agent.md,sha256=EKYU9Y4PMG-tneenpXyicqIHAa5biQgRGodunEI7XIg,1923
|
|
8
|
+
avos_cli/artifacts/__init__.py,sha256=EkUlHqAYmcCw2hi3ks3R_gu0slP7ShxOQrbyHfYpGjM,468
|
|
9
|
+
avos_cli/artifacts/base.py,sha256=FI8cZLlsXy55Pe6SohEedwy1k3NAyX-ncE3TvwEtg1U,1200
|
|
10
|
+
avos_cli/artifacts/commit_builder.py,sha256=MBj7M94SuuW8LVY9YWYlFbnAEUwxU55QlWoE9iziSvY,1125
|
|
11
|
+
avos_cli/artifacts/doc_builder.py,sha256=RAGnaRrv_XtrngB51Z7ZtIP6e2-YHKvXVLl3OTIJcQY,897
|
|
12
|
+
avos_cli/artifacts/issue_builder.py,sha256=qKzg8JnsJV2vkA5MAgxgwWjFDSdLOCpswYtGFsrSaZg,1155
|
|
13
|
+
avos_cli/artifacts/pr_builder.py,sha256=CaWrNtLJQfoXT7d-fd4EQ9KZSKV77CVxLSuVg2ee_Fk,1517
|
|
14
|
+
avos_cli/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
15
|
+
avos_cli/cli/main.py,sha256=P9fBGKVPqAHBydUkGaJpfQh5Nwux9P4q0EP0JQ3RgWo,17497
|
|
16
|
+
avos_cli/commands/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
17
|
+
avos_cli/commands/ask.py,sha256=l7pU1r9JJxLzmxlH9Pkck846sv1nH6InPw03i18H6vo,20316
|
|
18
|
+
avos_cli/commands/connect.py,sha256=wmVMU1Rk1YZxssFnaKJX7MFZLuqiVp1bFcsmnoWZjeI,12430
|
|
19
|
+
avos_cli/commands/history.py,sha256=DsGFmQ2CN0l2XYvu2YF-nOgkIoR6mF66MerMi4LJSfQ,20683
|
|
20
|
+
avos_cli/commands/hook_install.py,sha256=pfLfO_k1R7UlMPofvSSp1P35suqjDyO46Co60n5kAUc,8865
|
|
21
|
+
avos_cli/commands/hook_sync.py,sha256=t4rfMS8QSIKCf1ZZTfYzIYBPfAXkP9XryXpiHl4mLvY,8014
|
|
22
|
+
avos_cli/commands/ingest.py,sha256=fbM4iWGNxzU-pV9IYf0wBwN2IvpV8-sxvYvxzAgryX0,18635
|
|
23
|
+
avos_cli/commands/ingest_pr.py,sha256=W01-5yYnV6sFxS8Ovud1iX2mgrluLaJo9AJPXKDiMBk,8375
|
|
24
|
+
avos_cli/config/__init__.py,sha256=5M8EM9esod99axnMxGb6DazvL1oyLnsUuXckYnQ12_A,45
|
|
25
|
+
avos_cli/config/hash_store.py,sha256=qESG681axp3nsbRijiDVmL458MFHcEp4_RbNuf0GDpk,3276
|
|
26
|
+
avos_cli/config/lock.py,sha256=1pQf90CJqZyED27VLVkhn9P4X9SnsKpQhKA92a_MYDE,4144
|
|
27
|
+
avos_cli/config/manager.py,sha256=HwFGFqxTS3r5WJXzKQN633D2pyhPedPxJsJkmHtKTy4,5747
|
|
28
|
+
avos_cli/config/state.py,sha256=Oo5bFA2lB8f64ZIzSlE5WUCDhabhdaqiniGXJjSXvyQ,2526
|
|
29
|
+
avos_cli/models/__init__.py,sha256=D_a_8XKgUuzhqnSTB0R3BhYn-LZbGIFITkAaqVCHA2Y,1256
|
|
30
|
+
avos_cli/models/api.py,sha256=h0gqs6vEbJKaTHKDcmeSZV0P76l_LhUqLFo9LykEq4g,1958
|
|
31
|
+
avos_cli/models/artifacts.py,sha256=Uy_LHcqO-ypKxbt3Tz4NLGYc1dq3LwW5TXzKsIbKwQw,2503
|
|
32
|
+
avos_cli/models/config.py,sha256=cSHBB3lWkGDipE5QkopM_MNqeGOAW7fF-oyDD2UPi4Q,1659
|
|
33
|
+
avos_cli/models/diff.py,sha256=T-LEY-qKugeibfcRbwVx9UnCnzDP_RDfLAte05-b5xg,3402
|
|
34
|
+
avos_cli/models/query.py,sha256=2nMSC1G4ZnJ209bQ44x_4t7b6CE2fNGyoiLskDVc4Wo,6747
|
|
35
|
+
avos_cli/parsers/__init__.py,sha256=10W02LCI2_9nEAKhJEf0cAXKBFBQZlrL0eeTiRx2sxo,477
|
|
36
|
+
avos_cli/parsers/artifact_ref_extractor.py,sha256=iABRRrbi4ozLUFAm6IULqn7w9yjdQEFp6Cpmy1tJTIw,5402
|
|
37
|
+
avos_cli/parsers/reference_parser.py,sha256=UufakOxNNzUcKBvmdjfWrQwxtQIDZZUUI61C4Esnxns,4157
|
|
38
|
+
avos_cli/services/__init__.py,sha256=2rG5dASqF4oBCMJ8bgPs7r0b6CftEiHlexl4oY-KqZ8,43
|
|
39
|
+
avos_cli/services/chronology_service.py,sha256=YRzbud_84fTd0vXDVZMd-ODp_H2R4JSpYFPhG3cEYFI,2162
|
|
40
|
+
avos_cli/services/citation_validator.py,sha256=vCKxj79rG6bF4zzSi1HwcWLL9cz0yH5mfW_-RP8NLqQ,4539
|
|
41
|
+
avos_cli/services/context_budget_service.py,sha256=xYLPOnWu-CmxqzmxgX9geLE_O9aWellWVAWg-uvDRkk,3740
|
|
42
|
+
avos_cli/services/diff_resolver.py,sha256=ZgeZPU27wgvj7iIK06cL3kq9Q8Cc4sWEDvXMH0VhjtE,13519
|
|
43
|
+
avos_cli/services/diff_summary_service.py,sha256=vo0XjllSJRR96QRLjAjahXDrW4jXR4e62rxXOWMWqm8,4799
|
|
44
|
+
avos_cli/services/git_client.py,sha256=i9yAoyyUaz_aJ0uaJZdPPMPY9eEXlVROhCR3FoQ4c3M,11450
|
|
45
|
+
avos_cli/services/github_client.py,sha256=q64z2aZkfZow6YGCcYaY3GppXVXR_IECTC1rm0MlWhk,14425
|
|
46
|
+
avos_cli/services/llm_client.py,sha256=AqFKGYTCI93y8qTFMR4OaAUhwx58mdBcWmKVxS8kuEA,13717
|
|
47
|
+
avos_cli/services/memory_client.py,sha256=6bbqy7H4DAJ4b-RIBHbK0oHXD2NXECNgXTWpubMdf-g,10948
|
|
48
|
+
avos_cli/services/query_fallback_formatter.py,sha256=O-rgnlsj7GhA0_R85XEfawXItHr-dHBQCxVWbH7StGQ,3627
|
|
49
|
+
avos_cli/services/reply_output_service.py,sha256=lX8uoTibeb-wFM8c8j7Ljtkci1AYPoTVm9aYkNHMnc8,12493
|
|
50
|
+
avos_cli/services/sanitization_service.py,sha256=cf6cEmVjFjknUnj8abhtOEMXuz1kV4lWfkV-yzqgHas,8076
|
|
51
|
+
avos_cli/utils/__init__.py,sha256=x4kYHuJHZy0Vo_DQqoWqw5tyuU2A2P42P7UMkT161co,43
|
|
52
|
+
avos_cli/utils/dotenv_load.py,sha256=KaFYyk6tNgtnifUR70UNvrhamjgY442Z1upwIpEM7JE,1388
|
|
53
|
+
avos_cli/utils/hashing.py,sha256=9Zy0bysKtd7wqdnaen5XcOtysA5kD-GI4Oojyn5sg3w,579
|
|
54
|
+
avos_cli/utils/logger.py,sha256=8gkrQgozyPu4XQVf2G0i1UMMxUDGv5IIML0Gl1Mz4rM,2359
|
|
55
|
+
avos_cli/utils/output.py,sha256=YkOjU-3C_bpA06a74OrIJOlK00T9PD5bBRBd314ylCI,6875
|
|
56
|
+
avos_cli/utils/sanitization_diagnostics.py,sha256=WCIqK9sm1CitHTPJWhsUdVPU_qFTkTEpO4x_d-G0qqI,3043
|
|
57
|
+
avos_cli/utils/time_helpers.py,sha256=G99p8Dtze6e3HmaMB5MOItZouSdtpBOpD3ukLU0ybSg,1566
|
|
58
|
+
git_aware_coding_agent-1.0.0.dist-info/METADATA,sha256=ocUPbaBvUwPiw4NhhXVSd0CP3fwjuScvpIn3E2H3dbw,13556
|
|
59
|
+
git_aware_coding_agent-1.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
60
|
+
git_aware_coding_agent-1.0.0.dist-info/entry_points.txt,sha256=72kvPau0F_11a3hR6KOZTgcg32TgvuUPZaI-tZpTi5o,47
|
|
61
|
+
git_aware_coding_agent-1.0.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
62
|
+
git_aware_coding_agent-1.0.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|