openkos 0.1.2__tar.gz → 0.2.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.
Files changed (58) hide show
  1. {openkos-0.1.2 → openkos-0.2.0}/PKG-INFO +4 -3
  2. {openkos-0.1.2 → openkos-0.2.0}/README.md +3 -2
  3. {openkos-0.1.2 → openkos-0.2.0}/pyproject.toml +1 -1
  4. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/cli/main.py +1507 -178
  5. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/config.py +243 -0
  6. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/graph/analysis.py +4 -2
  7. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/graph/sqlite_graph.py +43 -15
  8. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/lint.py +78 -5
  9. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/llm/ollama.py +38 -5
  10. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/model/okf.py +19 -6
  11. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/model/relations.py +8 -2
  12. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/adjudication.py +8 -0
  13. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/contradiction.py +42 -12
  14. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/edge_typing.py +70 -30
  15. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/vcs/git.py +343 -0
  16. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/__init__.py +0 -0
  17. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/__init__.py +0 -0
  18. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/bundle.py +0 -0
  19. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/index.py +0 -0
  20. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/links.py +0 -0
  21. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/log.py +0 -0
  22. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/merge.py +0 -0
  23. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/provenance.py +0 -0
  24. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/references.py +0 -0
  25. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/bundle/relations.py +0 -0
  26. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/cli/__init__.py +0 -0
  27. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/cli/observability.py +0 -0
  28. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/extraction/__init__.py +0 -0
  29. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/extraction/concept.py +0 -0
  30. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/fsio.py +0 -0
  31. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/graph/__init__.py +0 -0
  32. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/graph/base.py +0 -0
  33. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/lifecycle.py +0 -0
  34. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/llm/__init__.py +0 -0
  35. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/llm/base.py +0 -0
  36. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/llm/parsing.py +0 -0
  37. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/model/__init__.py +0 -0
  38. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/model/types.py +0 -0
  39. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/py.typed +0 -0
  40. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/__init__.py +0 -0
  41. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/candidates.py +0 -0
  42. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/normalize.py +0 -0
  43. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/similarity.py +0 -0
  44. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/resolution/volatility_typing.py +0 -0
  45. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/retrieval/__init__.py +0 -0
  46. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/retrieval/answer.py +0 -0
  47. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/retrieval/fusion.py +0 -0
  48. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/retrieval/graph_retrieve.py +0 -0
  49. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/retrieval/pool.py +0 -0
  50. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/sensitivity.py +0 -0
  51. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/state/__init__.py +0 -0
  52. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/state/derived.py +0 -0
  53. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/state/fts.py +0 -0
  54. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/state/reindex.py +0 -0
  55. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/state/vectorstore.py +0 -0
  56. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/templates/agents.md.template +0 -0
  57. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/templates/openkos.yaml.template +0 -0
  58. {openkos-0.1.2 → openkos-0.2.0}/src/openkos/vcs/__init__.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: openkos
3
- Version: 0.1.2
3
+ Version: 0.2.0
4
4
  Summary: Local-first engine that turns your scattered text into a living, portable knowledge base in the Open Knowledge Format (OKF)
5
5
  Keywords: okf,open-knowledge-format,knowledge-base,knowledge-graph,local-first,rag,llm,second-brain,cli
6
6
  Author: Jason
@@ -37,7 +37,7 @@ Description-Content-Type: text/markdown
37
37
 
