orimem-sensor 0.0.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 The OriMem Authors
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,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: orimem-sensor
3
+ Version: 0.0.0
4
+ Summary: OriMem sensor CLI: capture-side evidence collection (0.0.0 name-reservation release).
5
+ Author: The OriMem Authors
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/orimem/orimem
8
+ Project-URL: Repository, https://github.com/orimem/orimem
9
+ Keywords: orimem,orimem-sensor,sensor,cli,evidence,capture
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Dynamic: license-file
19
+
20
+ # orimem-sensor
21
+
22
+ `orimem-sensor` is the capture-side command-line tool of the OriMem project —
23
+ the sensor that runs where your life happens, collects evidence, and uploads
24
+ it to an OriMem service, where it becomes structured, traceable memory.
25
+
26
+ OriMem in one sentence: capture clients provide raw evidence, the server
27
+ parses it into structured understanding, and the platform decides how
28
+ memories are formed, associated, recalled, corrected, and forgotten — with
29
+ every conclusion traceable back to its original evidence.
30
+
31
+ ## Status of this release
32
+
33
+ **This 0.0.0 release is a name reservation.** It holds the `orimem-sensor`
34
+ distribution name on PyPI while the project is under active development.
35
+ Real releases will follow under this same name.
36
+
37
+ The package is minimal but genuine: it imports cleanly (module name
38
+ `orimem_sensor`), has no side effects, and exposes the package version:
39
+
40
+ ```python
41
+ import orimem_sensor
42
+
43
+ orimem_sensor.__version__ # '0.0.0'
44
+ ```
45
+
46
+ ## Planned CLI
47
+
48
+ The `orimem-sensor` command will provide:
49
+
50
+ - `init` — initialize the sensor and its local configuration
51
+ - `note` — capture a note as evidence
52
+ - `upload` — sync captured evidence to an OriMem service
53
+ - `devices` — list and manage registered devices
54
+ - `status` — show sensor, sync, and service status
55
+ - `quarantine` — inspect and resolve quarantined items
56
+
57
+ ## Repository
58
+
59
+ https://github.com/orimem/orimem (private during development; this link will
60
+ resolve once the repository is opened)
61
+
62
+ ## License
63
+
64
+ MIT (Personal Core) — see [LICENSE](./LICENSE).
65
+ Copyright (c) The OriMem Authors.
@@ -0,0 +1,46 @@
1
+ # orimem-sensor
2
+
3
+ `orimem-sensor` is the capture-side command-line tool of the OriMem project —
4
+ the sensor that runs where your life happens, collects evidence, and uploads
5
+ it to an OriMem service, where it becomes structured, traceable memory.
6
+
7
+ OriMem in one sentence: capture clients provide raw evidence, the server
8
+ parses it into structured understanding, and the platform decides how
9
+ memories are formed, associated, recalled, corrected, and forgotten — with
10
+ every conclusion traceable back to its original evidence.
11
+
12
+ ## Status of this release
13
+
14
+ **This 0.0.0 release is a name reservation.** It holds the `orimem-sensor`
15
+ distribution name on PyPI while the project is under active development.
16
+ Real releases will follow under this same name.
17
+
18
+ The package is minimal but genuine: it imports cleanly (module name
19
+ `orimem_sensor`), has no side effects, and exposes the package version:
20
+
21
+ ```python
22
+ import orimem_sensor
23
+
24
+ orimem_sensor.__version__ # '0.0.0'
25
+ ```
26
+
27
+ ## Planned CLI
28
+
29
+ The `orimem-sensor` command will provide:
30
+
31
+ - `init` — initialize the sensor and its local configuration
32
+ - `note` — capture a note as evidence
33
+ - `upload` — sync captured evidence to an OriMem service
34
+ - `devices` — list and manage registered devices
35
+ - `status` — show sensor, sync, and service status
36
+ - `quarantine` — inspect and resolve quarantined items
37
+
38
+ ## Repository
39
+
40
+ https://github.com/orimem/orimem (private during development; this link will
41
+ resolve once the repository is opened)
42
+
43
+ ## License
44
+
45
+ MIT (Personal Core) — see [LICENSE](./LICENSE).
46
+ Copyright (c) The OriMem Authors.
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=77"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "orimem-sensor"
7
+ version = "0.0.0"
8
+ description = "OriMem sensor CLI: capture-side evidence collection (0.0.0 name-reservation release)."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "The OriMem Authors" },
14
+ ]
15
+ keywords = ["orimem", "orimem-sensor", "sensor", "cli", "evidence", "capture"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3 :: Only",
21
+ "Topic :: Software Development :: Libraries :: Python Modules",
22
+ ]
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/orimem/orimem"
26
+ Repository = "https://github.com/orimem/orimem"
27
+
28
+ [tool.setuptools.packages.find]
29
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,19 @@
1
+ """orimem-sensor: the capture-side sensor CLI of the OriMem project.
2
+
3
+ OriMem turns raw evidence from capture clients into structured, traceable
4
+ memory: the server parses evidence into understanding, and the platform
5
+ decides how memories are formed, associated, recalled, corrected, and
6
+ forgotten — every conclusion traceable to its original evidence.
7
+
8
+ This distribution currently reserves the ``orimem-sensor`` name on PyPI
9
+ (version 0.0.0). Importing this package has no side effects. Subsequent
10
+ releases will provide the ``orimem-sensor`` command with subcommands:
11
+ init, note, upload, devices, status, quarantine.
12
+
13
+ Repository: https://github.com/orimem/orimem
14
+ License: MIT (Personal Core), Copyright (c) The OriMem Authors.
15
+ """
16
+
17
+ __version__ = "0.0.0"
18
+
19
+ __all__ = ["__version__"]
@@ -0,0 +1,65 @@
1
+ Metadata-Version: 2.4
2
+ Name: orimem-sensor
3
+ Version: 0.0.0
4
+ Summary: OriMem sensor CLI: capture-side evidence collection (0.0.0 name-reservation release).
5
+ Author: The OriMem Authors
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/orimem/orimem
8
+ Project-URL: Repository, https://github.com/orimem/orimem
9
+ Keywords: orimem,orimem-sensor,sensor,cli,evidence,capture
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
15
+ Requires-Python: >=3.10
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Dynamic: license-file
19
+
20
+ # orimem-sensor
21
+
22
+ `orimem-sensor` is the capture-side command-line tool of the OriMem project —
23
+ the sensor that runs where your life happens, collects evidence, and uploads
24
+ it to an OriMem service, where it becomes structured, traceable memory.
25
+
26
+ OriMem in one sentence: capture clients provide raw evidence, the server
27
+ parses it into structured understanding, and the platform decides how
28
+ memories are formed, associated, recalled, corrected, and forgotten — with
29
+ every conclusion traceable back to its original evidence.
30
+
31
+ ## Status of this release
32
+
33
+ **This 0.0.0 release is a name reservation.** It holds the `orimem-sensor`
34
+ distribution name on PyPI while the project is under active development.
35
+ Real releases will follow under this same name.
36
+
37
+ The package is minimal but genuine: it imports cleanly (module name
38
+ `orimem_sensor`), has no side effects, and exposes the package version:
39
+
40
+ ```python
41
+ import orimem_sensor
42
+
43
+ orimem_sensor.__version__ # '0.0.0'
44
+ ```
45
+
46
+ ## Planned CLI
47
+
48
+ The `orimem-sensor` command will provide:
49
+
50
+ - `init` — initialize the sensor and its local configuration
51
+ - `note` — capture a note as evidence
52
+ - `upload` — sync captured evidence to an OriMem service
53
+ - `devices` — list and manage registered devices
54
+ - `status` — show sensor, sync, and service status
55
+ - `quarantine` — inspect and resolve quarantined items
56
+
57
+ ## Repository
58
+
59
+ https://github.com/orimem/orimem (private during development; this link will
60
+ resolve once the repository is opened)
61
+
62
+ ## License
63
+
64
+ MIT (Personal Core) — see [LICENSE](./LICENSE).
65
+ Copyright (c) The OriMem Authors.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/orimem_sensor/__init__.py
5
+ src/orimem_sensor.egg-info/PKG-INFO
6
+ src/orimem_sensor.egg-info/SOURCES.txt
7
+ src/orimem_sensor.egg-info/dependency_links.txt
8
+ src/orimem_sensor.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ orimem_sensor