feat: add podcast generation skill

- Add podcast-generation skill for creating tech explainer podcasts
- Include generate.py script with TTS synthesis capabilities
- Add tech-explainer template for structured podcast content
- Increase sandbox command timeout from 30s to 600s to support
  longer-running skill scripts
This commit is contained in:
hetaoBackend
2026-01-25 22:37:53 +08:00
committed by hetao
parent 139063283f
commit 9f5658fa0e
5 changed files with 542 additions and 1 deletions

View File

@@ -142,7 +142,7 @@ class LocalSandbox(Sandbox):
shell=True,
capture_output=True,
text=True,
timeout=30,
timeout=600,
)
output = result.stdout
if result.stderr: