autotouch-cli 0.2.52__tar.gz → 0.2.58__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 (53) hide show
  1. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/PKG-INFO +14 -5
  2. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/README.md +13 -4
  3. autotouch_cli-0.2.58/autotouch_cli/cli.py +2378 -0
  4. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/auth.py +107 -21
  5. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/cells.py +4 -5
  6. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/columns.py +15 -32
  7. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/jobs.py +11 -4
  8. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/leads.py +11 -25
  9. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/linkedin.py +4 -5
  10. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/prompts.py +9 -18
  11. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/rows.py +158 -29
  12. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/search.py +17 -9
  13. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/sequences.py +16 -26
  14. autotouch_cli-0.2.58/autotouch_cli/commands/tables.py +281 -0
  15. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/tasks.py +3 -3
  16. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/webhooks.py +39 -8
  17. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/workspace_secrets.py +6 -12
  18. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/auth.py +20 -6
  19. autotouch_cli-0.2.58/autotouch_cli/core/csv_import.py +456 -0
  20. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/http.py +74 -10
  21. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/io.py +31 -24
  22. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/output.py +25 -18
  23. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/polling.py +20 -10
  24. autotouch_cli-0.2.58/autotouch_cli/core/run.py +778 -0
  25. autotouch_cli-0.2.58/autotouch_cli/core/validation.py +339 -0
  26. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/data/CLI_REFERENCE.md +316 -30
  27. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/data/cli-manifest.json +3293 -1445
  28. autotouch_cli-0.2.58/autotouch_cli/exceptions.py +79 -0
  29. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/mongo_status.py +4 -5
  30. autotouch_cli-0.2.58/autotouch_cli/parser.py +809 -0
  31. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/parser_groups.py +29 -0
  32. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/templates.py +741 -34
  33. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/PKG-INFO +14 -5
  34. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/SOURCES.txt +5 -0
  35. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_shared/provider_registry.py +89 -1
  36. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_shared/search_contract.py +9 -1
  37. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/pyproject.toml +1 -1
  38. autotouch_cli-0.2.52/autotouch_cli/cli.py +0 -4289
  39. autotouch_cli-0.2.52/autotouch_cli/commands/tables.py +0 -107
  40. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/MANIFEST.in +0 -0
  41. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/__init__.py +0 -0
  42. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/cli_contracts.py +0 -0
  43. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/commands/__init__.py +0 -0
  44. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/__init__.py +0 -0
  45. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/core/config.py +0 -0
  46. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli/sequence_support.py +0 -0
  47. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/dependency_links.txt +0 -0
  48. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/entry_points.txt +0 -0
  49. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/requires.txt +0 -0
  50. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_cli.egg-info/top_level.txt +0 -0
  51. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_shared/__init__.py +0 -0
  52. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/autotouch_shared/linkedin_contract.py +0 -0
  53. {autotouch_cli-0.2.52 → autotouch_cli-0.2.58}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: autotouch-cli
3
- Version: 0.2.52
3
+ Version: 0.2.58
4
4
  Summary: Autotouch Smart Table CLI
5
5
  Project-URL: Homepage, https://app.autotouch.ai
6
6
  Project-URL: Documentation, https://github.com/nicolonic/autotouch_main/tree/main/docs/research-table/reference
@@ -40,6 +40,8 @@ For a shipped human-readable reference generated from the installed parser, use
40
40
  pipx install autotouch-cli
41
41
  # or
42
42
  pip install autotouch-cli
