Stats
Actions
Tags
From pysbs-dev
SBSArchive and SBSARManager API. Use when reading, modifying, or creating SBSAR archive files programmatically.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pysbs-dev:api-archiveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
SBSArchive, SBSARManager - SBSAR 아카이브 파일 조작 API.
SBSArchive, SBSARManager - SBSAR 아카이브 파일 조작 API.
| Class | Description |
|---|---|
SBSArchive | SBSAR 파일 읽기 |
SBSARManager | SBSAR 프리셋/파라미터 편집 |
SBSAR 정보 조회:
from pysbs import sbsarchive
archive = sbsarchive.SBSArchive(ctx, '/path/to/material.sbsar')
archive.parseDoc()
graphs = archive.getSBSARGraphList()
for graph in graphs:
print(graph.mIdentifier)
프리셋 추가:
from pysbs.sbsarchive import SBSARManager
manager = SBSARManager(ctx, '/path/to/material.sbsar')
manager.addPreset(
aGraphIdentifier='MainGraph',
aPresetLabel='NewPreset',
aPresetValues={'intensity': 0.8}
)
manager.write()
SBSAR 생성:
from pysbs import batchtools
popen = batchtools.sbscooker(
inputs='/path/to/material.sbs',
output_path='/path/to/output/'
)
popen.wait()
npx claudepluginhub juyeongyi/jylee_claude_marketplace --plugin pysbs-devCreates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.