SDK for building test sequences for Station Service
Project description
Station Service SDK
SDK for building test sequences for Station Service.
Installation
# From GitHub
pip install git+https://github.com/Soochol/station-service-sdk.git
# Install Claude Code skill
station-sdk init
Quick Start
from station_service_sdk import SequenceBase, RunResult
class MySequence(SequenceBase):
name = "my_sequence"
version = "1.0.0"
description = "My test sequence"
async def setup(self) -> None:
self.emit_log("info", "Initializing...")
async def run(self) -> RunResult:
self.emit_step_start("test", 1, 1, "Test step")
self.emit_measurement("voltage", 3.3, "V")
self.emit_step_complete("test", 1, True, 1.0)
return {"passed": True, "measurements": {"voltage": 3.3}}
async def teardown(self) -> None:
self.emit_log("info", "Cleanup complete")
if __name__ == "__main__":
exit(MySequence.run_from_cli())
CLI Commands
# Initialize Claude Code skill in current project
station-sdk init
# Force overwrite existing skill
station-sdk init --force
# Show version
station-sdk version
Documentation
After running station-sdk init, Claude Code will have access to the SDK development guide at .claude/skills/sequence-development/SKILL.md.
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
station_service_sdk-1.0.5.tar.gz
(68.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file station_service_sdk-1.0.5.tar.gz.
File metadata
- Download URL: station_service_sdk-1.0.5.tar.gz
- Upload date:
- Size: 68.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c401e014979cda0b4c6147ffcbe34f399dd0517be8d6cd903ab29be9b6356d40
|
|
| MD5 |
c1301bd0c932749478f76e21e00f102e
|
|
| BLAKE2b-256 |
1a4d6593fc7059aeb81367ee16b21e6125080fbea0ac08680124dd4da8a00010
|
File details
Details for the file station_service_sdk-1.0.5-py3-none-any.whl.
File metadata
- Download URL: station_service_sdk-1.0.5-py3-none-any.whl
- Upload date:
- Size: 73.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f241b3300450510bf4078eba5c9c65c6e2616da475635711fbd8e28d08a2eb28
|
|
| MD5 |
aae21d8d4e330032796a2767185c27e9
|
|
| BLAKE2b-256 |
06cbbc98fbbffe38bc6387dd6a3b76a543a5b462b0f1149c9d2336fe90606910
|