create-vivary 0.1.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.
- create_vivary-0.1.0/LICENSE +21 -0
- create_vivary-0.1.0/PKG-INFO +70 -0
- create_vivary-0.1.0/README.md +29 -0
- create_vivary-0.1.0/create_vivary.egg-info/PKG-INFO +70 -0
- create_vivary-0.1.0/create_vivary.egg-info/SOURCES.txt +25 -0
- create_vivary-0.1.0/create_vivary.egg-info/dependency_links.txt +1 -0
- create_vivary-0.1.0/create_vivary.egg-info/entry_points.txt +2 -0
- create_vivary-0.1.0/create_vivary.egg-info/requires.txt +1 -0
- create_vivary-0.1.0/create_vivary.egg-info/top_level.txt +2 -0
- create_vivary-0.1.0/create_vivary.py +614 -0
- create_vivary-0.1.0/create_vivary_assets/STRATO.md +122 -0
- create_vivary-0.1.0/create_vivary_assets/__init__.py +1 -0
- create_vivary-0.1.0/create_vivary_assets/loops-skill/SKILL.md +99 -0
- create_vivary-0.1.0/create_vivary_assets/strato-skill/SKILL.md +68 -0
- create_vivary-0.1.0/create_vivary_assets/strato-skill/references/bootstrap.md +78 -0
- create_vivary-0.1.0/create_vivary_assets/strato-skill/references/heartbeat.md +49 -0
- create_vivary-0.1.0/create_vivary_assets/strato-skill/references/self-improvement.md +62 -0
- create_vivary-0.1.0/create_vivary_assets/templates/AGENTS.md +43 -0
- create_vivary-0.1.0/create_vivary_assets/templates/MEMORY.template.md +19 -0
- create_vivary-0.1.0/create_vivary_assets/templates/SOUL.md +24 -0
- create_vivary-0.1.0/create_vivary_assets/templates/STATE.template.md +21 -0
- create_vivary-0.1.0/create_vivary_assets/templates/USER.template.md +22 -0
- create_vivary-0.1.0/create_vivary_assets/templates/bug-risk-playbook.md +12 -0
- create_vivary-0.1.0/pyproject.toml +38 -0
- create_vivary-0.1.0/setup.cfg +4 -0
- create_vivary-0.1.0/tests/test_assets_parity.py +54 -0
- create_vivary-0.1.0/tests/test_create_vivary.py +219 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Jeff Kazzee
|
|
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.
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: create-vivary
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Scaffold a complete Vivary agent workspace — the create-t3-app for agent-native workspaces.
|
|
5
|
+
Author: Jeff Kazzee
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Jeff Kazzee
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/Jeff-Kazzee/vivary
|
|
29
|
+
Project-URL: Repository, https://github.com/Jeff-Kazzee/vivary
|
|
30
|
+
Keywords: agents,workspace,scaffold,knowledge-graph,create-app
|
|
31
|
+
Classifier: Development Status :: 4 - Beta
|
|
32
|
+
Classifier: Intended Audience :: Developers
|
|
33
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
34
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
35
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
36
|
+
Requires-Python: >=3.11
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: vivary-tropo>=0.1.0
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# create-vivary
|
|
43
|
+
|
|
44
|
+
Scaffold a complete Vivary agent workspace: tropo config, strato workspace files,
|
|
45
|
+
runtime skills, private-memory boundaries, and a starter typed graph.
|
|
46
|
+
|
|
47
|
+
## Local use
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
python packages/create-vivary/create_vivary.py init sandboxes/coding-demo --preset coding
|
|
51
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo
|
|
52
|
+
python packages/tropo/tropo.py check --root sandboxes/coding-demo
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Presets share the same agent OS shell, then seed a different starter graph:
|
|
56
|
+
|
|
57
|
+
| Preset | Module | First slice | Verification |
|
|
58
|
+
|---|---|---|---|
|
|
59
|
+
| `coding` | `codebase` | `local-ci-baseline` | `local-checks` |
|
|
60
|
+
| `second-brain` | `knowledge-base` | `capture-routine` | `retrieval-smoke` |
|
|
61
|
+
| `writing` | `manuscript-system` | `draft-review-loop` | `editorial-review` |
|
|
62
|
+
|
|
63
|
+
The command is local-only and zero-dependency. It does not install packages, initialize
|
|
64
|
+
git, push, publish, or enable hooks.
|
|
65
|
+
|
|
66
|
+
`doctor` validates the generated shell, privacy ignores, and typed graph:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo --json
|
|
70
|
+
```
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# create-vivary
|
|
2
|
+
|
|
3
|
+
Scaffold a complete Vivary agent workspace: tropo config, strato workspace files,
|
|
4
|
+
runtime skills, private-memory boundaries, and a starter typed graph.
|
|
5
|
+
|
|
6
|
+
## Local use
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
python packages/create-vivary/create_vivary.py init sandboxes/coding-demo --preset coding
|
|
10
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo
|
|
11
|
+
python packages/tropo/tropo.py check --root sandboxes/coding-demo
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Presets share the same agent OS shell, then seed a different starter graph:
|
|
15
|
+
|
|
16
|
+
| Preset | Module | First slice | Verification |
|
|
17
|
+
|---|---|---|---|
|
|
18
|
+
| `coding` | `codebase` | `local-ci-baseline` | `local-checks` |
|
|
19
|
+
| `second-brain` | `knowledge-base` | `capture-routine` | `retrieval-smoke` |
|
|
20
|
+
| `writing` | `manuscript-system` | `draft-review-loop` | `editorial-review` |
|
|
21
|
+
|
|
22
|
+
The command is local-only and zero-dependency. It does not install packages, initialize
|
|
23
|
+
git, push, publish, or enable hooks.
|
|
24
|
+
|
|
25
|
+
`doctor` validates the generated shell, privacy ignores, and typed graph:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo --json
|
|
29
|
+
```
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: create-vivary
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Scaffold a complete Vivary agent workspace — the create-t3-app for agent-native workspaces.
|
|
5
|
+
Author: Jeff Kazzee
|
|
6
|
+
License: MIT License
|
|
7
|
+
|
|
8
|
+
Copyright (c) 2026 Jeff Kazzee
|
|
9
|
+
|
|
10
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
+
in the Software without restriction, including without limitation the rights
|
|
13
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
+
furnished to do so, subject to the following conditions:
|
|
16
|
+
|
|
17
|
+
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
copies or substantial portions of the Software.
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
|
27
|
+
|
|
28
|
+
Project-URL: Homepage, https://github.com/Jeff-Kazzee/vivary
|
|
29
|
+
Project-URL: Repository, https://github.com/Jeff-Kazzee/vivary
|
|
30
|
+
Keywords: agents,workspace,scaffold,knowledge-graph,create-app
|
|
31
|
+
Classifier: Development Status :: 4 - Beta
|
|
32
|
+
Classifier: Intended Audience :: Developers
|
|
33
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
34
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
35
|
+
Classifier: Topic :: Software Development :: Code Generators
|
|
36
|
+
Requires-Python: >=3.11
|
|
37
|
+
Description-Content-Type: text/markdown
|
|
38
|
+
License-File: LICENSE
|
|
39
|
+
Requires-Dist: vivary-tropo>=0.1.0
|
|
40
|
+
Dynamic: license-file
|
|
41
|
+
|
|
42
|
+
# create-vivary
|
|
43
|
+
|
|
44
|
+
Scaffold a complete Vivary agent workspace: tropo config, strato workspace files,
|
|
45
|
+
runtime skills, private-memory boundaries, and a starter typed graph.
|
|
46
|
+
|
|
47
|
+
## Local use
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
python packages/create-vivary/create_vivary.py init sandboxes/coding-demo --preset coding
|
|
51
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo
|
|
52
|
+
python packages/tropo/tropo.py check --root sandboxes/coding-demo
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Presets share the same agent OS shell, then seed a different starter graph:
|
|
56
|
+
|
|
57
|
+
| Preset | Module | First slice | Verification |
|
|
58
|
+
|---|---|---|---|
|
|
59
|
+
| `coding` | `codebase` | `local-ci-baseline` | `local-checks` |
|
|
60
|
+
| `second-brain` | `knowledge-base` | `capture-routine` | `retrieval-smoke` |
|
|
61
|
+
| `writing` | `manuscript-system` | `draft-review-loop` | `editorial-review` |
|
|
62
|
+
|
|
63
|
+
The command is local-only and zero-dependency. It does not install packages, initialize
|
|
64
|
+
git, push, publish, or enable hooks.
|
|
65
|
+
|
|
66
|
+
`doctor` validates the generated shell, privacy ignores, and typed graph:
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
python packages/create-vivary/create_vivary.py doctor sandboxes/coding-demo --json
|
|
70
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
create_vivary.py
|
|
4
|
+
pyproject.toml
|
|
5
|
+
create_vivary.egg-info/PKG-INFO
|
|
6
|
+
create_vivary.egg-info/SOURCES.txt
|
|
7
|
+
create_vivary.egg-info/dependency_links.txt
|
|
8
|
+
create_vivary.egg-info/entry_points.txt
|
|
9
|
+
create_vivary.egg-info/requires.txt
|
|
10
|
+
create_vivary.egg-info/top_level.txt
|
|
11
|
+
create_vivary_assets/STRATO.md
|
|
12
|
+
create_vivary_assets/__init__.py
|
|
13
|
+
create_vivary_assets/loops-skill/SKILL.md
|
|
14
|
+
create_vivary_assets/strato-skill/SKILL.md
|
|
15
|
+
create_vivary_assets/strato-skill/references/bootstrap.md
|
|
16
|
+
create_vivary_assets/strato-skill/references/heartbeat.md
|
|
17
|
+
create_vivary_assets/strato-skill/references/self-improvement.md
|
|
18
|
+
create_vivary_assets/templates/AGENTS.md
|
|
19
|
+
create_vivary_assets/templates/MEMORY.template.md
|
|
20
|
+
create_vivary_assets/templates/SOUL.md
|
|
21
|
+
create_vivary_assets/templates/STATE.template.md
|
|
22
|
+
create_vivary_assets/templates/USER.template.md
|
|
23
|
+
create_vivary_assets/templates/bug-risk-playbook.md
|
|
24
|
+
tests/test_assets_parity.py
|
|
25
|
+
tests/test_create_vivary.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
vivary-tropo>=0.1.0
|