Implement Phase 1: Work integration (without n8n)

Skills Created:
- outline: Full MCP integration with Outline wiki (search, read, create, export, AI queries)
- Enhanced basecamp: Added project mapping configuration to PARA structure
- Enhanced daily-routines: Integrated work context (Basecamp, Outline) into daily/weekly workflows
- Enhanced meeting-notes: Added Teams transcript processing workflow guide

PARA Work Structure Created:
- 01-projects/work/: 10 project folders with MOCs (placeholders for user customization)
- 02-areas/work/: 5 area files (current-job, professional-dev, team-management, company-knowledge, technical-excellence)
- 03-resources/work/wiki-mirror/: Ready for Outline exports
- 04-archive/work/: Ready for completed work

Documentation Added:
- skills/outline/SKILL.md: Comprehensive wiki workflows and tool references
- skills/outline/references/outline-workflows.md: Detailed usage examples
- skills/outline/references/export-patterns.md: Obsidian integration patterns
- skills/meeting-notes/references/teams-transcript-workflow.md: Manual DOCX → meeting note workflow
- skills/chiron-core/references/work-para-structure.md: Work-specific PARA organization

Key Integrations:
- Basecamp ↔ Obsidian: Project mapping and task sync
- Outline ↔ Obsidian: Wiki search, export decisions, knowledge discovery
- Teams → Obsidian: Transcript processing with AI analysis
- All integrated into daily/weekly routines

Note: n8n workflows skipped per user request. Ready for n8n automation later.
This commit is contained in:
m3tm3re
2026-01-28 18:58:49 +01:00
parent 3e3b17de38
commit e2932d1d84
18 changed files with 2746 additions and 459 deletions

View File

@@ -215,6 +215,83 @@ For complete tool reference with parameters, see [references/mcp-tools.md](refer
- **Work projects only**: This skill is for professional/team projects
- **Pagination handled**: MCP server handles pagination transparently
## Project Mapping Configuration
### Map Basecamp Projects to PARA
When setting up the integration, create a mapping between Basecamp projects and Obsidian project folders:
**Example configuration** (to be customized):
```json
{
"basecamp_projects": {
"project_123": {
"name": "API Integration Platform",
"para_path": "01-projects/work/api-integration-platform",
"area": "technical-excellence",
"type": "engineering"
},
"project_456": {
"name": "Customer Portal Redesign",
"para_path": "01-projects/work/customer-portal-redesign",
"area": "technical-excellence",
"type": "product-design"
}
// ... add all projects
}
}
```
**Where to store**:
- Obsidian: `~/CODEX/_chiron/context/basecamp-projects.md`
- Or in skill: `references/basecamp-project-map.md`
### Usage in Workflows
When creating/syncing to Basecamp:
```
1. User mentions: "API Integration Platform"
2. Look up in project map:
- Get: project_id = "project_123"
- Get: para_path = "01-projects/work/api-integration-platform"
3. Use project_id for Basecamp operations
4. Use para_path for Obsidian operations
```
### Fetching Real Projects
**When first setting up**:
```
User: "Fetch my Basecamp projects and set up PARA structure"
Steps:
1. get_projects() → Get all Basecamp projects
2. For each project:
- Extract: id, name, status, last_activity
- Determine PARA path (kebab-case from name)
- Create project folder with _index.md
- Add frontmatter: basecamp_id, project_link
3. Create mapping in basecamp-projects.md
4. Confirm: "Mapped 10 Basecamp projects to PARA structure"
```
**Example project _index.md frontmatter**:
```yaml
---
title: "[Project Name]"
basecamp_id: "project_123"
basecamp_url: "https://3.basecampapi.com/123456/projects/project_123"
status: active
deadline: YYYY-MM-DD
source: basecamp
tags: [work, project, engineering]
---
```
---
## Integration with Other Skills
| From Skill | To Basecamp |
@@ -222,6 +299,8 @@ For complete tool reference with parameters, see [references/mcp-tools.md](refer
| brainstorming | Save decision → reference in project docs |
| plan-writing | todo-structure.md → Basecamp todos or cards |
| task-management | Obsidian tasks ↔ Basecamp todos (manual reference) |
| daily-routines | Morning planning with Basecamp todos, evening review |
| meeting-notes | Sync action items from meetings to Basecamp |
## Common Patterns