Skip to content

Commit 047bfa4

Browse files
feat: auto-commit from pyqual run 2026-04-02T21:45:58+02:00
1 parent 9a1a416 commit 047bfa4

File tree

3 files changed

+23
-13
lines changed

3 files changed

+23
-13
lines changed

project/analysis.toon.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ HEALTH[0]: ok
66
REFACTOR[0]: none needed
77

88
PIPELINES[245]:
9-
[1] Src [delete_user]: delete_user
9+
[1] Src [main]: main → weighted_choice
1010
PURITY: 100% pure
11-
[2] Src [calculate_total]: calculate_total
11+
[2] Src [main]: main → setup_logger → set_default_logger
1212
PURITY: 100% pure
13-
[3] Src [main]: main → setup_logger → set_default_logger
13+
[3] Src [delete_user]: delete_user
1414
PURITY: 100% pure
15-
[4] Src [setup_logger]: setup_logger → set_default_logger
15+
[4] Src [calculate_total]: calculate_total
1616
PURITY: 100% pure
17-
[5] Src [fetch_user]: fetch_user
17+
[5] Src [main]: main → getEnv
1818
PURITY: 100% pure
1919

2020
LAYERS:

project/context.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@
8080
- **Classes**: 1
8181
- **File**: `llm.py`
8282

83-
### nfo.context
84-
- **Functions**: 8
85-
- **File**: `context.py`
86-
8783
### nfo.models
8884
- **Functions**: 8
8985
- **Classes**: 1
9086
- **File**: `models.py`
9187

88+
### nfo.context
89+
- **Functions**: 8
90+
- **File**: `context.py`
91+
9292
### nfo.logger
9393
- **Functions**: 7
9494
- **Classes**: 1
@@ -460,14 +460,14 @@ Key functions that process and transform data:
460460
> Run a processing loop.
461461
- **Output to**: cli.command, click.option, range, click.echo, click.echo
462462

463-
### examples.async-usage.main.process_batch
464-
> Process items concurrently.
465-
- **Output to**: nfo.decorators._log_call.log_call, len, asyncio.sleep, len
466-
467463
### demo.app.process_order
468464
> Simulate order processing.
469465
- **Output to**: nfo.decorators._log_call.log_call, time.sleep, random.uniform
470466

467+
### examples.async-usage.main.process_batch
468+
> Process items concurrently.
469+
- **Output to**: nfo.decorators._log_call.log_call, len, asyncio.sleep, len
470+
471471
### nfo.llm.LLMSink._process
472472
> Analyze entry and enrich it.
473473
- **Output to**: nfo.llm.scan_entry_for_injection, self._analyze, self.delegate.write, entry.level.upper, self.on_analysis

pyqual.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,16 @@ pipeline:
4747
run: python3 -m pytest -q
4848
when: always
4949

50+
- name: deploy
51+
run: |
52+
if [ -n "$(git status --porcelain)" ]; then
53+
git add -A
54+
git commit -m "feat: auto-commit from pyqual run $(date -Iseconds)" || true
55+
git push origin main || true
56+
fi
57+
when: all_gates_passed
58+
optional: true
59+
5060
loop:
5161
max_iterations: 3
5262
on_fail: report

0 commit comments

Comments
 (0)