cc-transcript 7.0.1__tar.gz → 7.1.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.
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/PKG-INFO +1 -1
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/__init__.py +4 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/tools.py +32 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/pyproject.toml +1 -1
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/Cargo.lock +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/Cargo.toml +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/LICENSE +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/README.md +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/__main__.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/_parser_rs.pyi +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/activity.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/backend.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/builders.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/cli.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/context.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/corrections.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/corrections_cli.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/cost.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/decisions.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/discovery.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/disktruth.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/evidence.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/extract/__init__.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/extract/correct.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/filterspec.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/ids.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/judge/__init__.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/judge/llm.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/judge/verdicts.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/messages.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/__init__.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/candidates.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/confidence.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/engine.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/filterspec.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/formats.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/signals.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/sourcekind.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/spec.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/mining/store.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/models.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/parser.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/py.typed +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/query.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/render.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/rust.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/sentiment/__init__.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/sentiment/buckets.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/sentiment/engine.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/sentiment/lexicon.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/sentiment/scorespec.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/cc_transcript/store.py +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/Cargo.toml +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/data/afinn-en-165.tsv +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/data/domain_overrides.tsv +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/event.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/filter.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/lexicon.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/lib.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/mining.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/model.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/score.rs +0 -0
- {cc_transcript-7.0.1 → cc_transcript-7.1.0}/rust/src/value.rs +0 -0
|
@@ -48,6 +48,7 @@ EXPORTS: dict[str, str] = {
|
|
|
48
48
|
"ToolCall",
|
|
49
49
|
"ToolCallBase",
|
|
50
50
|
"ToolInputError",
|
|
51
|
+
"WorkflowCall",
|
|
51
52
|
"WriteCall",
|
|
52
53
|
"expand_tool_names",
|
|
53
54
|
"file_path_of",
|
|
@@ -620,6 +621,9 @@ if TYPE_CHECKING:
|
|
|
620
621
|
from cc_transcript.tools import (
|
|
621
622
|
ToolInputError as ToolInputError,
|
|
622
623
|
)
|
|
624
|
+
from cc_transcript.tools import (
|
|
625
|
+
WorkflowCall as WorkflowCall,
|
|
626
|
+
)
|
|
623
627
|
from cc_transcript.tools import (
|
|
624
628
|
WriteCall as WriteCall,
|
|
625
629
|
)
|
|
@@ -160,6 +160,27 @@ class TaskCall(ToolCallBase):
|
|
|
160
160
|
run_in_background: bool | None = None
|
|
161
161
|
|
|
162
162
|
|
|
163
|
+
@dataclass(frozen=True, slots=True, kw_only=True)
|
|
164
|
+
class WorkflowCall(ToolCallBase):
|
|
165
|
+
"""A Workflow dynamic-orchestration dispatch.
|
|
166
|
+
|
|
167
|
+
Attributes:
|
|
168
|
+
script: The inline workflow script, when passed directly.
|
|
169
|
+
script_path: Path to a script file on disk, when passed instead of
|
|
170
|
+
``script``.
|
|
171
|
+
workflow_name: A predefined workflow's name (``raw["name"]`` — distinct
|
|
172
|
+
from :attr:`ToolCallBase.name`, the tool name).
|
|
173
|
+
args: The value exposed to the script as its ``args`` global.
|
|
174
|
+
resume_from_run_id: A prior run to resume from.
|
|
175
|
+
"""
|
|
176
|
+
|
|
177
|
+
script: str | None = None
|
|
178
|
+
script_path: str | None = None
|
|
179
|
+
workflow_name: str | None = None
|
|
180
|
+
args: Any = None
|
|
181
|
+
resume_from_run_id: str | None = None
|
|
182
|
+
|
|
183
|
+
|
|
163
184
|
@dataclass(frozen=True, slots=True, kw_only=True)
|
|
164
185
|
class SkillCall(ToolCallBase):
|
|
165
186
|
"""A Skill invocation."""
|
|
@@ -209,6 +230,7 @@ ToolCall = (
|
|
|
209
230
|
| GrepCall
|
|
210
231
|
| GlobCall
|
|
211
232
|
| TaskCall
|
|
233
|
+
| WorkflowCall
|
|
212
234
|
| SkillCall
|
|
213
235
|
| TaskCreateCall
|
|
214
236
|
| TaskUpdateCall
|
|
@@ -365,6 +387,16 @@ def typed_tool_call(name: str, raw: Mapping[str, Any]) -> ToolCall:
|
|
|
365
387
|
agent_name=raw.get("name"),
|
|
366
388
|
run_in_background=raw.get("run_in_background"),
|
|
367
389
|
)
|
|
390
|
+
case "Workflow":
|
|
391
|
+
return WorkflowCall(
|
|
392
|
+
name=name,
|
|
393
|
+
raw=raw,
|
|
394
|
+
script=raw.get("script"),
|
|
395
|
+
script_path=raw.get("scriptPath") or raw.get("script_path"),
|
|
396
|
+
workflow_name=raw.get("name"),
|
|
397
|
+
args=raw.get("args"),
|
|
398
|
+
resume_from_run_id=raw.get("resumeFromRunId") or raw.get("resume_from_run_id"),
|
|
399
|
+
)
|
|
368
400
|
case "Skill":
|
|
369
401
|
return SkillCall(name=name, raw=raw, skill=raw["skill"], args=raw.get("args"))
|
|
370
402
|
case "TaskCreate":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "cc-transcript"
|
|
3
|
-
version = "7.0
|
|
3
|
+
version = "7.1.0"
|
|
4
4
|
description = "The Claude Code session-activity platform: a superset JSONL parser (Rust fast path, Python reference), typed tool calls with a cross-language content digest, turns/edits/evidence over one spine, context windows with labeled fidelity, unified decision and correction ledgers, LLM judging, and a transcript-investigation CLI."
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|