소스 정보
- 저장소
- warpdotdev/competitive-intelligence-agent-oss
- 최근 소스 활동
- 2026년 7월 8일 15:39
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/warpdotdev/competitive-intelligence-agent-oss --skill write-google-docs명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Sets up the competitive-intelligence-agent from scratch — clones the repo (or works from an existing clone), installs dependencies, configures .env credentials, authenticates GitHub and Google, and replaces codebase placeholders with the user's real values. Use when asked to "set up this agent", "run the setup skill", "deploy this agent", "configure this repo", or when a user has just cloned the repo and wants it working.
analyzes customer feedback across Email, GitHub, NPS, and churn cancellations.
Analyzes git history from a repository to summarize recent development activity, features in progress, and engineering priorities. Use when asked about what the team is working on, recent code changes, development velocity, or to prepare for planning/roadmap discussions.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | write_google_docs |
| description | Skill for writing arbitrary Google Docs |
Use this skill to create new Google Docs documents, populate them with content, and write to specific tabs.
Use this skill when you need to:
Do NOT use this skill when:
Run the script from the skills/write_google_docs/ directory:
python skills/write_google_docs/write_google_doc.py --title "Document Title" --content "Your content here"
python skills/write_google_docs/write_google_doc.py --title "Weekly Report" --tab "Week 9" --content "Week 9 analysis..."
python skills/write_google_docs/write_google_doc.py --document-id DOCUMENT_ID --tab "Week 10" --content "Week 10 analysis..."
python skills/write_google_docs/write_google_doc.py --document-id DOCUMENT_ID --tab "Summary" --content-file summary.txt
When using --document-id, the --tab flag is required. When creating a new document with --title, --tab is optional — if omitted, content goes to the default first tab.
Use --folder-id to create the document inside a specific Google Drive folder:
python skills/write_google_docs/write_google_doc.py --title "Report" --folder-id FOLDER_ID --content "Content..."
The folder ID is the last segment of a Drive folder URL (e.g. YOUR_GOOGLE_DRIVE_FOLDER_ID from https://drive.google.com/drive/folders/YOUR_GOOGLE_DRIVE_FOLDER_ID). This option can be combined with --tab.
python skills/write_google_docs/write_google_doc.py --title "Brief Title" --content "Brief content goes here"
python skills/write_google_docs/write_google_doc.py --title "Report Title" --content-file /path/to/content.txt
echo "Content here" | python skills/write_google_docs/write_google_doc.py --title "Document Title" --stdin
For programmatic use, add the --json flag:
python skills/write_google_docs/write_google_doc.py --title "Title" --content "Content" --json
This returns JSON with documentId, webViewLink, title, and optionally tabId.
The script outputs:
--tab)Markdown in the content is automatically converted to native Google Docs formatting:
# Heading through ###### Heading → Google Docs headings (H1-H6)**bold** or __bold__ → bold text*italic* or _italic_ → italic text- item or * item → bullet lists1. item → numbered lists[text](url) → plain text (link removed)`code` → plain text (backticks removed)For best results:
After creating a document, you can:
post_to_slack skill to share the link to Slackpython skills/write_google_docs/write_google_doc.py --title "Competitive Analysis - January 2026" --content "Your analysis content..."
Create the document with the first week's tab:
python skills/write_google_docs/write_google_doc.py --title "Weekly Reports - Q1 2026" --tab "Week 1" --content "Week 1 content..." --json
Then add subsequent weeks to the same document using the returned document ID:
python skills/write_google_docs/write_google_doc.py --document-id DOC_ID --tab "Week 2" --content "Week 2 content..."
python skills/write_google_docs/write_google_doc.py --document-id DOC_ID --tab "Week 3" --content "Week 3 content..."
token.json in the project root and re-authenticateIf you encounter authentication errors:
token.json and run again to re-authenticate with new scopes