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.
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/MANIFEST.in +3 -3
- {simplicio_loop-1.0.4/simplicio_loop.egg-info → simplicio_loop-3.4.0}/PKG-INFO +93 -77
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/PYPI.md +52 -52
- simplicio_loop-3.4.0/README.md +537 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/pyproject.toml +59 -45
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/setup.cfg +4 -4
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/__init__.py +8 -8
- simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/README.md +99 -0
- simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/action_gate.py +275 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/hooks.claude.json +21 -20
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/hooks.json +12 -12
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/learn_stop.py +38 -38
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/loop_capture.py +67 -67
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/loop_stop.py +205 -205
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/orient_clamp.py +167 -167
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/hooks/orient_rewrite.py +96 -96
- simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/simplicio_dashboard.py +870 -0
- simplicio_loop-3.4.0/simplicio_loop/_bundle/hooks/simplicio_watch.py +83 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-compress/SKILL.md +86 -86
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-learn/SKILL.md +70 -70
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-loop/SKILL.md +334 -182
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-orient/SKILL.md +188 -188
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-review/SKILL.md +94 -94
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/SKILL.md +263 -219
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/agentsview-adapter.md +210 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/azure-devops-adapter.md +69 -69
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/extension-points.md +75 -74
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/headroom-adapter.md +246 -0
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/lmcache-adapter.md +632 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/orchestration.md +140 -131
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/quality-safety-delivery.md +121 -121
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/standing-loop-247.md +117 -117
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/token-capture.md +124 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/token-economy.md +231 -175
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/understand-anything-adapter.md +591 -0
- simplicio_loop-3.4.0/simplicio_loop/_bundle/skills/simplicio-tasks/references/video-evidence.md +111 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/_bundle/skills/simplicio-tasks/references/web-evidence.md +93 -93
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop/cli.py +76 -76
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0/simplicio_loop.egg-info}/PKG-INFO +93 -77
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/SOURCES.txt +15 -1
- simplicio_loop-3.4.0/simplicio_loop.egg-info/requires.txt +22 -0
- simplicio_loop-3.4.0/tests/test_action_gate.py +108 -0
- simplicio_loop-3.4.0/tests/test_loop_e2e.py +110 -0
- simplicio_loop-3.4.0/tests/test_worker_selftests.py +48 -0
- simplicio_loop-3.4.0/tests/test_worker_smoke.py +64 -0
- simplicio_loop-1.0.4/README.md +0 -502
- simplicio_loop-1.0.4/simplicio_loop.egg-info/requires.txt +0 -2
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/LICENSE +0 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/dependency_links.txt +0 -0
- {simplicio_loop-1.0.4 → simplicio_loop-3.4.0}/simplicio_loop.egg-info/entry_points.txt +0 -0
- {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:
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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
|
+

|
|
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
|
-

|
|
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
|
+

|
|
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>
|