simplicio-loop 1.0.4__tar.gz → 3.4.0__tar.gz

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.
Files changed (51) hide show
  1. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/MANIFEST.in +3 -3
  2. {simplicio_loop-1.0.4/simplicio_loop.egg-info → simplicio_loop-3.4.0}/PKG-INFO +93 -77
  3. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/PYPI.md +52 -52
  4. simplicio_loop-3.4.0/README.md +537 -0
  5. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/pyproject.toml +59 -45
  6. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/setup.cfg +4 -4
  7. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/__init__.py +8 -8
  8. simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/README.md +99 -0
  9. simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/action_gate.py +275 -0
  10. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/hooks.claude.json +21 -20
  11. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/hooks.json +12 -12
  12. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/learn_stop.py +38 -38
  13. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/loop_capture.py +67 -67
  14. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/loop_stop.py +205 -205
  15. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/orient_clamp.py +167 -167
  16. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/orient_rewrite.py +96 -96
  17. simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/simplicio_dashboard.py +870 -0
  18. simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/simplicio_watch.py +83 -0
  19. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-compress/SKILL.md +86 -86
  20. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-learn/SKILL.md +70 -70
  21. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-loop/SKILL.md +334 -182
  22. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-orient/SKILL.md +188 -188
  23. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-review/SKILL.md +94 -94
  24. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/SKILL.md +263 -219
  25. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/agentsview-adapter.md +210 -0
  26. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/azure-devops-adapter.md +69 -69
  27. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/extension-points.md +75 -74
  28. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/headroom-adapter.md +246 -0
  29. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/lmcache-adapter.md +632 -0
  30. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/orchestration.md +140 -131
  31. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/quality-safety-delivery.md +121 -121
  32. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/standing-loop-247.md +117 -117
  33. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/token-capture.md +124 -0
  34. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/token-economy.md +231 -175
  35. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/understand-anything-adapter.md +591 -0
  36. simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/video-evidence.md +111 -0
  37. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/web-evidence.md +93 -93
  38. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/cli.py +76 -76
  39. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0/simplicio_loop.egg-info}/PKG-INFO +93 -77
  40. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/SOURCES.txt +15 -1
  41. simplicio_loop-3.4.0/simplicio_loop.egg-info/requires.txt +22 -0
  42. simplicio_loop-3.4.0/tests/test_action_gate.py +108 -0
  43. simplicio_loop-3.4.0/tests/test_loop_e2e.py +110 -0
  44. simplicio_loop-3.4.0/tests/test_worker_selftests.py +48 -0
  45. simplicio_loop-3.4.0/tests/test_worker_smoke.py +64 -0
  46. simplicio_loop-1.0.4/README.md +0 -502
  47. simplicio_loop-1.0.4/simplicio_loop.egg-info/requires.txt +0 -2
  48. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/LICENSE +0 -0
  49. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/dependency_links.txt +0 -0
  50. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/entry_points.txt +0 -0
  51. {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/top_level.txt +0 -0
@@ -1,3 +1,3 @@
1
- include PYPI.md
2
- include LICENSE
3
- recursive-include simplicio_loop/_bundle *
1
+ include PYPI.md
2
+ include LICENSE
3
+ recursive-include simplicio_loop/_bundle *
@@ -1,77 +1,93 @@
1
- Metadata-Version: 2.4
2
- Name: simplicio-loop
3
- Version: 1.0.4
4
- Summary: The Universal Looping AI Orchestrator — a runtime-agnostic super-plugin (6 skills) that drains any queue of work end-to-end on any LLM/runtime.
5
- Author-email: Wesley Simplicio <wesleybob4@gmail.com>
6
- License: MIT
7
- Project-URL: Homepage, https://github.com/wesleysimplicio/simplicio-loop
8
- Project-URL: Repository, https://github.com/wesleysimplicio/simplicio-loop
9
- Project-URL: Issues, https://github.com/wesleysimplicio/simplicio-loop/issues
10
- Keywords: ai,agent,orchestrator,llm,claude,cursor,automation,ralph-loop,token-economy,cli
11
- Classifier: Development Status :: 4 - Beta
12
- Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Programming Language :: Python :: 3 :: Only
16
- Classifier: Topic :: Software Development :: Build Tools
17
- Classifier: Topic :: Utilities
18
- Classifier: Operating System :: OS Independent
19
- Requires-Python: >=3.8
20
- Description-Content-Type: text/markdown
21
- License-File: LICENSE
22
- Requires-Dist: simplicio-mapper
23
- Requires-Dist: simplicio-cli
24
- Dynamic: license-file
25
-
26
- # simplicio-loop
27
-
28
- **The Universal Looping AI Orchestrator** — a runtime-agnostic **super-plugin** (6 skills) that
29
- drains any queue of work end-to-end on **any LLM / runtime**:
30
- `discover implement verify → merge → close → watch 24/7`, behind safety gates and a hard cost
31
- kill-switch, at up to **96% fewer tokens**. Not a chatbot. A worker.
32
-
33
- ![simplicio-loop](https://raw.githubusercontent.com/wesleysimplicio/simplicio-loop/main/assets/simplicio-loop-hero.jpg)
34
-
35
- ## Install
36
-
37
- ```bash
38
- pip install simplicio-loop
39
- ```
40
-
41
- Then drop the skills + hooks into your project (or globally):
42
-
43
- ```bash
44
- simplicio-loop install # into ./.claude of the current project
45
- simplicio-loop install --global # into ~/.claude (all projects)
46
- ```
47
-
48
- Now invoke it from your agent runtime (Claude Code, Cursor, Codex, Gemini, …):
49
-
50
- ```
51
- /simplicio-tasks finish all the open issues
52
- ```
53
-
54
- ## What you get — 6 skills
55
-
56
- | Skill | What it does |
57
- |---|---|
58
- | `simplicio-tasks` | The orchestrator loop: discover → implement → verify → merge → close → watch 24/7. |
59
- | `simplicio-loop` | Hardened Ralph loop — re-feed the goal until an evidence-gated `<promise>` or a cap. |
60
- | `simplicio-orient` | Terminal-first token economy output-reduction catalog, tee-cache, signatures-read. |
61
- | `simplicio-review` | Adversarial review — parallel subagents on distinct rubrics, deduped into one verdict. |
62
- | `simplicio-compress` | Output + memory compression, byte-preserving identifiers. |
63
- | `simplicio-learn` | Retrospective — durable, deduped lessons written back to memory. |
64
-
65
- ## Highlights
66
-
67
- - **11 runtimes, one protocol** — Claude Code, Codex, VS Code/Copilot, Cursor, Antigravity, Kiro,
68
- OpenCode, Gemini, Aider, Hermes, OpenClaw.
69
- - **Evidence-gated completion** — never a false "done"; exits only on a verified `<promise>` or a
70
- cap / budget / STOP.
71
- - **Token economy** — honest "answer concisely" baseline; savings credited only on verified-correct
72
- outcomes.
73
-
74
- Requires Python 3.8+. The skills, hooks, and installer are pure cross-platform Python.
75
-
76
- MITpart of the [Simplicio](https://github.com/wesleysimplicio) ecosystem.
77
- Full docs: <https://github.com/wesleysimplicio/simplicio-loop>
1
+ Metadata-Version: 2.4
2
+ Name: simplicio-loop
3
+ Version: 3.4.0
4
+ Summary: The Universal Looping AI Orchestrator — a runtime-agnostic super-plugin (6 skills) that drains any queue of work end-to-end on any LLM/runtime.
5
+ Author-email: Wesley Simplicio <wesleybob4@gmail.com>
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/wesleysimplicio/simplicio-loop
8
+ Project-URL: Repository, https://github.com/wesleysimplicio/simplicio-loop
9
+ Project-URL: Issues, https://github.com/wesleysimplicio/simplicio-loop/issues
10
+ Keywords: ai,agent,orchestrator,llm,claude,cursor,automation,ralph-loop,token-economy,cli
11
+ Classifier: Development Status :: 4 - Beta
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Classifier: Topic :: Utilities
18
+ Classifier: Operating System :: OS Independent
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: simplicio-mapper
23
+ Requires-Dist: simplicio-cli
24
+ Provides-Extra: dev
25
+ Requires-Dist: pytest>=7; extra == "dev"
26
+ Provides-Extra: ml
27
+ Requires-Dist: model2vec>=0.3; extra == "ml"
28
+ Requires-Dist: numpy>=1.21; extra == "ml"
29
+ Provides-Extra: onnx
30
+ Requires-Dist: onnxruntime>=1.16; extra == "onnx"
31
+ Requires-Dist: huggingface_hub>=0.20; extra == "onnx"
32
+ Requires-Dist: tokenizers>=0.15; extra == "onnx"
33
+ Requires-Dist: numpy>=1.21; extra == "onnx"
34
+ Requires-Dist: pillow>=9; extra == "onnx"
35
+ Provides-Extra: kompress
36
+ Requires-Dist: onnxruntime>=1.16; extra == "kompress"
37
+ Requires-Dist: huggingface_hub>=0.20; extra == "kompress"
38
+ Requires-Dist: tokenizers>=0.15; extra == "kompress"
39
+ Requires-Dist: numpy>=1.21; extra == "kompress"
40
+ Dynamic: license-file
41
+
42
+ # simplicio-loop
43
+
44
+ **The Universal Looping AI Orchestrator** a runtime-agnostic **super-plugin** (6 skills) that
45
+ drains any queue of work end-to-end on **any LLM / runtime**:
46
+ `discover → implement → verify → merge → close → watch 24/7`, behind safety gates and a hard cost
47
+ kill-switch, at up to **96% fewer tokens**. Not a chatbot. A worker.
48
+
49
+ ![simplicio-loop](https://raw.githubusercontent.com/wesleysimplicio/simplicio-loop/main/assets/simplicio-loop-hero.jpg)
50
+
51
+ ## Install
52
+
53
+ ```bash
54
+ pip install simplicio-loop
55
+ ```
56
+
57
+ Then drop the skills + hooks into your project (or globally):
58
+
59
+ ```bash
60
+ simplicio-loop install # into ./.claude of the current project
61
+ simplicio-loop install --global # into ~/.claude (all projects)
62
+ ```
63
+
64
+ Now invoke it from your agent runtime (Claude Code, Cursor, Codex, Gemini, …):
65
+
66
+ ```
67
+ /simplicio-tasks finish all the open issues
68
+ ```
69
+
70
+ ## What you get — 6 skills
71
+
72
+ | Skill | What it does |
73
+ |---|---|
74
+ | `simplicio-tasks` | The orchestrator loop: discover implement verify → merge → close → watch 24/7. |
75
+ | `simplicio-loop` | Hardened Ralph loop — re-feed the goal until an evidence-gated `<promise>` or a cap. |
76
+ | `simplicio-orient` | Terminal-first token economy output-reduction catalog, tee-cache, signatures-read. |
77
+ | `simplicio-review` | Adversarial review — parallel subagents on distinct rubrics, deduped into one verdict. |
78
+ | `simplicio-compress` | Output + memory compression, byte-preserving identifiers. |
79
+ | `simplicio-learn` | Retrospective — durable, deduped lessons written back to memory. |
80
+
81
+ ## Highlights
82
+
83
+ - **11 runtimes, one protocol** — Claude Code, Codex, VS Code/Copilot, Cursor, Antigravity, Kiro,
84
+ OpenCode, Gemini, Aider, Hermes, OpenClaw.
85
+ - **Evidence-gated completion** — never a false "done"; exits only on a verified `<promise>` or a
86
+ cap / budget / STOP.
87
+ - **Token economy** — honest "answer concisely" baseline; savings credited only on verified-correct
88
+ outcomes.
89
+
90
+ Requires Python 3.8+. The skills, hooks, and installer are pure cross-platform Python.
91
+
92
+ MIT — part of the [Simplicio](https://github.com/wesleysimplicio) ecosystem.
93
+ Full docs: <https://github.com/wesleysimplicio/simplicio-loop>
@@ -1,52 +1,52 @@
1
- # simplicio-loop
2
-
3
- **The Universal Looping AI Orchestrator** — a runtime-agnostic **super-plugin** (6 skills) that
4
- drains any queue of work end-to-end on **any LLM / runtime**:
5
- `discover → implement → verify → merge → close → watch 24/7`, behind safety gates and a hard cost
6
- kill-switch, at up to **96% fewer tokens**. Not a chatbot. A worker.
7
-
8
- ![simplicio-loop](https://raw.githubusercontent.com/wesleysimplicio/simplicio-loop/main/assets/simplicio-loop-hero.jpg)
9
-
10
- ## Install
11
-
12
- ```bash
13
- pip install simplicio-loop
14
- ```
15
-
16
- Then drop the skills + hooks into your project (or globally):
17
-
18
- ```bash
19
- simplicio-loop install # into ./.claude of the current project
20
- simplicio-loop install --global # into ~/.claude (all projects)
21
- ```
22
-
23
- Now invoke it from your agent runtime (Claude Code, Cursor, Codex, Gemini, …):
24
-
25
- ```
26
- /simplicio-tasks finish all the open issues
27
- ```
28
-
29
- ## What you get — 6 skills
30
-
31
- | Skill | What it does |
32
- |---|---|
33
- | `simplicio-tasks` | The orchestrator loop: discover → implement → verify → merge → close → watch 24/7. |
34
- | `simplicio-loop` | Hardened Ralph loop — re-feed the goal until an evidence-gated `<promise>` or a cap. |
35
- | `simplicio-orient` | Terminal-first token economy — output-reduction catalog, tee-cache, signatures-read. |
36
- | `simplicio-review` | Adversarial review — parallel subagents on distinct rubrics, deduped into one verdict. |
37
- | `simplicio-compress` | Output + memory compression, byte-preserving identifiers. |
38
- | `simplicio-learn` | Retrospective — durable, deduped lessons written back to memory. |
39
-
40
- ## Highlights
41
-
42
- - **11 runtimes, one protocol** — Claude Code, Codex, VS Code/Copilot, Cursor, Antigravity, Kiro,
43
- OpenCode, Gemini, Aider, Hermes, OpenClaw.
44
- - **Evidence-gated completion** — never a false "done"; exits only on a verified `<promise>` or a
45
- cap / budget / STOP.
46
- - **Token economy** — honest "answer concisely" baseline; savings credited only on verified-correct
47
- outcomes.
48
-
49
- Requires Python 3.8+. The skills, hooks, and installer are pure cross-platform Python.
50
-
51
- MIT — part of the [Simplicio](https://github.com/wesleysimplicio) ecosystem.
52
- Full docs: <https://github.com/wesleysimplicio/simplicio-loop>
1
+ # simplicio-loop
2
+
3
+ **The Universal Looping AI Orchestrator** — a runtime-agnostic **super-plugin** (6 skills) that
4
+ drains any queue of work end-to-end on **any LLM / runtime**:
5
+ `discover → implement → verify → merge → close → watch 24/7`, behind safety gates and a hard cost
6
+ kill-switch, at up to **96% fewer tokens**. Not a chatbot. A worker.
7
+
8
+ ![simplicio-loop](https://raw.githubusercontent.com/wesleysimplicio/simplicio-loop/main/assets/simplicio-loop-hero.jpg)
9
+
10
+ ## Install
11
+
12
+ ```bash
13
+ pip install simplicio-loop
14
+ ```
15
+
16
+ Then drop the skills + hooks into your project (or globally):
17
+
18
+ ```bash
19
+ simplicio-loop install # into ./.claude of the current project
20
+ simplicio-loop install --global # into ~/.claude (all projects)
21
+ ```
22
+
23
+ Now invoke it from your agent runtime (Claude Code, Cursor, Codex, Gemini, …):
24
+
25
+ ```
26
+ /simplicio-tasks finish all the open issues
27
+ ```
28
+
29
+ ## What you get — 6 skills
30
+
31
+ | Skill | What it does |
32
+ |---|---|
33
+ | `simplicio-tasks` | The orchestrator loop: discover → implement → verify → merge → close → watch 24/7. |
34
+ | `simplicio-loop` | Hardened Ralph loop — re-feed the goal until an evidence-gated `<promise>` or a cap. |
35
+ | `simplicio-orient` | Terminal-first token economy — output-reduction catalog, tee-cache, signatures-read. |
36
+ | `simplicio-review` | Adversarial review — parallel subagents on distinct rubrics, deduped into one verdict. |
37
+ | `simplicio-compress` | Output + memory compression, byte-preserving identifiers. |
38
+ | `simplicio-learn` | Retrospective — durable, deduped lessons written back to memory. |
39
+
40
+ ## Highlights
41
+
42
+ - **11 runtimes, one protocol** — Claude Code, Codex, VS Code/Copilot, Cursor, Antigravity, Kiro,
43
+ OpenCode, Gemini, Aider, Hermes, OpenClaw.
44
+ - **Evidence-gated completion** — never a false "done"; exits only on a verified `<promise>` or a
45
+ cap / budget / STOP.
46
+ - **Token economy** — honest "answer concisely" baseline; savings credited only on verified-correct
47
+ outcomes.
48
+
49
+ Requires Python 3.8+. The skills, hooks, and installer are pure cross-platform Python.
50
+
51
+ MIT — part of the [Simplicio](https://github.com/wesleysimplicio) ecosystem.
52
+ Full docs: <https://github.com/wesleysimplicio/simplicio-loop>