feat: Sync latest templates from blackroad-sandbox
✨ Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
74
templates/notion/TEMPLATE-DASHBOARD-PROJECT.json
Normal file
74
templates/notion/TEMPLATE-DASHBOARD-PROJECT.json
Normal file
@@ -0,0 +1,74 @@
|
||||
{
|
||||
"object": "page",
|
||||
"parent": {
|
||||
"type": "workspace"
|
||||
},
|
||||
"icon": {
|
||||
"type": "emoji",
|
||||
"emoji": "\ud83c\udfaf"
|
||||
},
|
||||
"properties": {
|
||||
"title": {
|
||||
"title": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{PROJECT_NAME}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"object": "heading_1",
|
||||
"heading_1": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83d\udcca Project Dashboard"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "paragraph",
|
||||
"paragraph": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{PROJECT_DESCRIPTION}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "heading_2",
|
||||
"heading_2": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83d\udcc8 Status"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "callout",
|
||||
"callout": {
|
||||
"icon": {
|
||||
"emoji": "\u2705"
|
||||
},
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "Status: {{STATUS}}\nPhase: {{PHASE}}\nProgress: {{PROGRESS}}%"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
73
templates/notion/TEMPLATE-DATABASE-TASKS.json
Normal file
73
templates/notion/TEMPLATE-DATABASE-TASKS.json
Normal file
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"parent": {
|
||||
"type": "page_id",
|
||||
"page_id": "{{PARENT_PAGE_ID}}"
|
||||
},
|
||||
"title": [
|
||||
{
|
||||
"type": "text",
|
||||
"text": {
|
||||
"content": "Tasks"
|
||||
}
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"Name": {
|
||||
"title": {}
|
||||
},
|
||||
"Status": {
|
||||
"select": {
|
||||
"options": [
|
||||
{
|
||||
"name": "Todo",
|
||||
"color": "gray"
|
||||
},
|
||||
{
|
||||
"name": "In Progress",
|
||||
"color": "blue"
|
||||
},
|
||||
{
|
||||
"name": "Done",
|
||||
"color": "green"
|
||||
},
|
||||
{
|
||||
"name": "Blocked",
|
||||
"color": "red"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"Priority": {
|
||||
"select": {
|
||||
"options": [
|
||||
{
|
||||
"name": "High",
|
||||
"color": "red"
|
||||
},
|
||||
{
|
||||
"name": "Medium",
|
||||
"color": "yellow"
|
||||
},
|
||||
{
|
||||
"name": "Low",
|
||||
"color": "gray"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"Assignee": {
|
||||
"people": {}
|
||||
},
|
||||
"Due Date": {
|
||||
"date": {}
|
||||
},
|
||||
"Tags": {
|
||||
"multi_select": {}
|
||||
},
|
||||
"Estimate": {
|
||||
"number": {
|
||||
"format": "number"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
131
templates/notion/TEMPLATE-PAGE-AGENT-PROFILE.json
Normal file
131
templates/notion/TEMPLATE-PAGE-AGENT-PROFILE.json
Normal file
@@ -0,0 +1,131 @@
|
||||
{
|
||||
"object": "page",
|
||||
"parent": {
|
||||
"type": "database_id",
|
||||
"database_id": "{{AGENTS_DB_ID}}"
|
||||
},
|
||||
"icon": {
|
||||
"type": "emoji",
|
||||
"emoji": "\ud83e\udd16"
|
||||
},
|
||||
"properties": {
|
||||
"Name": {
|
||||
"title": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{AGENT_NAME}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"Status": {
|
||||
"select": {
|
||||
"name": "Active"
|
||||
}
|
||||
},
|
||||
"Personality": {
|
||||
"multi_select": []
|
||||
},
|
||||
"Capabilities": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{CAPABILITIES}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"Created": {
|
||||
"date": {
|
||||
"start": "{{CREATED_DATE}}"
|
||||
}
|
||||
}
|
||||
},
|
||||
"children": [
|
||||
{
|
||||
"object": "heading_1",
|
||||
"heading_1": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83e\udd16 Agent Profile"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "heading_2",
|
||||
"heading_2": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83d\udccb Description"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "paragraph",
|
||||
"paragraph": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{DESCRIPTION}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "heading_2",
|
||||
"heading_2": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83c\udfaf Purpose"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "paragraph",
|
||||
"paragraph": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{PURPOSE}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "heading_2",
|
||||
"heading_2": {
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "\ud83d\udd27 Configuration"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"object": "code",
|
||||
"code": {
|
||||
"language": "yaml",
|
||||
"rich_text": [
|
||||
{
|
||||
"text": {
|
||||
"content": "{{CONFIG_YAML}}"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user