소스 정보
- 저장소
- aAAaqwq/AGI-Super-Team
- 최근 소스 활동
- 2026년 2월 19일 03:08
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 86
- 포크
- 22
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/aAAaqwq/AGI-Super-Team --skill notion-automation명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
币安广场合约投机雷达 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'。
SOC 직업 분류 기준
SKILL.md 표시 중
| name | notion-automation |
| description | 自动化 Notion 操作。当用户需要管理 Notion 页面、数据库、块内容、项目跟踪或进行内容组织和搜索时使用此技能。 |
| allowed-tools | mcp__notionApi__*, Bash, Read, Write, Edit, Grep, Glob |
此技能专门用于自动化 Notion 平台的各种操作,包括:
// 创建新页面
const page = await createPage({
parent: {
type: "page_id",
page_id: "parent_page_id"
},
properties: {
title: {
type: "title",
title: [
{
type: "text",
text: {
content: "项目文档"
}
}
]
}
},
children: [
{
object: "block",
type: "paragraph",
paragraph: {
rich_text: [
{
type: "text",
text: {
content: "这是项目文档的概述内容。"
}
}
]
}
}
],
icon: {
type: "emoji",
emoji: "📝"
},
cover: {
type: "external",
external: {
url: "https://example.com/cover.jpg"
}
}
});
// 创建数据库
const database = await createDatabase({
parent: {
type: "page_id",
page_id: "parent_page_id"
},
title: [
{
type: "text",
text: {
content: "项目管理数据库"
}
}
],
properties: {
"任务名称": {
title: {}
},
"状态": {
select: {
options: [
{ name: "待办", color: "gray" },
{ name: "进行中", color: "blue" },
{ name: "已完成", color: "green" }
]
}
},
"负责人": {
people: {}
},
"截止日期": {
date: {}
}
}
});
// 查询数据库记录
const records = await queryDatabase({
database_id: "database_id",
filter: {
property: "状态",
select: {
equals: "进行中"
}
},
sorts: [
{
property: "截止日期",
:
}
]
});
// 搜索页面
const searchResults = await search({
query: "项目计划",
filter: {
property: "object",
value: "page"
},
sort: {
direction: "descending",
timestamp: "last_edited_time"
}
});
// 搜索数据库
const dbResults = await search({
query: "任务",
filter: {
property: "object",
value: "database"
}
});
// 获取页面块
const blocks = await getBlockChildren({
block_id: "page_id"
});
// 更新块内容
await updateBlock({
block_id: "block_id",
paragraph: {
rich_text: [
{
type: "text",
text: {
content: "更新后的内容"
}
}
]
}
});
// 添加新块
await appendBlockChildren({
block_id: "parent_block_id",
children: [
{
object: "block",
type: "heading_2",
heading_2: {
rich_text: [
{
type: "text",
text: {
content: "新的章节标题"
}
}
]
}
}
]
});
// 创建评论
await createComment({
parent: {
page_id: "page_id"
},
rich_text: [
{
type: "text",
text: {
content: "建议在这里添加更多细节描述。"
}
}
]
});
// 获取评论
const comments = await retrieveComments({
block_id: "page_id"
});
// 移动页面到其他父页面
await movePage({
page_id: "page_id",
parent: {
type: "page_id",
page_id: "new_parent_id"
}
});
// 或移动到数据库
await movePage({
page_id: "page_id",
parent: {
type: "database_id",
database_id: "database_id"
}
});
// 批量创建页面记录
const batchCreate = async (databaseId, records) => {
for (const record of records) {
await createPage({
parent: {
type: "database_id",
database_id: databaseId
},
properties: {
"任务名称": {
title: [{ text: { content: record.title } }]
},
"状态": {
select: { name: record.status }
}
}
});
}
};
// 批量更新块
const batchUpdate = async (updates) => {
for (const update of updates) {
await updateBlock({
block_id: update.blockId,
...update.content
});
}
};
// 获取用户信息
const users = await listUsers();
// 获取特定用户
const user = await getUser({
user_id: "user_id"
});
// 获取当前用户
const me = await getSelf();