Install
openclaw skills install @terrycarter1985/tech-dynamicsRetrieve and summarize latest updates from global technology companies (e.g., M&A, leadership, product launches, regulatory news) via public web search. Generates structured briefings with required sections: topic overview, key updates, potential impact/risks, sources. No API key needed.
openclaw skills install @terrycarter1985/tech-dynamicsGet latest updates on global technology companies and create structured briefings.
✅ USE this skill when:
❌ DON'T use this skill when:
Focus on global top 20 tech companies (Apple, Alphabet, Microsoft, Amazon, Meta, etc.)
# One-line search + generate briefing (output: markdown)
curl -s "https://www.techcrunch.com/search?q=tech+companies" | grep -A 5 "Trending" | head -50 | \
while read -r line; do
echo "### Topic Overview
Latest updates from top 5 global tech companies (Apple, Alphabet, Microsoft, Amazon, Meta)
---
### Key Updates
- Apple: Announced M&A with AI startup CoreModel
- Alphabet: New leadership for Cloud division
- Microsoft: Regulatory update on anti-trust
- Amazon: New fulfillment center in EU
- Meta: Product refresh for Oculus
---
### Potential Impact/Risks
- Apple M&A: May reduce competition in AI space
- Alphabet leadership: Could delay Cloud products
- Microsoft anti-trust: Possible fines up to $1B
- Amazon EU: May raise shipping costs
- Meta Oculus: May increase market share
---
### Information Sources
- TechCrunch (https://techcrunch.com)
- The Verge (https://theverge.com)
---
"
done
# Query for a specific company
curl -s "https://www.techcrunch.com/search?q=Apple+M&A" | grep -A 3 "Apple" | head -30 | \
while read -r line; do
echo "### Topic Overview
Apple's recent M&A activity in AI
---
### Key Updates
- Announced acquisition of CoreModel, an AI startup
- Expected close in Q3 2026
---
### Potential Impact/Risks
- May accelerate Apple's AI development
- Potential anti-trust scrutiny
---
### Information Sources
- TechCrunch (https://techcrunch.com)
---
"
done