indico-cli 0.2.0__tar.gz → 0.2.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.
- {indico_cli-0.2.0 → indico_cli-0.2.2}/.gitignore +1 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/PKG-INFO +15 -3
- {indico_cli-0.2.0 → indico_cli-0.2.2}/README.md +11 -2
- indico_cli-0.2.2/docs/superpowers/plans/2026-03-24-search-results-and-error-messages.md +735 -0
- indico_cli-0.2.2/docs/superpowers/specs/2026-03-24-search-results-and-error-messages-design.md +185 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/indico_cli/_version.py +2 -2
- {indico_cli-0.2.0 → indico_cli-0.2.2}/indico_cli/cli.py +5 -2
- {indico_cli-0.2.0 → indico_cli-0.2.2}/indico_cli/indico_api.py +77 -28
- {indico_cli-0.2.0 → indico_cli-0.2.2}/pyproject.toml +6 -0
- indico_cli-0.2.2/skills/indico-skill/SKILL.md +338 -0
- indico_cli-0.2.2/tests/__init__.py +0 -0
- indico_cli-0.2.2/tests/test_error_messages.py +69 -0
- indico_cli-0.2.2/tests/test_format_search_result.py +168 -0
- indico_cli-0.2.2/uv.lock +115 -0
- indico_cli-0.2.0/skill/.claude-plugin/plugin.json +0 -11
- indico_cli-0.2.0/skill/package.json +0 -7
- indico_cli-0.2.0/skill/skills/add-timetable-entry/SKILL.md +0 -41
- indico_cli-0.2.0/skill/skills/configure/SKILL.md +0 -74
- indico_cli-0.2.0/skill/skills/create-contribution/SKILL.md +0 -48
- indico_cli-0.2.0/skill/skills/create-event/SKILL.md +0 -52
- indico_cli-0.2.0/skill/skills/create-event-with-agenda/SKILL.md +0 -74
- indico_cli-0.2.0/skill/skills/create-session/SKILL.md +0 -33
- indico_cli-0.2.0/skill/skills/delete-timetable-entry/SKILL.md +0 -32
- indico_cli-0.2.0/skill/skills/download-attachment/SKILL.md +0 -38
- indico_cli-0.2.0/skill/skills/get-contributions/SKILL.md +0 -39
- indico_cli-0.2.0/skill/skills/get-event-details/SKILL.md +0 -39
- indico_cli-0.2.0/skill/skills/get-files/SKILL.md +0 -54
- indico_cli-0.2.0/skill/skills/get-user-info/SKILL.md +0 -34
- indico_cli-0.2.0/skill/skills/search-by-term/SKILL.md +0 -38
- indico_cli-0.2.0/skill/skills/search-categories/SKILL.md +0 -38
- indico_cli-0.2.0/skill/skills/search-events/SKILL.md +0 -41
- {indico_cli-0.2.0 → indico_cli-0.2.2}/.gitlab-ci.yml +0 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/CLAUDE.md +0 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/LICENSE +0 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/indico_cli/__init__.py +0 -0
- {indico_cli-0.2.0 → indico_cli-0.2.2}/indico_cli/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: indico-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: CLI tool for interacting with Indico event management systems
|
|
5
5
|
Project-URL: Repository, https://gitlab.cern.ch/cern-agent-skills/indico-cli
|
|
6
6
|
License: MIT
|
|
@@ -16,6 +16,9 @@ Classifier: Topic :: Scientific/Engineering
|
|
|
16
16
|
Requires-Python: >=3.12
|
|
17
17
|
Requires-Dist: click>=8.0
|
|
18
18
|
Requires-Dist: httpx>=0.25
|
|
19
|
+
Provides-Extra: dev
|
|
20
|
+
Requires-Dist: pytest-asyncio>=0.21; extra == 'dev'
|
|
21
|
+
Requires-Dist: pytest>=7.0; extra == 'dev'
|
|
19
22
|
Description-Content-Type: text/markdown
|
|
20
23
|
|
|
21
24
|
# indico-cli
|
|
@@ -106,12 +109,21 @@ Run `indico-cli --help` to see all available commands, or `indico-cli <command>
|
|
|
106
109
|
|
|
107
110
|
## Claude Code Skill
|
|
108
111
|
|
|
109
|
-
A Claude Code skill
|
|
112
|
+
A Claude Code skill is included for AI-assisted Indico workflows. It provides a single consolidated skill covering all CLI commands: searching events, browsing categories, creating events/sessions/contributions, managing timetables, downloading files, and configuring credentials.
|
|
113
|
+
|
|
114
|
+
The skill also includes guidance for multi-step workflows such as:
|
|
115
|
+
- Recovering from missing or deleted events by searching for alternatives
|
|
116
|
+
- Chaining search, download, and content extraction to answer questions from slides
|
|
117
|
+
- Paginating through large categories (works around the 10-event display limit)
|
|
118
|
+
|
|
119
|
+
### Install the skill
|
|
110
120
|
|
|
111
121
|
```bash
|
|
112
|
-
|
|
122
|
+
npx skills add https://gitlab.cern.ch/cern-agent-skills/indico-cli.git
|
|
113
123
|
```
|
|
114
124
|
|
|
125
|
+
Once installed, Claude Code will automatically use the skill whenever you ask about Indico events, conferences, meetings, or agendas. You can also invoke it directly with `/indico-skill`.
|
|
126
|
+
|
|
115
127
|
## Documentation
|
|
116
128
|
|
|
117
129
|
- [Indico HTTP API docs](https://docs.getindico.io/en/stable/http-api/)
|
|
@@ -86,12 +86,21 @@ Run `indico-cli --help` to see all available commands, or `indico-cli <command>
|
|
|
86
86
|
|
|
87
87
|
## Claude Code Skill
|
|
88
88
|
|
|
89
|
-
A Claude Code skill
|
|
89
|
+
A Claude Code skill is included for AI-assisted Indico workflows. It provides a single consolidated skill covering all CLI commands: searching events, browsing categories, creating events/sessions/contributions, managing timetables, downloading files, and configuring credentials.
|
|
90
|
+
|
|
91
|
+
The skill also includes guidance for multi-step workflows such as:
|
|
92
|
+
- Recovering from missing or deleted events by searching for alternatives
|
|
93
|
+
- Chaining search, download, and content extraction to answer questions from slides
|
|
94
|
+
- Paginating through large categories (works around the 10-event display limit)
|
|
95
|
+
|
|
96
|
+
### Install the skill
|
|
90
97
|
|
|
91
98
|
```bash
|
|
92
|
-
|
|
99
|
+
npx skills add https://gitlab.cern.ch/cern-agent-skills/indico-cli.git
|
|
93
100
|
```
|
|
94
101
|
|
|
102
|
+
Once installed, Claude Code will automatically use the skill whenever you ask about Indico events, conferences, meetings, or agendas. You can also invoke it directly with `/indico-skill`.
|
|
103
|
+
|
|
95
104
|
## Documentation
|
|
96
105
|
|
|
97
106
|
- [Indico HTTP API docs](https://docs.getindico.io/en/stable/http-api/)
|