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:
Alexa Louise
2025-12-12 01:38:14 -06:00
committed by Your Name
parent 806c200ddd
commit d9c4a93cf0
30 changed files with 8732 additions and 0 deletions

View 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}}%"
}
}
]
}
}
]
}

View 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"
}
}
}
}

View 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}}"
}
}
]
}
}
]
}