textus 0.55.2 → 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 +8 -9
- data/lib/textus/artifact.rb +8 -0
- data/lib/textus/errors.rb +0 -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/{dispatch → protocol}/binder.rb +1 -7
- 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/{store → protocol}/freshness/ttl_evaluator.rb +7 -3
- 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 → protocol}/layout.rb +16 -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 +22 -21
- data/lib/textus/surface/cli/sources.rb +1 -3
- data/lib/textus/surface/cli/verb/get.rb +2 -7
- data/lib/textus/surface/cli/verb/init.rb +1 -1
- data/lib/textus/surface/cli/verb/put.rb +7 -7
- 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 +12 -12
- 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/server.rb +35 -24
- 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/value/etag.rb +7 -7
- 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 -53
- 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 -16
- metadata +169 -185
- data/SPEC.md +0 -909
- data/docs/architecture/README.md +0 -273
- data/docs/reference/conventions.md +0 -141
- data/lib/textus/boot.rb +0 -181
- data/lib/textus/dispatch/contracts.rb +0 -63
- data/lib/textus/dispatch/handler_registry.rb +0 -21
- data/lib/textus/dispatch/middleware/audit_index.rb +0 -51
- data/lib/textus/dispatch/middleware/auth.rb +0 -40
- data/lib/textus/dispatch/middleware/base.rb +0 -26
- data/lib/textus/dispatch/middleware/binder.rb +0 -20
- data/lib/textus/dispatch/middleware/cascade.rb +0 -53
- data/lib/textus/dispatch/pipeline.rb +0 -35
- 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/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/scratchpad_sources.rb +0 -55
- 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 -43
- data/lib/textus/doctor/validator.rb +0 -93
- data/lib/textus/doctor.rb +0 -54
- data/lib/textus/format/base.rb +0 -77
- data/lib/textus/format/json.rb +0 -81
- data/lib/textus/format/markdown.rb +0 -59
- data/lib/textus/format/text.rb +0 -55
- data/lib/textus/format/yaml.rb +0 -104
- data/lib/textus/format.rb +0 -61
- data/lib/textus/handlers/maintenance/boot_store.rb +0 -15
- data/lib/textus/handlers/maintenance/doctor_store.rb +0 -15
- data/lib/textus/handlers/maintenance/drain_store.rb +0 -21
- data/lib/textus/handlers/maintenance/ingest_entry.rb +0 -159
- data/lib/textus/handlers/maintenance/jobs_action.rb +0 -21
- data/lib/textus/handlers/maintenance/published_entries.rb +0 -17
- data/lib/textus/handlers/maintenance/rule_explain.rb +0 -77
- data/lib/textus/handlers/maintenance/rule_lint.rb +0 -54
- data/lib/textus/handlers/maintenance/rule_list.rb +0 -32
- data/lib/textus/handlers/maintenance/schema_envelope.rb +0 -19
- data/lib/textus/handlers/read/audit_entries.rb +0 -48
- data/lib/textus/handlers/read/blame_entry.rb +0 -71
- data/lib/textus/handlers/read/deps_entry.rb +0 -17
- data/lib/textus/handlers/read/get_entry.rb +0 -68
- data/lib/textus/handlers/read/list_keys.rb +0 -36
- data/lib/textus/handlers/read/pulse_entries.rb +0 -66
- data/lib/textus/handlers/read/rdeps_entry.rb +0 -21
- data/lib/textus/handlers/read/uid_entry.rb +0 -18
- data/lib/textus/handlers/read/where_entry.rb +0 -18
- data/lib/textus/handlers/write/accept_proposal.rb +0 -39
- data/lib/textus/handlers/write/data_mv.rb +0 -55
- data/lib/textus/handlers/write/delete_key.rb +0 -17
- data/lib/textus/handlers/write/enqueue_job.rb +0 -27
- data/lib/textus/handlers/write/key_delete_prefix.rb +0 -32
- data/lib/textus/handlers/write/key_mv_prefix.rb +0 -45
- data/lib/textus/handlers/write/move_key.rb +0 -80
- data/lib/textus/handlers/write/propose_entry.rb +0 -29
- data/lib/textus/handlers/write/put_entry.rb +0 -29
- data/lib/textus/handlers/write/reject_proposal.rb +0 -29
- 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/predicates/author_held.rb +0 -22
- data/lib/textus/manifest/policy/predicates/etag_match.rb +0 -18
- data/lib/textus/manifest/policy/predicates/fresh_within.rb +0 -13
- data/lib/textus/manifest/policy/predicates/lane_deletable_by.rb +0 -31
- data/lib/textus/manifest/policy/predicates/lane_writable_by.rb +0 -23
- data/lib/textus/manifest/policy/predicates/raw_lane_ingest_only.rb +0 -25
- data/lib/textus/manifest/policy/predicates/raw_write_once.rb +0 -24
- data/lib/textus/manifest/policy/predicates/schema_valid.rb +0 -41
- data/lib/textus/manifest/policy/predicates/target_is_canon.rb +0 -20
- data/lib/textus/manifest/policy/predicates.rb +0 -54
- 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/orchestration.rb +0 -55
- 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.rb +0 -25
- 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 -49
- data/lib/textus/port/storage/interface.rb +0 -17
- data/lib/textus/port/store.rb +0 -149
- data/lib/textus/port/watcher_lock.rb +0 -48
- data/lib/textus/produce/engine.rb +0 -40
- data/lib/textus/produce/publisher.rb +0 -21
- data/lib/textus/produce/render.rb +0 -20
- data/lib/textus/schema/registry.rb +0 -42
- data/lib/textus/schema/tools.rb +0 -108
- data/lib/textus/schema.rb +0 -100
- data/lib/textus/store/container.rb +0 -173
- data/lib/textus/store/cursor.rb +0 -26
- data/lib/textus/store/entry/reader.rb +0 -47
- data/lib/textus/store/entry/writer.rb +0 -219
- data/lib/textus/store/envelope/meta.rb +0 -61
- data/lib/textus/store/freshness/drift_detector.rb +0 -93
- data/lib/textus/store/freshness/evaluator.rb +0 -20
- data/lib/textus/store/freshness/verdict.rb +0 -24
- data/lib/textus/store/freshness.rb +0 -8
- data/lib/textus/store/index/builder.rb +0 -76
- 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 -124
- data/lib/textus/store/jobs/queue.rb +0 -162
- data/lib/textus/store/jobs/registry.rb +0 -19
- data/lib/textus/store/jobs/retention/base.rb +0 -52
- data/lib/textus/store/jobs/retention/sweep.rb +0 -55
- data/lib/textus/store/jobs/retention.rb +0 -8
- data/lib/textus/store/jobs/sweep.rb +0 -21
- data/lib/textus/store/jobs/worker.rb +0 -64
- data/lib/textus/store.rb +0 -122
- data/lib/textus/surface/cli/verb/doctor.rb +0 -20
- 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/projector.rb +0 -20
- data/lib/textus/surface/mcp.rb +0 -8
- data/lib/textus/value/command.rb +0 -16
- data/lib/textus/value/envelope.rb +0 -90
- data/lib/textus/value/result.rb +0 -46
- data/lib/textus/verb_registry.rb +0 -417
- 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
|
|
@@ -9,6 +9,20 @@ bindir: exe
|
|
|
9
9
|
cert_chain: []
|
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: concurrent-ruby
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '1.3'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '1.3'
|
|
12
26
|
- !ruby/object:Gem::Dependency
|
|
13
27
|
name: csv
|
|
14
28
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -93,6 +107,20 @@ dependencies:
|
|
|
93
107
|
- - ">="
|
|
94
108
|
- !ruby/object:Gem::Version
|
|
95
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'
|
|
96
124
|
- !ruby/object:Gem::Dependency
|
|
97
125
|
name: sqlite3
|
|
98
126
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -161,221 +189,177 @@ extra_rdoc_files: []
|
|
|
161
189
|
files:
|
|
162
190
|
- CHANGELOG.md
|
|
163
191
|
- README.md
|
|
164
|
-
- SPEC.md
|
|
165
|
-
- docs/architecture/README.md
|
|
166
|
-
- docs/reference/conventions.md
|
|
167
192
|
- exe/textus
|
|
168
193
|
- lib/textus.rb
|
|
169
|
-
- lib/textus/
|
|
170
|
-
- lib/textus/dispatch/binder.rb
|
|
171
|
-
- lib/textus/dispatch/contracts.rb
|
|
172
|
-
- lib/textus/dispatch/handler_registry.rb
|
|
173
|
-
- lib/textus/dispatch/middleware/audit_index.rb
|
|
174
|
-
- lib/textus/dispatch/middleware/auth.rb
|
|
175
|
-
- lib/textus/dispatch/middleware/base.rb
|
|
176
|
-
- lib/textus/dispatch/middleware/binder.rb
|
|
177
|
-
- lib/textus/dispatch/middleware/cascade.rb
|
|
178
|
-
- lib/textus/dispatch/pipeline.rb
|
|
179
|
-
- lib/textus/doctor.rb
|
|
180
|
-
- lib/textus/doctor/check.rb
|
|
181
|
-
- lib/textus/doctor/check/audit_log.rb
|
|
182
|
-
- lib/textus/doctor/check/generator_drift.rb
|
|
183
|
-
- lib/textus/doctor/check/illegal_keys.rb
|
|
184
|
-
- lib/textus/doctor/check/manifest_files.rb
|
|
185
|
-
- lib/textus/doctor/check/orphaned_publish_targets.rb
|
|
186
|
-
- lib/textus/doctor/check/proposal_targets.rb
|
|
187
|
-
- lib/textus/doctor/check/protocol_version.rb
|
|
188
|
-
- lib/textus/doctor/check/publish_tree_index_overlap.rb
|
|
189
|
-
- lib/textus/doctor/check/raw_asset_paths.rb
|
|
190
|
-
- lib/textus/doctor/check/rule_ambiguity.rb
|
|
191
|
-
- lib/textus/doctor/check/schema_parse_error.rb
|
|
192
|
-
- lib/textus/doctor/check/schema_violations.rb
|
|
193
|
-
- lib/textus/doctor/check/schemas.rb
|
|
194
|
-
- lib/textus/doctor/check/scratchpad_sources.rb
|
|
195
|
-
- lib/textus/doctor/check/sentinels.rb
|
|
196
|
-
- lib/textus/doctor/check/stale_reviewed_stamp.rb
|
|
197
|
-
- lib/textus/doctor/check/templates.rb
|
|
198
|
-
- lib/textus/doctor/check/unowned_schema_fields.rb
|
|
199
|
-
- lib/textus/doctor/validator.rb
|
|
194
|
+
- lib/textus/artifact.rb
|
|
200
195
|
- lib/textus/errors.rb
|
|
201
|
-
- lib/textus/
|
|
202
|
-
- lib/textus/
|
|
203
|
-
- lib/textus/
|
|
204
|
-
- lib/textus/
|
|
205
|
-
- lib/textus/
|
|
206
|
-
- lib/textus/
|
|
207
|
-
- lib/textus/
|
|
208
|
-
- lib/textus/
|
|
209
|
-
- lib/textus/
|
|
210
|
-
- lib/textus/
|
|
211
|
-
- lib/textus/
|
|
212
|
-
- lib/textus/
|
|
213
|
-
- lib/textus/
|
|
214
|
-
- lib/textus/
|
|
215
|
-
- lib/textus/
|
|
216
|
-
- lib/textus/
|
|
217
|
-
- lib/textus/
|
|
218
|
-
- lib/textus/
|
|
219
|
-
- lib/textus/
|
|
220
|
-
- lib/textus/
|
|
221
|
-
- lib/textus/
|
|
222
|
-
- lib/textus/
|
|
223
|
-
- lib/textus/
|
|
224
|
-
- lib/textus/
|
|
225
|
-
- lib/textus/
|
|
226
|
-
- lib/textus/
|
|
227
|
-
- lib/textus/
|
|
228
|
-
- lib/textus/
|
|
229
|
-
- lib/textus/
|
|
230
|
-
- lib/textus/
|
|
231
|
-
- lib/textus/
|
|
232
|
-
- lib/textus/
|
|
233
|
-
- lib/textus/
|
|
234
|
-
- lib/textus/
|
|
235
|
-
- lib/textus/
|
|
236
|
-
- lib/textus/
|
|
237
|
-
- lib/textus/
|
|
238
|
-
- lib/textus/
|
|
239
|
-
- lib/textus/
|
|
240
|
-
- lib/textus/
|
|
241
|
-
- lib/textus/
|
|
242
|
-
- lib/textus/
|
|
243
|
-
- lib/textus/
|
|
244
|
-
- lib/textus/
|
|
245
|
-
- lib/textus/
|
|
246
|
-
- lib/textus/
|
|
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/produce/render.rb
|
|
305
|
-
- lib/textus/
|
|
306
|
-
- lib/textus/schema
|
|
307
|
-
- lib/textus/schema/
|
|
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/store/jobs/index.rb
|
|
323
|
-
- lib/textus/store/jobs/materialize.rb
|
|
324
|
-
- lib/textus/store/jobs/plan.rb
|
|
325
|
-
- lib/textus/store/jobs/planner.rb
|
|
326
|
-
- lib/textus/store/jobs/queue.rb
|
|
327
|
-
- lib/textus/store/jobs/registry.rb
|
|
328
|
-
- lib/textus/store/jobs/retention.rb
|
|
329
|
-
- lib/textus/store/jobs/retention/base.rb
|
|
330
|
-
- lib/textus/store/jobs/retention/sweep.rb
|
|
331
|
-
- lib/textus/store/jobs/sweep.rb
|
|
332
|
-
- lib/textus/store/jobs/worker.rb
|
|
333
|
-
- lib/textus/store/layout.rb
|
|
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
|
|
334
317
|
- lib/textus/surface/cli.rb
|
|
335
318
|
- lib/textus/surface/cli/group.rb
|
|
336
319
|
- lib/textus/surface/cli/group/data.rb
|
|
337
320
|
- lib/textus/surface/cli/group/key.rb
|
|
338
321
|
- lib/textus/surface/cli/group/mcp.rb
|
|
339
|
-
- lib/textus/surface/cli/group/rule.rb
|
|
340
322
|
- lib/textus/surface/cli/group/schema.rb
|
|
323
|
+
- lib/textus/surface/cli/group/web.rb
|
|
341
324
|
- lib/textus/surface/cli/runner.rb
|
|
342
325
|
- lib/textus/surface/cli/sources.rb
|
|
343
326
|
- lib/textus/surface/cli/verb.rb
|
|
344
|
-
- lib/textus/surface/cli/verb/doctor.rb
|
|
345
327
|
- lib/textus/surface/cli/verb/get.rb
|
|
346
328
|
- lib/textus/surface/cli/verb/init.rb
|
|
347
329
|
- lib/textus/surface/cli/verb/mcp_serve.rb
|
|
348
330
|
- lib/textus/surface/cli/verb/put.rb
|
|
349
|
-
- lib/textus/surface/cli/verb/schema_diff.rb
|
|
350
|
-
- lib/textus/surface/cli/verb/schema_init.rb
|
|
351
|
-
- lib/textus/surface/cli/verb/schema_migrate.rb
|
|
352
331
|
- lib/textus/surface/cli/verb/watch.rb
|
|
353
|
-
- 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
|
|
354
335
|
- lib/textus/surface/mcp/catalog.rb
|
|
336
|
+
- lib/textus/surface/mcp/cursor_manager.rb
|
|
337
|
+
- lib/textus/surface/mcp/drift_annotation.rb
|
|
355
338
|
- lib/textus/surface/mcp/errors.rb
|
|
356
|
-
- lib/textus/surface/mcp/projector.rb
|
|
357
339
|
- lib/textus/surface/mcp/server.rb
|
|
358
340
|
- lib/textus/surface/watcher.rb
|
|
341
|
+
- lib/textus/surface/web.rb
|
|
359
342
|
- lib/textus/value/call.rb
|
|
360
|
-
- lib/textus/value/command.rb
|
|
361
343
|
- lib/textus/value/duration.rb
|
|
362
|
-
- lib/textus/value/envelope.rb
|
|
363
344
|
- lib/textus/value/etag.rb
|
|
364
345
|
- lib/textus/value/payload.rb
|
|
365
|
-
- lib/textus/value/result.rb
|
|
366
346
|
- lib/textus/value/role.rb
|
|
367
347
|
- lib/textus/value/types.rb
|
|
368
348
|
- lib/textus/value/uid.rb
|
|
369
|
-
- lib/textus/verb_registry.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: []
|