podojo-cli 1.5.0__tar.gz → 1.5.2__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.
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/CHANGELOG.md +10 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/PKG-INFO +24 -3
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/README.md +23 -2
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/pyproject.toml +1 -1
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/config.py +1 -1
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/uv.lock +1 -1
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/.github/workflows/publish.yml +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/.gitignore +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/CLAUDE.md +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/LICENSE +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/__init__.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/client.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/__init__.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/aiinterviews.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/auth.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/interviews.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/projects.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/showreel.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/synth.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/transcripts.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/usertests.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/commands/videos.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/main.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/synth/__init__.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/synth/driver.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/synth/session.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/version_check.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/video/__init__.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/src/podojo_cli/video/showreel.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/conftest.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_aiinterviews.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_auth.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_interviews.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_projects.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_showreel.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_transcripts.py +0 -0
- {podojo_cli-1.5.0 → podojo_cli-1.5.2}/tests/test_usertests.py +0 -0
|
@@ -5,6 +5,16 @@ All notable changes to the Podojo CLI will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org).
|
|
7
7
|
|
|
8
|
+
## [1.5.2] - 2026-07-02
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- Document the `aiinterviews` command group in the README, so it shows up in the PyPI project description.
|
|
12
|
+
|
|
13
|
+
## [1.5.1] - 2026-07-02
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- Default AI interviews frontend URL is now `https://ai-interviews.podojo.com` (was the Render-hosted URL). Explicit `ai_interviews_url` / `PODOJO_AI_INTERVIEWS_URL` overrides are unaffected.
|
|
17
|
+
|
|
8
18
|
## [1.5.0] - 2026-07-02
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: podojo-cli
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.2
|
|
4
4
|
Summary: CLI for the Podojo user research platform
|
|
5
5
|
Project-URL: Homepage, https://github.com/podojo/cli-podojo
|
|
6
6
|
Project-URL: Source, https://github.com/podojo/cli-podojo
|
|
@@ -34,8 +34,9 @@ Description-Content-Type: text/markdown
|
|
|
34
34
|
Command-line tool for the [Podojo](https://podojo.com) user research platform.
|
|
35
35
|
|
|
36
36
|
`podojo` lets UX researchers manage projects, upload and transcribe interviews,
|
|
37
|
-
build unmoderated user tests,
|
|
38
|
-
synthetic test participants — all without
|
|
37
|
+
build unmoderated user tests, run AI voice interviews, download research
|
|
38
|
+
videos, cut showreels, and run synthetic test participants — all without
|
|
39
|
+
leaving the terminal.
|
|
39
40
|
|
|
40
41
|
## Installation
|
|
41
42
|
|
|
@@ -122,6 +123,26 @@ podojo usertests delete checkout-usability-v1
|
|
|
122
123
|
podojo usertests snippet # recorder script for self-hosted prototypes
|
|
123
124
|
```
|
|
124
125
|
|
|
126
|
+
### AI interviews
|
|
127
|
+
|
|
128
|
+
An AI interview is a self-serve voice conversation: an AI interviewer asks
|
|
129
|
+
your questions in order and adaptively follows up. One YAML file defines one
|
|
130
|
+
study:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
podojo aiinterviews example > my-interview.yaml # print a template to start from
|
|
134
|
+
podojo aiinterviews validate my-interview.yaml # check it without creating
|
|
135
|
+
podojo aiinterviews create -f my-interview.yaml
|
|
136
|
+
podojo aiinterviews list
|
|
137
|
+
podojo aiinterviews get checkout-experience-v1
|
|
138
|
+
podojo aiinterviews update checkout-experience-v1 -f changes.yaml
|
|
139
|
+
podojo aiinterviews delete checkout-experience-v1
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
`create` and `get` print the participant Preview and Live URLs. The frontend
|
|
143
|
+
base URL can be overridden via `ai_interviews_url` in `~/.podojo.toml` or
|
|
144
|
+
`PODOJO_AI_INTERVIEWS_URL`.
|
|
145
|
+
|
|
125
146
|
### Synthetic participants
|
|
126
147
|
|
|
127
148
|
The `synth` group drives a Playwright browser through a user test preview so an
|
|
@@ -3,8 +3,9 @@
|
|
|
3
3
|
Command-line tool for the [Podojo](https://podojo.com) user research platform.
|
|
4
4
|
|
|
5
5
|
`podojo` lets UX researchers manage projects, upload and transcribe interviews,
|
|
6
|
-
build unmoderated user tests,
|
|
7
|
-
synthetic test participants — all without
|
|
6
|
+
build unmoderated user tests, run AI voice interviews, download research
|
|
7
|
+
videos, cut showreels, and run synthetic test participants — all without
|
|
8
|
+
leaving the terminal.
|
|
8
9
|
|
|
9
10
|
## Installation
|
|
10
11
|
|
|
@@ -91,6 +92,26 @@ podojo usertests delete checkout-usability-v1
|
|
|
91
92
|
podojo usertests snippet # recorder script for self-hosted prototypes
|
|
92
93
|
```
|
|
93
94
|
|
|
95
|
+
### AI interviews
|
|
96
|
+
|
|
97
|
+
An AI interview is a self-serve voice conversation: an AI interviewer asks
|
|
98
|
+
your questions in order and adaptively follows up. One YAML file defines one
|
|
99
|
+
study:
|
|
100
|
+
|
|
101
|
+
```bash
|
|
102
|
+
podojo aiinterviews example > my-interview.yaml # print a template to start from
|
|
103
|
+
podojo aiinterviews validate my-interview.yaml # check it without creating
|
|
104
|
+
podojo aiinterviews create -f my-interview.yaml
|
|
105
|
+
podojo aiinterviews list
|
|
106
|
+
podojo aiinterviews get checkout-experience-v1
|
|
107
|
+
podojo aiinterviews update checkout-experience-v1 -f changes.yaml
|
|
108
|
+
podojo aiinterviews delete checkout-experience-v1
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
`create` and `get` print the participant Preview and Live URLs. The frontend
|
|
112
|
+
base URL can be overridden via `ai_interviews_url` in `~/.podojo.toml` or
|
|
113
|
+
`PODOJO_AI_INTERVIEWS_URL`.
|
|
114
|
+
|
|
94
115
|
### Synthetic participants
|
|
95
116
|
|
|
96
117
|
The `synth` group drives a Playwright browser through a user test preview so an
|
|
@@ -8,7 +8,7 @@ KEYRING_SERVICE = "podojo-cli"
|
|
|
8
8
|
KEYRING_USERNAME = "api_key"
|
|
9
9
|
CONFIG_PATH = Path.home() / ".podojo.toml"
|
|
10
10
|
DEFAULT_BASE_URL = "https://podojo-fastapi-mcp.onrender.com"
|
|
11
|
-
DEFAULT_AI_INTERVIEWS_URL = "https://
|
|
11
|
+
DEFAULT_AI_INTERVIEWS_URL = "https://ai-interviews.podojo.com"
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
def load_config() -> dict:
|
|
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
|