cc-transcript 0.5.0__tar.gz → 0.6.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 (34) hide show
  1. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/PKG-INFO +1 -1
  2. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/filterspec.py +6 -0
  3. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/pyproject.toml +1 -1
  4. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/Cargo.lock +0 -0
  5. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/Cargo.toml +0 -0
  6. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/LICENSE +0 -0
  7. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/README.md +0 -0
  8. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/__init__.py +0 -0
  9. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/_parser_rs.pyi +0 -0
  10. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/backend.py +0 -0
  11. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/builders.py +0 -0
  12. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/discovery.py +0 -0
  13. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/filters.py +0 -0
  14. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/models.py +0 -0
  15. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/parser.py +0 -0
  16. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/py.typed +0 -0
  17. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/rust.py +0 -0
  18. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/__init__.py +0 -0
  19. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/buckets.py +0 -0
  20. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/engine.py +0 -0
  21. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/lexicon.py +0 -0
  22. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/messages.py +0 -0
  23. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/sentiment/scorespec.py +0 -0
  24. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/cc_transcript/store.py +0 -0
  25. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/Cargo.toml +0 -0
  26. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/data/afinn-en-165.tsv +0 -0
  27. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/data/domain_overrides.tsv +0 -0
  28. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/event.rs +0 -0
  29. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/filter.rs +0 -0
  30. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/lexicon.rs +0 -0
  31. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/lib.rs +0 -0
  32. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/model.rs +0 -0
  33. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/score.rs +0 -0
  34. {cc_transcript-0.5.0 → cc_transcript-0.6.0}/rust/src/value.rs +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cc-transcript
3
- Version: 0.5.0
3
+ Version: 0.6.0
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: Operating System :: OS Independent
@@ -85,6 +85,10 @@ CONTINUATION_GROUPS: tuple[tuple[str, str], ...] = (
85
85
  ),
86
86
  )
87
87
 
88
+ # Bash-mode (`!`) command echoes recorded as user turns — the command line and its
89
+ # captured stdout/stderr, not authored feedback.
90
+ COMMAND_ECHO_GROUPS: tuple[tuple[str, str], ...] = (("command_echo", r"<bash-(?:input|stdout|stderr)\b"),)
91
+
88
92
  # Named junk categories a consumer composes via ``drop_junk(...)``. Interrupt and
89
93
  # stop-hook are kept separate because they carry pushback and must never be folded
90
94
  # into the structural-noise default.
@@ -94,6 +98,7 @@ JUNK_CATEGORIES: dict[str, tuple[tuple[str, str], ...]] = {
94
98
  "interrupt": INTERRUPT_MARKER_GROUPS,
95
99
  "stop_hook": STOP_HOOK_GROUPS,
96
100
  "continuation": CONTINUATION_GROUPS,
101
+ "command_echo": COMMAND_ECHO_GROUPS,
97
102
  }
98
103
 
99
104
  # The superset of structural noise (structural ∪ agent-injection), WITHOUT
@@ -144,6 +149,7 @@ PORTABLE_GROUP_NAMES: frozenset[str] = frozenset(
144
149
  *INTERRUPT_MARKER_GROUPS,
145
150
  *STOP_HOOK_GROUPS,
146
151
  *CONTINUATION_GROUPS,
152
+ *COMMAND_ECHO_GROUPS,
147
153
  *FRUSTRATION_GROUPS,
148
154
  *MILD_IMPATIENCE_GROUPS,
149
155
  )
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "cc-transcript"
3
- version = "0.5.0"
3
+ version = "0.6.0"
4
4
  description = "Typed events for Claude Code transcripts: discovery, a superset JSONL parser (Python + Rust), and ingestion-state tracking."
5
5
  readme = "README.md"
6
6
  license = "PolyForm-Noncommercial-1.0.0"
File without changes
File without changes
File without changes
File without changes