sae-ecosystems-sdk 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.
- sae_ecosystems_sdk-0.1.0/PKG-INFO +23 -0
- sae_ecosystems_sdk-0.1.0/README.md +13 -0
- sae_ecosystems_sdk-0.1.0/pyproject.toml +18 -0
- sae_ecosystems_sdk-0.1.0/setup.cfg +4 -0
- sae_ecosystems_sdk-0.1.0/src/sae_ecosystems_sdk/__init__.py +24 -0
- sae_ecosystems_sdk-0.1.0/src/sae_ecosystems_sdk.egg-info/PKG-INFO +23 -0
- sae_ecosystems_sdk-0.1.0/src/sae_ecosystems_sdk.egg-info/SOURCES.txt +7 -0
- sae_ecosystems_sdk-0.1.0/src/sae_ecosystems_sdk.egg-info/dependency_links.txt +1 -0
- sae_ecosystems_sdk-0.1.0/src/sae_ecosystems_sdk.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sae-ecosystems-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Ecosystems & Agents SDK for the Sovereign Autonomy Engine.
|
|
5
|
+
Author: Kevin Price
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://example.com/sae-ecosystems-sdk
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# sae-ecosystems-sdk
|
|
12
|
+
|
|
13
|
+
Ecosystems & Agents SDK for the Sovereign Autonomy Engine.
|
|
14
|
+
|
|
15
|
+
Defines the internal life layer:
|
|
16
|
+
- Species
|
|
17
|
+
- Agents
|
|
18
|
+
- Behaviors
|
|
19
|
+
- Rituals
|
|
20
|
+
- Ecosystem dynamics
|
|
21
|
+
- Emergent interactions
|
|
22
|
+
|
|
23
|
+
This is the living substrate of Wave 2.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# sae-ecosystems-sdk
|
|
2
|
+
|
|
3
|
+
Ecosystems & Agents SDK for the Sovereign Autonomy Engine.
|
|
4
|
+
|
|
5
|
+
Defines the internal life layer:
|
|
6
|
+
- Species
|
|
7
|
+
- Agents
|
|
8
|
+
- Behaviors
|
|
9
|
+
- Rituals
|
|
10
|
+
- Ecosystem dynamics
|
|
11
|
+
- Emergent interactions
|
|
12
|
+
|
|
13
|
+
This is the living substrate of Wave 2.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "sae-ecosystems-sdk"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Ecosystems & Agents SDK for the Sovereign Autonomy Engine."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Proprietary" }
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Kevin Price" }
|
|
14
|
+
]
|
|
15
|
+
dependencies = []
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://example.com/sae-ecosystems-sdk"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""
|
|
2
|
+
sae-ecosystems-sdk
|
|
3
|
+
|
|
4
|
+
Internal ecosystems and agent primitives for the Sovereign Autonomy Engine.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
class Species:
|
|
8
|
+
def __init__(self, name: str, traits: dict):
|
|
9
|
+
self.name = name
|
|
10
|
+
self.traits = traits
|
|
11
|
+
|
|
12
|
+
def spawn(self, agent_name: str):
|
|
13
|
+
return Agent(agent_name, self.traits.copy())
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class Agent:
|
|
17
|
+
def __init__(self, name: str, traits: dict):
|
|
18
|
+
self.name = name
|
|
19
|
+
self.traits = traits
|
|
20
|
+
self.state = {}
|
|
21
|
+
|
|
22
|
+
def act(self):
|
|
23
|
+
# Placeholder agent behavior
|
|
24
|
+
return f"{self.name} performs an action."
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: sae-ecosystems-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Ecosystems & Agents SDK for the Sovereign Autonomy Engine.
|
|
5
|
+
Author: Kevin Price
|
|
6
|
+
License: Proprietary
|
|
7
|
+
Project-URL: Homepage, https://example.com/sae-ecosystems-sdk
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# sae-ecosystems-sdk
|
|
12
|
+
|
|
13
|
+
Ecosystems & Agents SDK for the Sovereign Autonomy Engine.
|
|
14
|
+
|
|
15
|
+
Defines the internal life layer:
|
|
16
|
+
- Species
|
|
17
|
+
- Agents
|
|
18
|
+
- Behaviors
|
|
19
|
+
- Rituals
|
|
20
|
+
- Ecosystem dynamics
|
|
21
|
+
- Emergent interactions
|
|
22
|
+
|
|
23
|
+
This is the living substrate of Wave 2.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
sae_ecosystems_sdk
|