verel 0.0.1__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.
verel/__init__.py ADDED
@@ -0,0 +1,8 @@
1
+ """Verel — the agent framework where nothing is "done" until a grader returns a
2
+ verdict, checked by real senses including eyes (AgentVision), and only verified
3
+ work compounds into shared memory.
4
+
5
+ Status: name reserved; framework under active design. See docs/VEREL_DESIGN.md.
6
+ """
7
+
8
+ __version__ = "0.0.1"
@@ -0,0 +1,49 @@
1
+ Metadata-Version: 2.4
2
+ Name: verel
3
+ Version: 0.0.1
4
+ Summary: The agent framework where nothing is done until a grader returns a verdict — verification + grounded perception (AgentVision eyes). Reserved; under active design.
5
+ Project-URL: Homepage, https://github.com/amitpatole/verel
6
+ Project-URL: Source, https://github.com/amitpatole/verel
7
+ Author-email: Amit Patole <amit.patole@gmail.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Keywords: agents,agentvision,ai-agents,evals,llm,memory,orchestration,verification
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Software Development :: Libraries
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # Verel
20
+
21
+ > The agent framework where nothing is **"done"** until a grader returns a verdict —
22
+ > checked by real senses including **eyes** ([AgentVision](../Eyes_For_AI_Agents)) —
23
+ > and only verified work is allowed to compound into the fleet's shared memory.
24
+
25
+ ## Documents
26
+
27
+ - **[docs/VEREL_DESIGN.md](docs/VEREL_DESIGN.md)** — definitive architecture & build plan
28
+ (positioning, the moat, the five organs, the Brain/memory architecture, the Fleet,
29
+ the Verdict bus, AgentVision-as-eyes, claimable inventions, risks, phased roadmap,
30
+ open decisions).
31
+ - **[docs/CRITIC_CONVERGENCE.md](docs/CRITIC_CONVERGENCE.md)** — the adversarial critic-loop
32
+ score record that the design was iterated against until diminishing returns.
33
+
34
+ ## The five organs
35
+
36
+ ```
37
+ Brain (memory) ─┐
38
+ Fleet (agents managing agents) ─┤
39
+ Verdict bus (eval-driven everything) ─┼─► nothing merges on a self-asserted "done"
40
+ Senses (AgentVision eyes + logs/tests/metrics) ─┤
41
+ Tool-smith (agent-built tooling) ─┘
42
+ ```
43
+
44
+ ## Smallest first useful thing (Phase 0, ~2–4 weeks)
45
+
46
+ Unified `Report`/`Percept` schema + `gate()` + scrubbed-fingerprint `progressed()`,
47
+ wired to the AgentVision `sight` adapter over MCP, driving a single-worker ultracode loop
48
+ on one real repo's UI. **Done = Verel fixes a real UI overflow and the loop terminates on
49
+ a `pass` verdict it computed itself.** No memory, no fleet, no consolidation yet.
@@ -0,0 +1,5 @@
1
+ verel/__init__.py,sha256=dpC_dWrJrVe76GO6e1pwZbBuIfE-Y3V05HWdsslyNyM,305
2
+ verel-0.0.1.dist-info/METADATA,sha256=KVdbiFDASBZ4Tj1JqJWzfknOzcEzL-mpnHb9jLqE1b4,2239
3
+ verel-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ verel-0.0.1.dist-info/licenses/LICENSE,sha256=A4TY-ttk2s63kZ6AlrYn1eHi1R-mCUdQFiRNEuqIUSw,1075
5
+ verel-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 AMIT SAMSON PATOLE
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.