autonym-sdk 0.0.1__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.
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: autonym-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Autonym: a user-owned personal context record, shared with assistants and services at a disclosure level you choose. Pre-release placeholder.
|
|
5
|
+
Project-URL: Homepage, https://autonym.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/autonymproject/autonym-py
|
|
7
|
+
License-Expression: Apache-2.0
|
|
8
|
+
Keywords: autonym,consent,json-schema,mcp,personal-context
|
|
9
|
+
Requires-Python: >=3.9
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# autonym
|
|
13
|
+
|
|
14
|
+
Python package for Autonym, a user-owned personal context record: a person's
|
|
15
|
+
preferences and needs, shared with AI assistants and conventional services at
|
|
16
|
+
a disclosure level they choose, with consent, provenance and revocation built in.
|
|
17
|
+
|
|
18
|
+
This is a pre-release placeholder that reserves the name for the Autonym
|
|
19
|
+
reference implementation. The API and the record schema will change before v1.
|
|
20
|
+
See https://autonym.dev
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# autonym
|
|
2
|
+
|
|
3
|
+
Python package for Autonym, a user-owned personal context record: a person's
|
|
4
|
+
preferences and needs, shared with AI assistants and conventional services at
|
|
5
|
+
a disclosure level they choose, with consent, provenance and revocation built in.
|
|
6
|
+
|
|
7
|
+
This is a pre-release placeholder that reserves the name for the Autonym
|
|
8
|
+
reference implementation. The API and the record schema will change before v1.
|
|
9
|
+
See https://autonym.dev
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "autonym-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Autonym: a user-owned personal context record, shared with assistants and services at a disclosure level you choose. Pre-release placeholder."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
keywords = ["autonym", "personal-context", "consent", "mcp", "json-schema"]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://autonym.dev"
|
|
16
|
+
Repository = "https://github.com/autonymproject/autonym-py"
|
|
17
|
+
|
|
18
|
+
[tool.hatch.build.targets.wheel]
|
|
19
|
+
packages = ["src/autonym"]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
|
+
"$id": "https://autonym.dev/schema/record.schema.json",
|
|
4
|
+
"title": "Autonym personal context record",
|
|
5
|
+
"description": "Pre-release placeholder for the Autonym record schema.",
|
|
6
|
+
"type": "object",
|
|
7
|
+
"required": ["autonym", "handle", "entries"],
|
|
8
|
+
"properties": {
|
|
9
|
+
"autonym": { "type": "string", "const": "0.0", "description": "Schema version" },
|
|
10
|
+
"handle": { "type": "string", "pattern": "^autonym:[A-Za-z0-9._-]+@[A-Za-z0-9.-]+$" },
|
|
11
|
+
"entries": {
|
|
12
|
+
"type": "array",
|
|
13
|
+
"items": {
|
|
14
|
+
"type": "object",
|
|
15
|
+
"required": ["domain", "level", "lane", "value"],
|
|
16
|
+
"properties": {
|
|
17
|
+
"domain": { "type": "string" },
|
|
18
|
+
"level": { "type": "string", "enum": ["L0", "L1", "L2", "L3"] },
|
|
19
|
+
"lane": { "type": "string", "enum": ["declared", "observed"] },
|
|
20
|
+
"value": {},
|
|
21
|
+
"recorded_at": { "type": "string", "format": "date-time" }
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|