Conversation
Turn AutoControl from "run a script" into "run a robot": a SQLite-backed work queue with per-item status, dedup-by-reference, atomic claim, and REFramework-style retry semantics (application errors retry to max_retries; business errors never retry). Resumable after a crash and parallelizable across performers — the production-RPA pattern that the DAG/scheduler didn't cover. Wired through facade (WorkQueue / WorkItem / BusinessError), AC_queue_add/next/complete/fail/stats executor commands, ac_queue_* MCP tools, Script Builder "Queue" entries, headless tests, and a v10 reference page (EN + Traditional Chinese) + README sections.
Add transactional work queue (dispatcher/performer)
Add synthetic test data, MCP registry manifest, risk-based test selection
Add native-UI element repository and flow step debugger
Add skill library, prompt-injection guardrail, A2A agent card
… missing-file test
Add headless Office I/O (Excel/Word/PowerPoint) as optional [office] extra
…-batch Add agent episodic memory store and deterministic-run harness
Add WCAG 2.2 SC-tagged accessibility rule engine
Add reactive screen observer (appear/vanish/change)
Add CycloneDX SBOM generator and duration-aware suite sharding
…-batch Add data-quality helpers: row schema validation, field extraction, masking
Add i18n/l10n testing: pseudo-localization, text-overflow, catalog diff
…batch Add flow checkpoint/resume (durable execution) and py.typed marker
…batch Add idempotency-key store with stored responses
work_queue dedups only new/in_progress references — once an item completes the same reference enqueues again and redelivered webhooks reprocess. Add DedupWindow: a sliding-window inbox whose check_and_mark returns True the first time an id is seen within ttl_s and False for a duplicate, converting at-least-once delivery to exactly-once-in-window. Injectable clock, bounded size. Wired through facade, executor (AC_dedup_check, named-instance registry), MCP, and the Script Builder with a headless test batch and EN/Zh docs.
…-batch Add time-windowed message deduplication (exactly-once inbox)
Nothing tracked per-stream monotonic sequence numbers to detect missing, out-of-order, or duplicate messages. Add SequenceTracker.observe which classifies each sequence number as ok / duplicate / gap (recording the missing numbers) / reorder (late arrivals fill gaps), plus gaps and high_water per stream. Complements dedup_window. Wired through facade, executor (AC_sequence_observe, named-instance registry), MCP, and the Script Builder with a headless test batch and EN/Zh docs.
…-batch Add per-stream sequence-gap detection
http_conditional uses ETag for read caching (If-None-Match / 304) but never for write concurrency. Add a local compare-and-swap VersionedStore: put only when expected_version matches (VersionConflict on a stale write), monotonic version, guarded delete, JSON persistence, plus if_match_header / check_if_match to bridge to HTTP If-Match. Wired through facade, executor (AC_cas_put / AC_cas_get, named-instance registry), MCP, and the Script Builder with a headless test batch and EN/Zh docs.
…atch Add optimistic-concurrency versioned store (CAS / If-Match)
Add transactional outbox for durable at-least-once event delivery
…tion-batch Add locale-aware string collation with multi-level sort keys
…batch Add confusable / homoglyph detection for Unicode spoofing
…batch Add readability scoring (Flesch, Flesch-Kincaid, Fog, SMOG, ARI)
…atch Add bidirectional-text QA with Trojan-source detection
…batch Add locale-aware list formatting (CLDR-style and/or/unit)
…at-batch Add ICU-lite MessageFormat (plural/select/selectordinal)
…log-batch Add GNU gettext catalog I/O (parse .po, compile/read .mo)
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 6482 |
| Duplication | 7 |
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
# Conflicts: # uv.lock
- Replace float == 0.0 distance check in motion with an epsilon guard (S1244) - Use pytest.approx for the dominant_fraction assertion (S1244) - Guard list indexing in the humanized-motion test (S6466) - Mark the seeded non-crypto RNG calls in flow_control/typing NOSONAR (S2245)
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Summary
Promotes the accumulated
devwork tomain. This is a large release spanning many research-driven expansion rounds; every change landed ondevvia its own CI-green PR (SonarCloud + Codacy + GitHub Actions).Highlights since
main:utils/modules, each shipped through all five layers (headless core → package facade__all__→AC_*executor command → MCP tool → Script BuilderCommandSpec) with a headless unit test and EN/Zh docs.docs/source/{Eng,Zh}/doc/new_features/), with matching "What's new" sections in all three READMEs.Verification
dev: 3088 passed, 15 skipped.import je_auto_controlimports no PySide6).Notes
test_folder_sync, presence-cursor sync) — re-run on spurious failure.