chore: restructure skills repo with new agents and skill bundles
- Add new skills: deep-dive, docs-rag, meta-creator, ppt-maker, sdlc - Add agent configs: g-assistent, meta-creator, sdlc with prompt files - Add reference docs for custom agents and skills specification - Add utility scripts: install-agents.sh, orchestrate.py, puml2svg.sh - Update README and commit-message skill config - Remove deprecated skills: codereview, python, testing, typescript - Add .gitignore
This commit is contained in:
@@ -24,7 +24,7 @@ def run_prompt(prompt: str, with_skill: bool) -> tuple[str, float]:
|
||||
agent = "main" if with_skill else "default"
|
||||
start = time.time()
|
||||
result = subprocess.run(
|
||||
["kiro-cli", "chat", "--agent", agent, "--no-interactive", "--message", prompt],
|
||||
["kiro-cli", "chat", "--agent", agent, "--no-interactive", prompt],
|
||||
capture_output=True, text=True, timeout=90,
|
||||
)
|
||||
elapsed = round(time.time() - start, 2)
|
||||
|
||||
Reference in New Issue
Block a user