43
+ # upgrade
44
+ pip install -U autotouch-cli
43
45
  ```
44
46
 
45
47
  ## First Run
@@ -135,6 +137,7 @@ autotouch rows get --table-id "$TABLE_ID" --row-id "$ROW_ID" --output json
135
137
  - Poll authoritative state: `autotouch jobs get`
136
138
  - Create/activate sequences: `autotouch sequences recipe`, `autotouch sequences create`, `autotouch sequences activate`
137
139
  - Query leads: `autotouch leads query`
140
+ - Find a lead by email or phone: `autotouch leads query --search '<email-or-phone>' --limit 10`
138
141
 
139
142
  ## More
140
143
 
@@ -155,9 +158,15 @@ For `llm_enrichment` in `agent` mode, the recommended path is:
155
158
 
156
159
  Only send `user_schema` / `response_schema` when you intentionally want to override the generated schema and keep it aligned yourself. The installed recipe surface at `autotouch columns recipe --type llm_enrichment` follows this contract.
157
160
 
161
+ Prompt variables in authored prompts support nested JSON access:
162
+ - Use flat row variables like `{{company_name}}` for scalar columns.
163
+ - Use dotted placeholders like `{{linkedin_lookup.linkedin_url}}` when the source column stores JSON or stringified JSON.
164
+ - For arrays, use numeric indexes such as `{{contacts.0.email}}`.
165
+ - This is different from config payload mappings, which use objects like `{ "column": "linkedin_lookup", "path": "linkedin_url" }`.
166
+
158
167
  ## Docs
159
168
 
160
- - Full CLI reference: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/reference/autotouch-cli.md
161
- - Agent playbook: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/guides/autotouch-cli-agent-playbook.md
162
- - Tables/API reference: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/reference/tables-api.md
163
- - Authentication/scopes: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/platform/authentication.md
169
+ - Full CLI reference: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/reference/autotouch-cli.md
170
+ - Agent playbook: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/guides/autotouch-cli-agent-playbook.md
171
+ - Tables/API reference: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/reference/tables-api.md
172
+ - Authentication/scopes: https://github.com/nicolonic/autotouch_main/blob/main/docs/platform/authentication.md
@@ -15,6 +15,8 @@ For a shipped human-readable reference generated from the installed parser, use
15
15
  pipx install autotouch-cli
16
16
  # or
17
17
  pip install autotouch-cli
18
+ # upgrade
19
+ pip install -U autotouch-cli
18
20
  ```
19
21
 
20
22
  ## First Run
@@ -110,6 +112,7 @@ autotouch rows get --table-id "$TABLE_ID" --row-id "$ROW_ID" --output json
110
112
  - Poll authoritative state: `autotouch jobs get`
111
113
  - Create/activate sequences: `autotouch sequences recipe`, `autotouch sequences create`, `autotouch sequences activate`
112
114
  - Query leads: `autotouch leads query`
115
+ - Find a lead by email or phone: `autotouch leads query --search '<email-or-phone>' --limit 10`
113
116
 
114
117
  ## More
115
118
 
@@ -130,9 +133,15 @@ For `llm_enrichment` in `agent` mode, the recommended path is:
130
133
 
131
134
  Only send `user_schema` / `response_schema` when you intentionally want to override the generated schema and keep it aligned yourself. The installed recipe surface at `autotouch columns recipe --type llm_enrichment` follows this contract.
132
135
 
136
+ Prompt variables in authored prompts support nested JSON access:
137
+ - Use flat row variables like `{{company_name}}` for scalar columns.
138
+ - Use dotted placeholders like `{{linkedin_lookup.linkedin_url}}` when the source column stores JSON or stringified JSON.
139
+ - For arrays, use numeric indexes such as `{{contacts.0.email}}`.
140
+ - This is different from config payload mappings, which use objects like `{ "column": "linkedin_lookup", "path": "linkedin_url" }`.
141
+
133
142
  ## Docs
134
143
 
135
- - Full CLI reference: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/reference/autotouch-cli.md
136
- - Agent playbook: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/guides/autotouch-cli-agent-playbook.md
137
- - Tables/API reference: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/research-table/reference/tables-api.md
138
- - Authentication/scopes: https://github.com/nicolonic/autotouch_main/blob/autotouch-cli-v0.2.52/docs/platform/authentication.md
144
+ - Full CLI reference: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/reference/autotouch-cli.md
145
+ - Agent playbook: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/guides/autotouch-cli-agent-playbook.md
146
+ - Tables/API reference: https://github.com/nicolonic/autotouch_main/blob/main/docs/research-table/reference/tables-api.md
147
+ - Authentication/scopes: https://github.com/nicolonic/autotouch_main/blob/main/docs/platform/authentication.md