소스 정보
- 저장소
- aAAaqwq/AGI-Super-Team
- 최근 소스 활동
- 2026년 4월 21일 16:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 86
- 포크
- 22
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill arch-video-cut명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
币安广场合约投机雷达 v5:以最近24小时专业交易帖为主要证据,回源核验帖子, 联合币安公共合约行情、4周期K线、布林带、ATR、量能和RR,生成可审计的本地影子报告。 触发词:币安广场、扫描币安、binance square、合约机会、交易信号雷达、4小时雷达
BTC 5分钟K线实时方向预测。v5.9对抗式审查重构: 13因子收敛到3个有证据信号(half_body延续+volume放量+meanrev回归, 11个47-49%硬币因子清零) + 三层独立信息过滤(多周期4h/1h/15m趋势 + 跨资产ETH/SOL广度 + 真订单流OFI) + 移除bull×0.92惩罚/Platt置信度门控。半K线策略第2分钟执行。黑天鹅防护: ATR spike+FNG<25。Binance端点双向故障切换。
BB 双向套利策略:加密合约 10x 杠杆布林带均值回归。布林带收窄=横盘→在下轨买、上轨卖;三重过滤器(1h趋势/RSI/BB甜区)确认碗平放,轨对轨止盈(RR 2:1~4:1)。含实时WebSocket模拟盘(paper)、历史回测(simulate/backtest_daily)、币安永续实盘CLI(trade_exec)。触发:'bb套利'、'布林带'、'bollinger'、'横盘策略'、'NEAR'、'回测'、'模拟盘'、'paper trading'。
| name | arch-video-cut |
| description | Automatic architecture video editing workflow with self-learning preferences |
Automatic Architecture Video Editing Workflow with Self-Learning Preferences
Automatically complete the full architecture video editing workflow: multi-video merging, speech-to-text subtitles, background music mixing, and dual output (landscape + portrait). Built-in self-learning system remembers your editing preferences.
Core Features:
cd ~/.openclaw/workspace/skills/arch-video-cut
python3 scripts/full_workflow.py
brew install ffmpeg-full # Required for libass subtitle support
pip3 install faster-whisper # Optional: for speech transcription
~/Desktop/新录音 XX.m4a (narration voiceover)data/m1/ (architecture video clips to merge)python3 scripts/manage_preferences.py set
| Command | Description |
|---|---|
python3 scripts/full_workflow.py | Execute full editing workflow |
python3 scripts/manage_preferences.py show | View current preferences |
python3 scripts/manage_preferences.py set | Interactive preference editor |
python3 scripts/manage_preferences.py reset | Reset to defaults |
Edit config/user_preferences.json or run manage_preferences.py set:
{
"video": {
"target_duration": 20.0, // Target duration in seconds
"vertical_format": "3:4", // Portrait aspect ratio
"vertical_resolution": "1080x1440"
},
"subtitles": {
"horizontal_font_size": 14, // Landscape font size (px)
"vertical_font_size": 10, // Portrait font size (px)
"font_name": "STHeiti", // Font family
"auto_wrap": true, // Auto word wrap
"margin_v": 30 // Bottom margin (px)
},
"audio": {
"background_music_volume": 0.15
Edit the subtitles_text array in transcribe_audio() function:
subtitles_text = [
"These six renovation projects were transformed from abandoned schools",
"Historic buildings, red brick houses, tile-roof homes, single-story factories, and rural self-built houses",
"Through minimalist design approaches and low-cost renovation strategies",
"Giving old buildings new life",
"While balancing contemporary aesthetics and market demands",
]
Output location: data/ folder
| File | Description |
|---|---|
edited_video_final_with_subtitles.mp4 | Landscape version (16:9) |
edited_video_final_with_subtitles_3x4.mp4 | Portrait version (3:4) |
Example output:
✅ All done!
📁 Output: data/edited_video_final_with_subtitles.mp4
📊 Size: 16.0MB
🎬 Duration: 20.04 seconds
1. Merge videos → Compress to target duration
2. Generate subtitles → Allocate timeline based on audio duration
3. Generate BGM → Piano chords + fade in/out
4. Mix audio → Voiceover + background music
5. Burn subtitles → Landscape + Portrait versions
Total processing time: ~2-3 minutes (depends on video count and duration)
Built-in preference learning system automatically records your editing habits:
manage_preferences.pyView learning history:
python3 scripts/manage_preferences.py show
# Place 5 video clips in data/m1/
# Place voiceover audio at ~/Desktop/新录音 74.m4a
cd ~/.openclaw/workspace/skills/arch-video-cut
python3 scripts/full_workflow.py
# Interactive modification
python3 scripts/manage_preferences.py set
# Input: horizontal font size 18px
# Re-edit with new font automatically applied
python3 scripts/full_workflow.py
# Modify preference
python3 scripts/manage_preferences.py set
# Input: target duration 30 seconds
# Edit
python3 scripts/full_workflow.py
brew install ffmpeg-full # Required for libass subtitle support
Check if ffmpeg-full is installed (system ffmpeg doesn't support libass)
pip3 install faster-whisper
# Or skip transcription and edit subtitle text directly in script
Modify vertical_format in config/user_preferences.json
arch-video-cut/
├── SKILL.md # This file
├── SELF_LEARNING_GUIDE.md # Self-learning detailed guide
├── README.md # Quick start guide
├── config/
│ └── user_preferences.json # User preferences
├── scripts/
│ ├── full_workflow.py # Main editing script
│ ├── preference_learner.py # Preference learner
│ └── manage_preferences.py # Preference manager
└── data/
├── m1/ # Input video folder
├── temp_edit/ # Temporary files
└── *.mp4 # Output videos
v1.0.0 - 2026-03-18
WildUrban Architect - Linwangming
Website: http://www.ual-studio.com/
Make tools adapt to you, not you to tools. 🧠