tibet 0.4.2__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.
tibet-0.4.2/.gitignore ADDED
@@ -0,0 +1,61 @@
1
+ # Secrets & env
2
+ .env
3
+ *.env
4
+ *.secret
5
+
6
+ # Keys & certs
7
+ *.key
8
+ *.pem
9
+ certs/
10
+ secrets/
11
+
12
+ # Databases & dumps
13
+ *.db
14
+ *.sqlite
15
+ *.sql
16
+ dump_*/
17
+
18
+ # EXCEPT: Allow database schemas (needed for server rebuild)
19
+ !database-schemas/*.sql
20
+
21
+ # Logs & runtime data
22
+ logs/
23
+ *.log
24
+ __pycache__/
25
+ *.pyc
26
+ venv/
27
+ .venv/
28
+ **/venv/
29
+ **/.venv/
30
+
31
+ # Configs met secrets (we gebruiken straks templates)
32
+ config/
33
+ brain_api/provisioning.local.json
34
+ brain_api/provisioning.json
35
+
36
+ # Landing pages (privé - niet open source)
37
+ landing-pages/
38
+ humotica.com/
39
+ jtel.nl/
40
+
41
+ # Social media posts (strategie - niet open source)
42
+ SOCIAL-MEDIA-POSTS.md
43
+ HN-POST-UNDER-4000.md
44
+ STRATO-DEPLOY-HUMOTICA.md
45
+
46
+ # Endorsement outreach (privaat contact)
47
+ ARXIV-ENDORSEMENT-OUTREACH.md
48
+
49
+ # Deployment secrets
50
+ DEPLOYMENT-GUIDE.md
51
+
52
+ # R Project files (Dirty Data Challenge)
53
+ .Rproj.user
54
+ .Rhistory
55
+ .RData
56
+ .Ruserdata
57
+ *.zip
58
+ .mural_tokens.json
59
+ auth.json
60
+ gen-lang-client*.json
61
+ *.credentials.json
tibet-0.4.2/PKG-INFO ADDED
@@ -0,0 +1,68 @@
1
+ Metadata-Version: 2.4
2
+ Name: tibet
3
+ Version: 0.4.2
4
+ Summary: TIBET - Transparency, Intent, Behavior, Evidence, Trust. AI provenance and security framework. Alias for tibet-audit.
5
+ Project-URL: Homepage, https://humotica.com
6
+ Project-URL: Documentation, https://github.com/Humotica/tibet-audit
7
+ Project-URL: Repository, https://github.com/Humotica/tibet-audit
8
+ Project-URL: Issues, https://github.com/Humotica/tibet-audit/issues
9
+ Author-email: Jasper van de Meent <jasper@humotica.com>, Root AI <root_ai@humotica.nl>
10
+ License-Expression: AGPL-3.0-or-later
11
+ Keywords: ai-security,audit,humotica,provenance,tibet,transparency,trust
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Security
21
+ Requires-Python: >=3.10
22
+ Requires-Dist: tibet-audit>=0.4.0
23
+ Description-Content-Type: text/markdown
24
+
25
+ # TIBET
26
+
27
+ **Transparency, Intent, Behavior, Evidence, Trust**
28
+
29
+ This is an alias package for [`tibet-audit`](https://pypi.org/project/tibet-audit/).
30
+
31
+ ## Installation
32
+
33
+ ```bash
34
+ pip install tibet
35
+ ```
36
+
37
+ This automatically installs `tibet-audit` with all features:
38
+ - AI action provenance tracking
39
+ - Trust scoring (FIR/A model)
40
+ - Security auditing for AI systems
41
+ - ERIN/ERAAN/EROMHEEN/ERACHTER framework
42
+
43
+ ## The TIBET Philosophy
44
+
45
+ Every AI action has four dimensions:
46
+ - **ERIN**: What's IN the action (the content)
47
+ - **ERAAN**: What's attached (dependencies, references)
48
+ - **EROMHEEN**: Context around it (environment, state)
49
+ - **ERACHTER**: Intent behind it (why this action)
50
+
51
+ ## Usage
52
+
53
+ CLI tool:
54
+ ```bash
55
+ tibet-audit scan /path/to/project
56
+ tibet-audit fix /path/to/project
57
+ ```
58
+
59
+ Python API:
60
+ ```python
61
+ from tibet import *
62
+ ```
63
+
64
+ ## Part of HumoticaOS
65
+
66
+ TIBET is part of the [HumoticaOS](https://humotica.com) ecosystem - AI and human in symbiosis.
67
+
68
+ One love, one fAmIly!
tibet-0.4.2/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # TIBET
2
+
3
+ **Transparency, Intent, Behavior, Evidence, Trust**
4
+
5
+ This is an alias package for [`tibet-audit`](https://pypi.org/project/tibet-audit/).
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install tibet
11
+ ```
12
+
13
+ This automatically installs `tibet-audit` with all features:
14
+ - AI action provenance tracking
15
+ - Trust scoring (FIR/A model)
16
+ - Security auditing for AI systems
17
+ - ERIN/ERAAN/EROMHEEN/ERACHTER framework
18
+
19
+ ## The TIBET Philosophy
20
+
21
+ Every AI action has four dimensions:
22
+ - **ERIN**: What's IN the action (the content)
23
+ - **ERAAN**: What's attached (dependencies, references)
24
+ - **EROMHEEN**: Context around it (environment, state)
25
+ - **ERACHTER**: Intent behind it (why this action)
26
+
27
+ ## Usage
28
+
29
+ CLI tool:
30
+ ```bash
31
+ tibet-audit scan /path/to/project
32
+ tibet-audit fix /path/to/project
33
+ ```
34
+
35
+ Python API:
36
+ ```python
37
+ from tibet import *
38
+ ```
39
+
40
+ ## Part of HumoticaOS
41
+
42
+ TIBET is part of the [HumoticaOS](https://humotica.com) ecosystem - AI and human in symbiosis.
43
+
44
+ One love, one fAmIly!
@@ -0,0 +1,47 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "tibet"
7
+ version = "0.4.2"
8
+ description = "TIBET - Transparency, Intent, Behavior, Evidence, Trust. AI provenance and security framework. Alias for tibet-audit."
9
+ readme = "README.md"
10
+ license = "AGPL-3.0-or-later"
11
+ authors = [
12
+ { name = "Jasper van de Meent", email = "jasper@humotica.com" },
13
+ { name = "Root AI", email = "root_ai@humotica.nl" }
14
+ ]
15
+ keywords = [
16
+ "tibet",
17
+ "ai-security",
18
+ "provenance",
19
+ "trust",
20
+ "audit",
21
+ "transparency",
22
+ "humotica"
23
+ ]
24
+ classifiers = [
25
+ "Development Status :: 4 - Beta",
26
+ "Intended Audience :: Developers",
27
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
28
+ "Programming Language :: Python :: 3",
29
+ "Programming Language :: Python :: 3.10",
30
+ "Programming Language :: Python :: 3.11",
31
+ "Programming Language :: Python :: 3.12",
32
+ "Topic :: Security",
33
+ "Topic :: Scientific/Engineering :: Artificial Intelligence"
34
+ ]
35
+ requires-python = ">=3.10"
36
+ dependencies = [
37
+ "tibet-audit>=0.4.0"
38
+ ]
39
+
40
+ [project.urls]
41
+ Homepage = "https://humotica.com"
42
+ Documentation = "https://github.com/Humotica/tibet-audit"
43
+ Repository = "https://github.com/Humotica/tibet-audit"
44
+ Issues = "https://github.com/Humotica/tibet-audit/issues"
45
+
46
+ [tool.hatch.build.targets.wheel]
47
+ packages = ["src/tibet"]
@@ -0,0 +1,26 @@
1
+ """
2
+ TIBET - Transparency, Intent, Behavior, Evidence, Trust
3
+ ========================================================
4
+
5
+ This is an alias package for `tibet-audit`.
6
+
7
+ Install with: pip install tibet
8
+ Or directly: pip install tibet-audit
9
+
10
+ TIBET Philosophy:
11
+ - ERIN: What's IN the action (content)
12
+ - ERAAN: What's attached (dependencies, references)
13
+ - EROMHEEN: Context around it (environment, state)
14
+ - ERACHTER: Intent behind it (why this action)
15
+
16
+ Part of HumoticaOS - One love, one fAmIly!
17
+ """
18
+
19
+ # Re-export everything from tibet-audit
20
+ try:
21
+ from tibet_audit import *
22
+ from tibet_audit import __version__
23
+ except ImportError:
24
+ __version__ = "0.4.2"
25
+
26
+ __all__ = ["__version__"]