textus 0.55.1 → 0.56.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +175 -2768
- data/README.md +17 -18
- data/lib/textus/artifact.rb +8 -0
- data/lib/textus/errors.rb +2 -39
- data/lib/textus/human.rb +7 -0
- data/lib/textus/infra/adapters/concurrency_adapter.rb +15 -0
- data/lib/textus/infra/clock.rb +7 -0
- data/lib/textus/infra/database.rb +127 -0
- data/lib/textus/infra/file_system.rb +54 -0
- data/lib/textus/infra/locks.rb +50 -0
- data/lib/textus/infra/port/clock.rb +18 -0
- data/lib/textus/infra/port/publisher.rb +71 -0
- data/lib/textus/infra/port/sentinel.rb +25 -0
- data/lib/textus/infra/port/sentinel_store.rb +93 -0
- data/lib/textus/infra/store/audit_log.rb +42 -0
- data/lib/textus/infra/store/base.rb +25 -0
- data/lib/textus/infra/store/cursor_store.rb +27 -0
- data/lib/textus/infra/store/entry_index.rb +31 -0
- data/lib/textus/infra/store/envelope/meta.rb +63 -0
- data/lib/textus/infra/store/file_store.rb +23 -0
- data/lib/textus/infra/store/index/builder.rb +28 -0
- data/lib/textus/infra/store/index/lookup.rb +23 -0
- data/lib/textus/infra/store/link_store.rb +43 -0
- data/lib/textus/infra/store/workflow_queue.rb +54 -0
- data/lib/textus/infra/store.rb +29 -0
- data/lib/textus/ingest.rb +8 -0
- data/lib/textus/lanes/artifact/cache.rb +35 -0
- data/lib/textus/lanes/artifact/handlers.rb +29 -0
- data/lib/textus/lanes/artifact/lifecycle.rb +23 -0
- data/lib/textus/lanes/artifact/verbs.rb +18 -0
- data/lib/textus/lanes/ingest/dedup.rb +17 -0
- data/lib/textus/lanes/ingest/entry_types/asset.rb +45 -0
- data/lib/textus/lanes/ingest/entry_types/link.rb +16 -0
- data/lib/textus/lanes/ingest/entry_types/text.rb +17 -0
- data/lib/textus/lanes/ingest/entry_types.rb +25 -0
- data/lib/textus/lanes/ingest/handlers.rb +54 -0
- data/lib/textus/lanes/ingest/index_rebuilder.rb +13 -0
- data/lib/textus/lanes/ingest/key_builder.rb +33 -0
- data/lib/textus/lanes/ingest/resolver.rb +21 -0
- data/lib/textus/lanes/knowledge/freeform.rb +15 -0
- data/lib/textus/lanes/knowledge/handlers.rb +53 -0
- data/lib/textus/lanes/knowledge/runner.rb +45 -0
- data/lib/textus/lanes/knowledge/verbs.rb +16 -0
- data/lib/textus/lanes/scratchpad/handlers.rb +164 -0
- data/lib/textus/lanes/scratchpad/verbs.rb +73 -0
- data/lib/textus/{gate → protocol}/binder.rb +2 -10
- data/lib/textus/protocol/boot/catalog.rb +34 -0
- data/lib/textus/protocol/boot/context.rb +124 -0
- data/lib/textus/protocol/boot/protocol.rb +33 -0
- data/lib/textus/protocol/boot.rb +42 -0
- data/lib/textus/protocol/builder/domain.rb +17 -0
- data/lib/textus/protocol/builder/infrastructure.rb +17 -0
- data/lib/textus/protocol/builder/runtime.rb +46 -0
- data/lib/textus/protocol/builder.rb +11 -0
- data/lib/textus/protocol/container.rb +22 -0
- data/lib/textus/protocol/diff.rb +170 -0
- data/lib/textus/protocol/entry_constraint.rb +54 -0
- data/lib/textus/protocol/envelope.rb +70 -0
- data/lib/textus/protocol/format/base.rb +80 -0
- data/lib/textus/protocol/format/bash.rb +10 -0
- data/lib/textus/protocol/format/javascript.rb +10 -0
- data/lib/textus/protocol/format/json.rb +82 -0
- data/lib/textus/protocol/format/markdown.rb +53 -0
- data/lib/textus/protocol/format/python.rb +10 -0
- data/lib/textus/protocol/format/ruby.rb +10 -0
- data/lib/textus/protocol/format/script.rb +55 -0
- data/lib/textus/protocol/format/text.rb +48 -0
- data/lib/textus/protocol/format/yaml.rb +105 -0
- data/lib/textus/protocol/format.rb +73 -0
- data/lib/textus/protocol/freshness/ttl_evaluator.rb +61 -0
- data/lib/textus/protocol/gate.rb +61 -0
- data/lib/textus/protocol/handlers/command_context.rb +19 -0
- data/lib/textus/protocol/handlers/concern.rb +15 -0
- data/lib/textus/protocol/handlers/ops/audit_filter.rb +37 -0
- data/lib/textus/protocol/handlers/ops/bulk_planner.rb +38 -0
- data/lib/textus/protocol/handlers/ops/data_mv.rb +49 -0
- data/lib/textus/protocol/handlers/ops/git_blame.rb +65 -0
- data/lib/textus/protocol/handlers/ops/pulse_coordinator.rb +37 -0
- data/lib/textus/protocol/handlers/ops/source_expander.rb +41 -0
- data/lib/textus/protocol/handlers/query_context.rb +41 -0
- data/lib/textus/protocol/handlers/read.rb +67 -0
- data/lib/textus/protocol/handlers/system.rb +93 -0
- data/lib/textus/protocol/handlers/write.rb +57 -0
- data/lib/textus/protocol/init.rb +143 -0
- data/lib/textus/protocol/key/grammar.rb +35 -0
- data/lib/textus/protocol/key/matching.rb +23 -0
- data/lib/textus/protocol/key/path.rb +23 -0
- data/lib/textus/protocol/key.rb +25 -0
- data/lib/textus/protocol/lane.rb +12 -0
- data/lib/textus/{store/geometry.rb → protocol/layout.rb} +32 -22
- data/lib/textus/protocol/links/resolver.rb +33 -0
- data/lib/textus/protocol/links/uri_rewriter.rb +30 -0
- data/lib/textus/protocol/links.rb +10 -0
- data/lib/textus/protocol/manifest/data.rb +90 -0
- data/lib/textus/protocol/manifest/entry/base.rb +95 -0
- data/lib/textus/protocol/manifest/entry/leaf.rb +19 -0
- data/lib/textus/protocol/manifest/entry/nested.rb +19 -0
- data/lib/textus/protocol/manifest/entry/parser.rb +71 -0
- data/lib/textus/protocol/manifest/entry/publish.rb +209 -0
- data/lib/textus/protocol/manifest/entry.rb +10 -0
- data/lib/textus/protocol/manifest/policy/publish_target.rb +36 -0
- data/lib/textus/protocol/manifest/policy.rb +69 -0
- data/lib/textus/protocol/manifest/resolver.rb +156 -0
- data/lib/textus/protocol/manifest/schema/contract.rb +53 -0
- data/lib/textus/protocol/manifest/schema/validator.rb +52 -0
- data/lib/textus/protocol/manifest/schema.rb +40 -0
- data/lib/textus/protocol/manifest.rb +62 -0
- data/lib/textus/protocol/produce/render/context.rb +43 -0
- data/lib/textus/protocol/produce/render.rb +44 -0
- data/lib/textus/protocol/schema/registry.rb +44 -0
- data/lib/textus/protocol/schema/tools.rb +104 -0
- data/lib/textus/protocol/schema.rb +117 -0
- data/lib/textus/protocol/session/bridge.rb +11 -0
- data/lib/textus/protocol/session/context.rb +5 -0
- data/lib/textus/protocol/session.rb +87 -0
- data/lib/textus/protocol/store_engine/delete.rb +37 -0
- data/lib/textus/protocol/store_engine/move.rb +109 -0
- data/lib/textus/protocol/store_engine/pipeline.rb +61 -0
- data/lib/textus/protocol/store_engine/put.rb +104 -0
- data/lib/textus/protocol/store_engine.rb +86 -0
- data/lib/textus/protocol/v4.rb +25 -0
- data/lib/textus/protocol/verb_registry/arg_spec.rb +19 -0
- data/lib/textus/protocol/verb_registry/core_verbs.rb +164 -0
- data/lib/textus/protocol/verb_registry/verb_spec.rb +42 -0
- data/lib/textus/protocol/verb_registry.rb +42 -0
- data/lib/textus/surface/cli/group/{rule.rb → web.rb} +2 -2
- data/lib/textus/surface/cli/runner.rb +25 -25
- data/lib/textus/surface/cli/sources.rb +1 -3
- data/lib/textus/surface/cli/verb/get.rb +3 -6
- data/lib/textus/surface/cli/verb/init.rb +1 -1
- data/lib/textus/surface/cli/verb/put.rb +8 -6
- data/lib/textus/surface/cli/verb/web_serve.rb +22 -0
- data/lib/textus/surface/cli.rb +25 -6
- data/lib/textus/surface/dispatch.rb +17 -0
- data/lib/textus/surface/mcp/adapters/mcp_adapter.rb +28 -0
- data/lib/textus/surface/mcp/catalog.rb +26 -62
- data/lib/textus/surface/mcp/cursor_manager.rb +22 -0
- data/lib/textus/surface/mcp/drift_annotation.rb +19 -0
- data/lib/textus/surface/mcp/errors.rb +0 -10
- data/lib/textus/surface/mcp/server.rb +46 -46
- data/lib/textus/surface/watcher.rb +18 -12
- data/lib/textus/surface/web.rb +50 -0
- data/lib/textus/value/call.rb +1 -1
- data/lib/textus/{core → value}/duration.rb +1 -4
- data/lib/textus/value/etag.rb +7 -7
- data/lib/textus/value/payload.rb +7 -0
- data/lib/textus/version.rb +1 -1
- data/lib/textus/workflow/consumer.rb +39 -0
- data/lib/textus/workflow/dsl/lifecycle.rb +32 -0
- data/lib/textus/workflow/dsl/pattern_matcher.rb +20 -0
- data/lib/textus/workflow/dsl/step_builder.rb +56 -0
- data/lib/textus/workflow/dsl.rb +111 -21
- data/lib/textus/workflow/event_emitter.rb +21 -0
- data/lib/textus/workflow/publisher.rb +59 -0
- data/lib/textus/workflow/registry.rb +31 -8
- data/lib/textus/workflow/runner.rb +25 -61
- data/lib/textus/workflow/scheduler.rb +45 -0
- data/lib/textus/workflow/step_executor.rb +78 -0
- data/lib/textus/workflow/step_helpers.rb +102 -0
- data/lib/textus/workflow.rb +2 -5
- data/lib/textus.rb +16 -80
- metadata +167 -183
- data/SPEC.md +0 -908
- data/docs/architecture/README.md +0 -273
- data/docs/reference/conventions.md +0 -138
- data/lib/textus/action/accept.rb +0 -46
- data/lib/textus/action/audit.rb +0 -94
- data/lib/textus/action/base.rb +0 -42
- data/lib/textus/action/blame.rb +0 -79
- data/lib/textus/action/boot.rb +0 -15
- data/lib/textus/action/data_mv.rb +0 -58
- data/lib/textus/action/deps.rb +0 -19
- data/lib/textus/action/doctor.rb +0 -17
- data/lib/textus/action/drain.rb +0 -31
- data/lib/textus/action/enqueue.rb +0 -37
- data/lib/textus/action/get.rb +0 -34
- data/lib/textus/action/ingest.rb +0 -199
- data/lib/textus/action/jobs.rb +0 -27
- data/lib/textus/action/key_delete.rb +0 -26
- data/lib/textus/action/key_delete_prefix.rb +0 -35
- data/lib/textus/action/key_mv.rb +0 -122
- data/lib/textus/action/key_mv_prefix.rb +0 -48
- data/lib/textus/action/list.rb +0 -28
- data/lib/textus/action/propose.rb +0 -42
- data/lib/textus/action/published.rb +0 -22
- data/lib/textus/action/pulse.rb +0 -49
- data/lib/textus/action/put.rb +0 -38
- data/lib/textus/action/rdeps.rb +0 -24
- data/lib/textus/action/reject.rb +0 -28
- data/lib/textus/action/rule_explain.rb +0 -81
- data/lib/textus/action/rule_lint.rb +0 -62
- data/lib/textus/action/rule_list.rb +0 -38
- data/lib/textus/action/schema_envelope.rb +0 -22
- data/lib/textus/action/uid.rb +0 -19
- data/lib/textus/action/where.rb +0 -21
- data/lib/textus/boot.rb +0 -202
- data/lib/textus/contract/arg.rb +0 -10
- data/lib/textus/contract/dsl.rb +0 -88
- data/lib/textus/contract/spec.rb +0 -25
- data/lib/textus/contract.rb +0 -12
- data/lib/textus/core/freshness/evaluator.rb +0 -150
- data/lib/textus/core/freshness/verdict.rb +0 -34
- data/lib/textus/core/freshness.rb +0 -11
- data/lib/textus/core/retention/sweep.rb +0 -57
- data/lib/textus/core/retention.rb +0 -11
- data/lib/textus/core/sentinel.rb +0 -30
- data/lib/textus/doctor/check/audit_log.rb +0 -34
- data/lib/textus/doctor/check/generator_drift.rb +0 -29
- data/lib/textus/doctor/check/illegal_keys.rb +0 -60
- data/lib/textus/doctor/check/manifest_files.rb +0 -25
- data/lib/textus/doctor/check/notebook_sources.rb +0 -50
- data/lib/textus/doctor/check/orphaned_publish_targets.rb +0 -35
- data/lib/textus/doctor/check/proposal_targets.rb +0 -45
- data/lib/textus/doctor/check/protocol_version.rb +0 -47
- data/lib/textus/doctor/check/publish_tree_index_overlap.rb +0 -48
- data/lib/textus/doctor/check/raw_asset_paths.rb +0 -50
- data/lib/textus/doctor/check/rule_ambiguity.rb +0 -49
- data/lib/textus/doctor/check/schema_parse_error.rb +0 -28
- data/lib/textus/doctor/check/schema_violations.rb +0 -28
- data/lib/textus/doctor/check/schemas.rb +0 -26
- data/lib/textus/doctor/check/sentinels.rb +0 -60
- data/lib/textus/doctor/check/stale_reviewed_stamp.rb +0 -54
- data/lib/textus/doctor/check/templates.rb +0 -29
- data/lib/textus/doctor/check/unowned_schema_fields.rb +0 -40
- data/lib/textus/doctor/check.rb +0 -41
- data/lib/textus/doctor/validator.rb +0 -93
- data/lib/textus/doctor.rb +0 -54
- data/lib/textus/format/base.rb +0 -49
- data/lib/textus/format/json.rb +0 -102
- data/lib/textus/format/markdown.rb +0 -80
- data/lib/textus/format/shared.rb +0 -17
- data/lib/textus/format/text.rb +0 -55
- data/lib/textus/format/yaml.rb +0 -125
- data/lib/textus/format.rb +0 -46
- data/lib/textus/gate/auth.rb +0 -212
- data/lib/textus/gate.rb +0 -92
- data/lib/textus/init.rb +0 -157
- data/lib/textus/jobs.rb +0 -9
- data/lib/textus/key/distance.rb +0 -55
- data/lib/textus/key/grammar.rb +0 -33
- data/lib/textus/key/matching.rb +0 -24
- data/lib/textus/key/path.rb +0 -28
- data/lib/textus/manifest/capabilities.rb +0 -29
- data/lib/textus/manifest/data.rb +0 -102
- data/lib/textus/manifest/entry/base.rb +0 -105
- data/lib/textus/manifest/entry/ignore_matcher.rb +0 -46
- data/lib/textus/manifest/entry/leaf.rb +0 -17
- data/lib/textus/manifest/entry/nested.rb +0 -37
- data/lib/textus/manifest/entry/parser.rb +0 -99
- data/lib/textus/manifest/entry/produced.rb +0 -36
- data/lib/textus/manifest/entry/publish/mode.rb +0 -45
- data/lib/textus/manifest/entry/publish/none.rb +0 -14
- data/lib/textus/manifest/entry/publish/subtree_mirror.rb +0 -73
- data/lib/textus/manifest/entry/publish/template.rb +0 -16
- data/lib/textus/manifest/entry/publish/to_paths.rb +0 -76
- data/lib/textus/manifest/entry/publish/tree.rb +0 -50
- data/lib/textus/manifest/entry/publish.rb +0 -45
- data/lib/textus/manifest/entry/validators/format_matrix.rb +0 -21
- data/lib/textus/manifest/entry/validators/ignore.rb +0 -28
- data/lib/textus/manifest/entry/validators/publish.rb +0 -30
- data/lib/textus/manifest/entry/validators.rb +0 -18
- data/lib/textus/manifest/entry.rb +0 -8
- data/lib/textus/manifest/policy/matcher.rb +0 -51
- data/lib/textus/manifest/policy/publish_target.rb +0 -34
- data/lib/textus/manifest/policy/react.rb +0 -30
- data/lib/textus/manifest/policy/retention.rb +0 -29
- data/lib/textus/manifest/policy/source.rb +0 -30
- data/lib/textus/manifest/policy.rb +0 -95
- data/lib/textus/manifest/resolver.rb +0 -118
- data/lib/textus/manifest/rules.rb +0 -86
- data/lib/textus/manifest/schema/contract.rb +0 -61
- data/lib/textus/manifest/schema/keys.rb +0 -90
- data/lib/textus/manifest/schema/semantics/cross_field.rb +0 -53
- data/lib/textus/manifest/schema/semantics/invariants.rb +0 -125
- data/lib/textus/manifest/schema/semantics/migration.rb +0 -83
- data/lib/textus/manifest/schema/semantics.rb +0 -27
- data/lib/textus/manifest/schema/validator.rb +0 -48
- data/lib/textus/manifest/schema/vocabulary.rb +0 -25
- data/lib/textus/manifest/schema.rb +0 -30
- data/lib/textus/manifest.rb +0 -65
- data/lib/textus/meta.rb +0 -54
- data/lib/textus/port/audit_log.rb +0 -268
- data/lib/textus/port/build_lock.rb +0 -64
- data/lib/textus/port/clock.rb +0 -10
- data/lib/textus/port/publisher.rb +0 -60
- data/lib/textus/port/sentinel_store.rb +0 -83
- data/lib/textus/port/storage/file_stat.rb +0 -19
- data/lib/textus/port/storage/file_store.rb +0 -26
- data/lib/textus/port/store.rb +0 -93
- data/lib/textus/port/watcher_lock.rb +0 -48
- data/lib/textus/produce/engine.rb +0 -50
- data/lib/textus/produce/render.rb +0 -20
- data/lib/textus/schema/tools.rb +0 -115
- data/lib/textus/schema.rb +0 -100
- data/lib/textus/schemas.rb +0 -54
- data/lib/textus/store/compositor.rb +0 -34
- data/lib/textus/store/container.rb +0 -43
- data/lib/textus/store/cursor.rb +0 -26
- data/lib/textus/store/envelope/reader.rb +0 -43
- data/lib/textus/store/envelope/writer.rb +0 -195
- data/lib/textus/store/index/builder.rb +0 -74
- data/lib/textus/store/index/lookup.rb +0 -60
- data/lib/textus/store/jobs/base.rb +0 -13
- data/lib/textus/store/jobs/index.rb +0 -15
- data/lib/textus/store/jobs/materialize.rb +0 -15
- data/lib/textus/store/jobs/plan.rb +0 -11
- data/lib/textus/store/jobs/planner.rb +0 -104
- data/lib/textus/store/jobs/queue.rb +0 -154
- data/lib/textus/store/jobs/registry.rb +0 -19
- data/lib/textus/store/jobs/retention.rb +0 -50
- data/lib/textus/store/jobs/sweep.rb +0 -21
- data/lib/textus/store/jobs/worker.rb +0 -64
- data/lib/textus/store/session.rb +0 -37
- data/lib/textus/store.rb +0 -99
- data/lib/textus/surface/cli/verb/doctor.rb +0 -19
- data/lib/textus/surface/cli/verb/schema_diff.rb +0 -17
- data/lib/textus/surface/cli/verb/schema_init.rb +0 -21
- data/lib/textus/surface/cli/verb/schema_migrate.rb +0 -21
- data/lib/textus/surface/mcp.rb +0 -8
- data/lib/textus/surface/projector.rb +0 -27
- data/lib/textus/surface/role_scope.rb +0 -34
- data/lib/textus/value/command.rb +0 -16
- data/lib/textus/value/envelope.rb +0 -89
- data/lib/textus/value/result.rb +0 -26
- data/lib/textus/workflow/collector.rb +0 -27
- data/lib/textus/workflow/context.rb +0 -5
- data/lib/textus/workflow/loader.rb +0 -17
- data/lib/textus/workflow/pattern.rb +0 -18
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: textus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.56.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick
|
|
@@ -10,33 +10,33 @@ cert_chain: []
|
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
|
-
name:
|
|
13
|
+
name: concurrent-ruby
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '3
|
|
18
|
+
version: '1.3'
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
|
-
- - "
|
|
23
|
+
- - "~>"
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '3
|
|
25
|
+
version: '1.3'
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
|
-
name:
|
|
27
|
+
name: csv
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
|
-
- - "
|
|
30
|
+
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: '
|
|
32
|
+
version: '3.0'
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
|
-
- - "
|
|
37
|
+
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '
|
|
39
|
+
version: '3.0'
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: dry-schema
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -107,6 +107,20 @@ dependencies:
|
|
|
107
107
|
- - ">="
|
|
108
108
|
- !ruby/object:Gem::Version
|
|
109
109
|
version: '3.2'
|
|
110
|
+
- !ruby/object:Gem::Dependency
|
|
111
|
+
name: sequel
|
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
|
113
|
+
requirements:
|
|
114
|
+
- - "~>"
|
|
115
|
+
- !ruby/object:Gem::Version
|
|
116
|
+
version: '5.0'
|
|
117
|
+
type: :runtime
|
|
118
|
+
prerelease: false
|
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
120
|
+
requirements:
|
|
121
|
+
- - "~>"
|
|
122
|
+
- !ruby/object:Gem::Version
|
|
123
|
+
version: '5.0'
|
|
110
124
|
- !ruby/object:Gem::Dependency
|
|
111
125
|
name: sqlite3
|
|
112
126
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -175,207 +189,177 @@ extra_rdoc_files: []
|
|
|
175
189
|
files:
|
|
176
190
|
- CHANGELOG.md
|
|
177
191
|
- README.md
|
|
178
|
-
- SPEC.md
|
|
179
|
-
- docs/architecture/README.md
|
|
180
|
-
- docs/reference/conventions.md
|
|
181
192
|
- exe/textus
|
|
182
193
|
- lib/textus.rb
|
|
183
|
-
- lib/textus/
|
|
184
|
-
- lib/textus/action/audit.rb
|
|
185
|
-
- lib/textus/action/base.rb
|
|
186
|
-
- lib/textus/action/blame.rb
|
|
187
|
-
- lib/textus/action/boot.rb
|
|
188
|
-
- lib/textus/action/data_mv.rb
|
|
189
|
-
- lib/textus/action/deps.rb
|
|
190
|
-
- lib/textus/action/doctor.rb
|
|
191
|
-
- lib/textus/action/drain.rb
|
|
192
|
-
- lib/textus/action/enqueue.rb
|
|
193
|
-
- lib/textus/action/get.rb
|
|
194
|
-
- lib/textus/action/ingest.rb
|
|
195
|
-
- lib/textus/action/jobs.rb
|
|
196
|
-
- lib/textus/action/key_delete.rb
|
|
197
|
-
- lib/textus/action/key_delete_prefix.rb
|
|
198
|
-
- lib/textus/action/key_mv.rb
|
|
199
|
-
- lib/textus/action/key_mv_prefix.rb
|
|
200
|
-
- lib/textus/action/list.rb
|
|
201
|
-
- lib/textus/action/propose.rb
|
|
202
|
-
- lib/textus/action/published.rb
|
|
203
|
-
- lib/textus/action/pulse.rb
|
|
204
|
-
- lib/textus/action/put.rb
|
|
205
|
-
- lib/textus/action/rdeps.rb
|
|
206
|
-
- lib/textus/action/reject.rb
|
|
207
|
-
- lib/textus/action/rule_explain.rb
|
|
208
|
-
- lib/textus/action/rule_lint.rb
|
|
209
|
-
- lib/textus/action/rule_list.rb
|
|
210
|
-
- lib/textus/action/schema_envelope.rb
|
|
211
|
-
- lib/textus/action/uid.rb
|
|
212
|
-
- lib/textus/action/where.rb
|
|
213
|
-
- lib/textus/boot.rb
|
|
214
|
-
- lib/textus/contract.rb
|
|
215
|
-
- lib/textus/contract/arg.rb
|
|
216
|
-
- lib/textus/contract/dsl.rb
|
|
217
|
-
- lib/textus/contract/spec.rb
|
|
218
|
-
- lib/textus/core/duration.rb
|
|
219
|
-
- lib/textus/core/freshness.rb
|
|
220
|
-
- lib/textus/core/freshness/evaluator.rb
|
|
221
|
-
- lib/textus/core/freshness/verdict.rb
|
|
222
|
-
- lib/textus/core/retention.rb
|
|
223
|
-
- lib/textus/core/retention/sweep.rb
|
|
224
|
-
- lib/textus/core/sentinel.rb
|
|
225
|
-
- lib/textus/doctor.rb
|
|
226
|
-
- lib/textus/doctor/check.rb
|
|
227
|
-
- lib/textus/doctor/check/audit_log.rb
|
|
228
|
-
- lib/textus/doctor/check/generator_drift.rb
|
|
229
|
-
- lib/textus/doctor/check/illegal_keys.rb
|
|
230
|
-
- lib/textus/doctor/check/manifest_files.rb
|
|
231
|
-
- lib/textus/doctor/check/notebook_sources.rb
|
|
232
|
-
- lib/textus/doctor/check/orphaned_publish_targets.rb
|
|
233
|
-
- lib/textus/doctor/check/proposal_targets.rb
|
|
234
|
-
- lib/textus/doctor/check/protocol_version.rb
|
|
235
|
-
- lib/textus/doctor/check/publish_tree_index_overlap.rb
|
|
236
|
-
- lib/textus/doctor/check/raw_asset_paths.rb
|
|
237
|
-
- lib/textus/doctor/check/rule_ambiguity.rb
|
|
238
|
-
- lib/textus/doctor/check/schema_parse_error.rb
|
|
239
|
-
- lib/textus/doctor/check/schema_violations.rb
|
|
240
|
-
- lib/textus/doctor/check/schemas.rb
|
|
241
|
-
- lib/textus/doctor/check/sentinels.rb
|
|
242
|
-
- lib/textus/doctor/check/stale_reviewed_stamp.rb
|
|
243
|
-
- lib/textus/doctor/check/templates.rb
|
|
244
|
-
- lib/textus/doctor/check/unowned_schema_fields.rb
|
|
245
|
-
- lib/textus/doctor/validator.rb
|
|
194
|
+
- lib/textus/artifact.rb
|
|
246
195
|
- lib/textus/errors.rb
|
|
247
|
-
- lib/textus/
|
|
248
|
-
- lib/textus/
|
|
249
|
-
- lib/textus/
|
|
250
|
-
- lib/textus/
|
|
251
|
-
- lib/textus/
|
|
252
|
-
- lib/textus/
|
|
253
|
-
- lib/textus/
|
|
254
|
-
- lib/textus/
|
|
255
|
-
- lib/textus/
|
|
256
|
-
- lib/textus/
|
|
257
|
-
- lib/textus/
|
|
258
|
-
- lib/textus/
|
|
259
|
-
- lib/textus/
|
|
260
|
-
- lib/textus/
|
|
261
|
-
- lib/textus/
|
|
262
|
-
- lib/textus/
|
|
263
|
-
- lib/textus/
|
|
264
|
-
- lib/textus/
|
|
265
|
-
- lib/textus/
|
|
266
|
-
- lib/textus/
|
|
267
|
-
- lib/textus/
|
|
268
|
-
- lib/textus/
|
|
269
|
-
- lib/textus/
|
|
270
|
-
- lib/textus/
|
|
271
|
-
- lib/textus/
|
|
272
|
-
- lib/textus/
|
|
273
|
-
- lib/textus/
|
|
274
|
-
- lib/textus/
|
|
275
|
-
- lib/textus/
|
|
276
|
-
- lib/textus/
|
|
277
|
-
- lib/textus/
|
|
278
|
-
- lib/textus/
|
|
279
|
-
- lib/textus/
|
|
280
|
-
- lib/textus/
|
|
281
|
-
- lib/textus/
|
|
282
|
-
- lib/textus/
|
|
283
|
-
- lib/textus/
|
|
284
|
-
- lib/textus/
|
|
285
|
-
- lib/textus/
|
|
286
|
-
- lib/textus/
|
|
287
|
-
- lib/textus/
|
|
288
|
-
- lib/textus/
|
|
289
|
-
- lib/textus/
|
|
290
|
-
- lib/textus/
|
|
291
|
-
- lib/textus/
|
|
292
|
-
- lib/textus/
|
|
293
|
-
- lib/textus/
|
|
294
|
-
- lib/textus/
|
|
295
|
-
- lib/textus/
|
|
296
|
-
- lib/textus/
|
|
297
|
-
- lib/textus/
|
|
298
|
-
- lib/textus/
|
|
299
|
-
- lib/textus/
|
|
300
|
-
- lib/textus/
|
|
301
|
-
- lib/textus/
|
|
302
|
-
- lib/textus/
|
|
303
|
-
- lib/textus/
|
|
304
|
-
- lib/textus/
|
|
305
|
-
- lib/textus/
|
|
306
|
-
- lib/textus/
|
|
307
|
-
- lib/textus/
|
|
308
|
-
- lib/textus/
|
|
309
|
-
- lib/textus/
|
|
310
|
-
- lib/textus/
|
|
311
|
-
- lib/textus/
|
|
312
|
-
- lib/textus/
|
|
313
|
-
- lib/textus/
|
|
314
|
-
- lib/textus/
|
|
315
|
-
- lib/textus/
|
|
316
|
-
- lib/textus/
|
|
317
|
-
- lib/textus/
|
|
318
|
-
- lib/textus/
|
|
319
|
-
- lib/textus/
|
|
320
|
-
- lib/textus/
|
|
321
|
-
- lib/textus/
|
|
322
|
-
- lib/textus/
|
|
323
|
-
- lib/textus/
|
|
324
|
-
- lib/textus/
|
|
325
|
-
- lib/textus/
|
|
326
|
-
- lib/textus/
|
|
327
|
-
- lib/textus/
|
|
328
|
-
- lib/textus/
|
|
329
|
-
- lib/textus/
|
|
330
|
-
- lib/textus/
|
|
331
|
-
- lib/textus/
|
|
332
|
-
- lib/textus/
|
|
333
|
-
- lib/textus/
|
|
334
|
-
- lib/textus/
|
|
335
|
-
- lib/textus/
|
|
196
|
+
- lib/textus/human.rb
|
|
197
|
+
- lib/textus/infra/adapters/concurrency_adapter.rb
|
|
198
|
+
- lib/textus/infra/clock.rb
|
|
199
|
+
- lib/textus/infra/database.rb
|
|
200
|
+
- lib/textus/infra/file_system.rb
|
|
201
|
+
- lib/textus/infra/locks.rb
|
|
202
|
+
- lib/textus/infra/port/clock.rb
|
|
203
|
+
- lib/textus/infra/port/publisher.rb
|
|
204
|
+
- lib/textus/infra/port/sentinel.rb
|
|
205
|
+
- lib/textus/infra/port/sentinel_store.rb
|
|
206
|
+
- lib/textus/infra/store.rb
|
|
207
|
+
- lib/textus/infra/store/audit_log.rb
|
|
208
|
+
- lib/textus/infra/store/base.rb
|
|
209
|
+
- lib/textus/infra/store/cursor_store.rb
|
|
210
|
+
- lib/textus/infra/store/entry_index.rb
|
|
211
|
+
- lib/textus/infra/store/envelope/meta.rb
|
|
212
|
+
- lib/textus/infra/store/file_store.rb
|
|
213
|
+
- lib/textus/infra/store/index/builder.rb
|
|
214
|
+
- lib/textus/infra/store/index/lookup.rb
|
|
215
|
+
- lib/textus/infra/store/link_store.rb
|
|
216
|
+
- lib/textus/infra/store/workflow_queue.rb
|
|
217
|
+
- lib/textus/ingest.rb
|
|
218
|
+
- lib/textus/lanes/artifact/cache.rb
|
|
219
|
+
- lib/textus/lanes/artifact/handlers.rb
|
|
220
|
+
- lib/textus/lanes/artifact/lifecycle.rb
|
|
221
|
+
- lib/textus/lanes/artifact/verbs.rb
|
|
222
|
+
- lib/textus/lanes/ingest/dedup.rb
|
|
223
|
+
- lib/textus/lanes/ingest/entry_types.rb
|
|
224
|
+
- lib/textus/lanes/ingest/entry_types/asset.rb
|
|
225
|
+
- lib/textus/lanes/ingest/entry_types/link.rb
|
|
226
|
+
- lib/textus/lanes/ingest/entry_types/text.rb
|
|
227
|
+
- lib/textus/lanes/ingest/handlers.rb
|
|
228
|
+
- lib/textus/lanes/ingest/index_rebuilder.rb
|
|
229
|
+
- lib/textus/lanes/ingest/key_builder.rb
|
|
230
|
+
- lib/textus/lanes/ingest/resolver.rb
|
|
231
|
+
- lib/textus/lanes/knowledge/freeform.rb
|
|
232
|
+
- lib/textus/lanes/knowledge/handlers.rb
|
|
233
|
+
- lib/textus/lanes/knowledge/runner.rb
|
|
234
|
+
- lib/textus/lanes/knowledge/verbs.rb
|
|
235
|
+
- lib/textus/lanes/scratchpad/handlers.rb
|
|
236
|
+
- lib/textus/lanes/scratchpad/verbs.rb
|
|
237
|
+
- lib/textus/protocol/binder.rb
|
|
238
|
+
- lib/textus/protocol/boot.rb
|
|
239
|
+
- lib/textus/protocol/boot/catalog.rb
|
|
240
|
+
- lib/textus/protocol/boot/context.rb
|
|
241
|
+
- lib/textus/protocol/boot/protocol.rb
|
|
242
|
+
- lib/textus/protocol/builder.rb
|
|
243
|
+
- lib/textus/protocol/builder/domain.rb
|
|
244
|
+
- lib/textus/protocol/builder/infrastructure.rb
|
|
245
|
+
- lib/textus/protocol/builder/runtime.rb
|
|
246
|
+
- lib/textus/protocol/container.rb
|
|
247
|
+
- lib/textus/protocol/diff.rb
|
|
248
|
+
- lib/textus/protocol/entry_constraint.rb
|
|
249
|
+
- lib/textus/protocol/envelope.rb
|
|
250
|
+
- lib/textus/protocol/format.rb
|
|
251
|
+
- lib/textus/protocol/format/base.rb
|
|
252
|
+
- lib/textus/protocol/format/bash.rb
|
|
253
|
+
- lib/textus/protocol/format/javascript.rb
|
|
254
|
+
- lib/textus/protocol/format/json.rb
|
|
255
|
+
- lib/textus/protocol/format/markdown.rb
|
|
256
|
+
- lib/textus/protocol/format/python.rb
|
|
257
|
+
- lib/textus/protocol/format/ruby.rb
|
|
258
|
+
- lib/textus/protocol/format/script.rb
|
|
259
|
+
- lib/textus/protocol/format/text.rb
|
|
260
|
+
- lib/textus/protocol/format/yaml.rb
|
|
261
|
+
- lib/textus/protocol/freshness/ttl_evaluator.rb
|
|
262
|
+
- lib/textus/protocol/gate.rb
|
|
263
|
+
- lib/textus/protocol/handlers/command_context.rb
|
|
264
|
+
- lib/textus/protocol/handlers/concern.rb
|
|
265
|
+
- lib/textus/protocol/handlers/ops/audit_filter.rb
|
|
266
|
+
- lib/textus/protocol/handlers/ops/bulk_planner.rb
|
|
267
|
+
- lib/textus/protocol/handlers/ops/data_mv.rb
|
|
268
|
+
- lib/textus/protocol/handlers/ops/git_blame.rb
|
|
269
|
+
- lib/textus/protocol/handlers/ops/pulse_coordinator.rb
|
|
270
|
+
- lib/textus/protocol/handlers/ops/source_expander.rb
|
|
271
|
+
- lib/textus/protocol/handlers/query_context.rb
|
|
272
|
+
- lib/textus/protocol/handlers/read.rb
|
|
273
|
+
- lib/textus/protocol/handlers/system.rb
|
|
274
|
+
- lib/textus/protocol/handlers/write.rb
|
|
275
|
+
- lib/textus/protocol/init.rb
|
|
276
|
+
- lib/textus/protocol/key.rb
|
|
277
|
+
- lib/textus/protocol/key/grammar.rb
|
|
278
|
+
- lib/textus/protocol/key/matching.rb
|
|
279
|
+
- lib/textus/protocol/key/path.rb
|
|
280
|
+
- lib/textus/protocol/lane.rb
|
|
281
|
+
- lib/textus/protocol/layout.rb
|
|
282
|
+
- lib/textus/protocol/links.rb
|
|
283
|
+
- lib/textus/protocol/links/resolver.rb
|
|
284
|
+
- lib/textus/protocol/links/uri_rewriter.rb
|
|
285
|
+
- lib/textus/protocol/manifest.rb
|
|
286
|
+
- lib/textus/protocol/manifest/data.rb
|
|
287
|
+
- lib/textus/protocol/manifest/entry.rb
|
|
288
|
+
- lib/textus/protocol/manifest/entry/base.rb
|
|
289
|
+
- lib/textus/protocol/manifest/entry/leaf.rb
|
|
290
|
+
- lib/textus/protocol/manifest/entry/nested.rb
|
|
291
|
+
- lib/textus/protocol/manifest/entry/parser.rb
|
|
292
|
+
- lib/textus/protocol/manifest/entry/publish.rb
|
|
293
|
+
- lib/textus/protocol/manifest/policy.rb
|
|
294
|
+
- lib/textus/protocol/manifest/policy/publish_target.rb
|
|
295
|
+
- lib/textus/protocol/manifest/resolver.rb
|
|
296
|
+
- lib/textus/protocol/manifest/schema.rb
|
|
297
|
+
- lib/textus/protocol/manifest/schema/contract.rb
|
|
298
|
+
- lib/textus/protocol/manifest/schema/validator.rb
|
|
299
|
+
- lib/textus/protocol/produce/render.rb
|
|
300
|
+
- lib/textus/protocol/produce/render/context.rb
|
|
301
|
+
- lib/textus/protocol/schema.rb
|
|
302
|
+
- lib/textus/protocol/schema/registry.rb
|
|
303
|
+
- lib/textus/protocol/schema/tools.rb
|
|
304
|
+
- lib/textus/protocol/session.rb
|
|
305
|
+
- lib/textus/protocol/session/bridge.rb
|
|
306
|
+
- lib/textus/protocol/session/context.rb
|
|
307
|
+
- lib/textus/protocol/store_engine.rb
|
|
308
|
+
- lib/textus/protocol/store_engine/delete.rb
|
|
309
|
+
- lib/textus/protocol/store_engine/move.rb
|
|
310
|
+
- lib/textus/protocol/store_engine/pipeline.rb
|
|
311
|
+
- lib/textus/protocol/store_engine/put.rb
|
|
312
|
+
- lib/textus/protocol/v4.rb
|
|
313
|
+
- lib/textus/protocol/verb_registry.rb
|
|
314
|
+
- lib/textus/protocol/verb_registry/arg_spec.rb
|
|
315
|
+
- lib/textus/protocol/verb_registry/core_verbs.rb
|
|
316
|
+
- lib/textus/protocol/verb_registry/verb_spec.rb
|
|
336
317
|
- lib/textus/surface/cli.rb
|
|
337
318
|
- lib/textus/surface/cli/group.rb
|
|
338
319
|
- lib/textus/surface/cli/group/data.rb
|
|
339
320
|
- lib/textus/surface/cli/group/key.rb
|
|
340
321
|
- lib/textus/surface/cli/group/mcp.rb
|
|
341
|
-
- lib/textus/surface/cli/group/rule.rb
|
|
342
322
|
- lib/textus/surface/cli/group/schema.rb
|
|
323
|
+
- lib/textus/surface/cli/group/web.rb
|
|
343
324
|
- lib/textus/surface/cli/runner.rb
|
|
344
325
|
- lib/textus/surface/cli/sources.rb
|
|
345
326
|
- lib/textus/surface/cli/verb.rb
|
|
346
|
-
- lib/textus/surface/cli/verb/doctor.rb
|
|
347
327
|
- lib/textus/surface/cli/verb/get.rb
|
|
348
328
|
- lib/textus/surface/cli/verb/init.rb
|
|
349
329
|
- lib/textus/surface/cli/verb/mcp_serve.rb
|
|
350
330
|
- lib/textus/surface/cli/verb/put.rb
|
|
351
|
-
- lib/textus/surface/cli/verb/schema_diff.rb
|
|
352
|
-
- lib/textus/surface/cli/verb/schema_init.rb
|
|
353
|
-
- lib/textus/surface/cli/verb/schema_migrate.rb
|
|
354
331
|
- lib/textus/surface/cli/verb/watch.rb
|
|
355
|
-
- lib/textus/surface/
|
|
332
|
+
- lib/textus/surface/cli/verb/web_serve.rb
|
|
333
|
+
- lib/textus/surface/dispatch.rb
|
|
334
|
+
- lib/textus/surface/mcp/adapters/mcp_adapter.rb
|
|
356
335
|
- lib/textus/surface/mcp/catalog.rb
|
|
336
|
+
- lib/textus/surface/mcp/cursor_manager.rb
|
|
337
|
+
- lib/textus/surface/mcp/drift_annotation.rb
|
|
357
338
|
- lib/textus/surface/mcp/errors.rb
|
|
358
339
|
- lib/textus/surface/mcp/server.rb
|
|
359
|
-
- lib/textus/surface/projector.rb
|
|
360
|
-
- lib/textus/surface/role_scope.rb
|
|
361
340
|
- lib/textus/surface/watcher.rb
|
|
341
|
+
- lib/textus/surface/web.rb
|
|
362
342
|
- lib/textus/value/call.rb
|
|
363
|
-
- lib/textus/value/
|
|
364
|
-
- lib/textus/value/envelope.rb
|
|
343
|
+
- lib/textus/value/duration.rb
|
|
365
344
|
- lib/textus/value/etag.rb
|
|
366
|
-
- lib/textus/value/
|
|
345
|
+
- lib/textus/value/payload.rb
|
|
367
346
|
- lib/textus/value/role.rb
|
|
368
347
|
- lib/textus/value/types.rb
|
|
369
348
|
- lib/textus/value/uid.rb
|
|
370
349
|
- lib/textus/version.rb
|
|
371
350
|
- lib/textus/workflow.rb
|
|
372
|
-
- lib/textus/workflow/
|
|
373
|
-
- lib/textus/workflow/context.rb
|
|
351
|
+
- lib/textus/workflow/consumer.rb
|
|
374
352
|
- lib/textus/workflow/dsl.rb
|
|
375
|
-
- lib/textus/workflow/
|
|
376
|
-
- lib/textus/workflow/
|
|
353
|
+
- lib/textus/workflow/dsl/lifecycle.rb
|
|
354
|
+
- lib/textus/workflow/dsl/pattern_matcher.rb
|
|
355
|
+
- lib/textus/workflow/dsl/step_builder.rb
|
|
356
|
+
- lib/textus/workflow/event_emitter.rb
|
|
357
|
+
- lib/textus/workflow/publisher.rb
|
|
377
358
|
- lib/textus/workflow/registry.rb
|
|
378
359
|
- lib/textus/workflow/runner.rb
|
|
360
|
+
- lib/textus/workflow/scheduler.rb
|
|
361
|
+
- lib/textus/workflow/step_executor.rb
|
|
362
|
+
- lib/textus/workflow/step_helpers.rb
|
|
379
363
|
homepage: https://github.com/patrick204nqh/textus
|
|
380
364
|
licenses:
|
|
381
365
|
- MIT
|
|
@@ -384,7 +368,7 @@ metadata:
|
|
|
384
368
|
source_code_uri: https://github.com/patrick204nqh/textus
|
|
385
369
|
bug_tracker_uri: https://github.com/patrick204nqh/textus/issues
|
|
386
370
|
changelog_uri: https://github.com/patrick204nqh/textus/blob/main/CHANGELOG.md
|
|
387
|
-
documentation_uri: https://github.com/patrick204nqh/textus/blob/main/
|
|
371
|
+
documentation_uri: https://github.com/patrick204nqh/textus/blob/main/README.md
|
|
388
372
|
rubygems_mfa_required: 'true'
|
|
389
373
|
rdoc_options: []
|
|
390
374
|
require_paths:
|
|
@@ -402,5 +386,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
402
386
|
requirements: []
|
|
403
387
|
rubygems_version: 3.6.9
|
|
404
388
|
specification_version: 4
|
|
405
|
-
summary: Reference implementation of the textus/
|
|
389
|
+
summary: Reference implementation of the textus/4 protocol.
|
|
406
390
|
test_files: []
|