38
38
  OpenKOS turns your scattered text into a living, portable knowledge base your AI agents can actually use — compiled once, kept current, and stored as plain [Open Knowledge Format](https://github.com/GoogleCloudPlatform/knowledge-catalog/tree/main/okf) files so it is never locked to any app, model, or vendor.
39
39
 
40
- > **Project status: alpha.** OpenKOS runs: the Compiler and the Graph-and-Memory arcs (MVP 1 and MVP 2) are complete — 18 CLI verbs, hybrid retrieval, and the full forget/purge lifecycle all ship today. The API may still change between releases, but OpenKOS is published and installable now — `pip install openkos`, see [Getting started](#getting-started). Early contributors and feedback are welcome — see [Contributing](#contributing).
40
+ > **Project status: alpha.** OpenKOS runs: the Compiler and the Graph-and-Memory arcs (MVP 1 and MVP 2) are complete — 19 CLI verbs, hybrid retrieval, and the full forget/purge lifecycle all ship today. The API may still change between releases, but OpenKOS is published and installable now — `pip install openkos`, see [Getting started](#getting-started). Early contributors and feedback are welcome — see [Contributing](#contributing).
41
41
 
42
42
  ---
43
43
 
@@ -79,7 +79,7 @@ openkos query "what did I conclude about how to live well?"
79
79
  openkos lint
80
80
  ```
81
81
 
82
- *(The full command set — 18 verbs spanning ingest, cited query, the typed graph, entity resolution, and the forget/purge lifecycle — is in [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md).)*
82
+ *(The full command set — 19 verbs spanning ingest, cited query, the typed graph, entity resolution, volatility tiers (`suggest-volatility`/`set-volatility`), and the forget/purge lifecycle — is in [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md).)*
83
83
 
84
84
  ## Getting started
85
85
 
@@ -165,6 +165,7 @@ Beyond that: a desktop app, graph visualization, richer memory, and federation
165
165
  - [`docs/glossary.md`](https://github.com/jasonssdev/openkos/blob/main/docs/glossary.md) — definitions of the core vocabulary
166
166
  - [`docs/faq.md`](https://github.com/jasonssdev/openkos/blob/main/docs/faq.md) — frequently asked questions
167
167
  - [`docs/user-journey.md`](https://github.com/jasonssdev/openkos/blob/main/docs/user-journey.md) — the end-to-end user experience
168
+ - [`docs/testing.md`](https://github.com/jasonssdev/openkos/blob/main/docs/testing.md) — manual end-to-end testing walkthrough (all 19 commands)
168
169
  - [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md) — the command-line reference
169
170
  - [`docs/brand.md`](https://github.com/jasonssdev/openkos/blob/main/docs/brand.md) — visual identity: isotype, wordmark, palette, typography
170
171
  - [`docs/adr/`](https://github.com/jasonssdev/openkos/blob/main/docs/adr/) — architecture decision records (the log begins with the first code-time decision)
@@ -4,7 +4,7 @@
4
4
 
5
5
  OpenKOS turns your scattered text into a living, portable knowledge base your AI agents can actually use — compiled once, kept current, and stored as plain [Open Knowledge Format](https://github.com/GoogleCloudPlatform/knowledge-catalog/tree/main/okf) files so it is never locked to any app, model, or vendor.
6
6
 
7
- > **Project status: alpha.** OpenKOS runs: the Compiler and the Graph-and-Memory arcs (MVP 1 and MVP 2) are complete — 18 CLI verbs, hybrid retrieval, and the full forget/purge lifecycle all ship today. The API may still change between releases, but OpenKOS is published and installable now — `pip install openkos`, see [Getting started](#getting-started). Early contributors and feedback are welcome — see [Contributing](#contributing).
7
+ > **Project status: alpha.** OpenKOS runs: the Compiler and the Graph-and-Memory arcs (MVP 1 and MVP 2) are complete — 19 CLI verbs, hybrid retrieval, and the full forget/purge lifecycle all ship today. The API may still change between releases, but OpenKOS is published and installable now — `pip install openkos`, see [Getting started](#getting-started). Early contributors and feedback are welcome — see [Contributing](#contributing).
8
8
 
9
9
  ---
10
10
 
@@ -46,7 +46,7 @@ openkos query "what did I conclude about how to live well?"
46
46
  openkos lint
47
47
  ```
48
48
 
49
- *(The full command set — 18 verbs spanning ingest, cited query, the typed graph, entity resolution, and the forget/purge lifecycle — is in [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md).)*
49
+ *(The full command set — 19 verbs spanning ingest, cited query, the typed graph, entity resolution, volatility tiers (`suggest-volatility`/`set-volatility`), and the forget/purge lifecycle — is in [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md).)*
50
50
 
51
51
  ## Getting started
52
52
 
@@ -132,6 +132,7 @@ Beyond that: a desktop app, graph visualization, richer memory, and federation
132
132
  - [`docs/glossary.md`](https://github.com/jasonssdev/openkos/blob/main/docs/glossary.md) — definitions of the core vocabulary
133
133
  - [`docs/faq.md`](https://github.com/jasonssdev/openkos/blob/main/docs/faq.md) — frequently asked questions
134
134
  - [`docs/user-journey.md`](https://github.com/jasonssdev/openkos/blob/main/docs/user-journey.md) — the end-to-end user experience
135
+ - [`docs/testing.md`](https://github.com/jasonssdev/openkos/blob/main/docs/testing.md) — manual end-to-end testing walkthrough (all 19 commands)
135
136
  - [`docs/cli.md`](https://github.com/jasonssdev/openkos/blob/main/docs/cli.md) — the command-line reference
136
137
  - [`docs/brand.md`](https://github.com/jasonssdev/openkos/blob/main/docs/brand.md) — visual identity: isotype, wordmark, palette, typography
137
138
  - [`docs/adr/`](https://github.com/jasonssdev/openkos/blob/main/docs/adr/) — architecture decision records (the log begins with the first code-time decision)
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "openkos"
3
- version = "0.1.2"
3
+ version = "0.2.0"
4
4
  description = "Local-first engine that turns your scattered text into a living, portable knowledge base in the Open Knowledge Format (OKF)"
5
5
  readme = "README.md"
6
6
  license = "Apache-2.0"