import sys
sys.path.insert(0, 'agent_recipes/templates/ai-news-capture-pack')
from tools import capture_story_assets, create_bundle
# Capture assets for a story
assets = capture_story_assets(
urls=["https://example.com/article1", "https://example.com/article2"],
story_id="story_001"
)
# Create bundle
bundle = create_bundle(
story_id="story_001",
assets=assets["assets"],
include_metadata=True
)