Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aktsmm avatar

Customer Workspace

  • 51 installs
  • 23 repo stars
  • Updated August 4, 2026
  • aktsmm/agent-skills

customer-workspace is a Claude skill that initializes per-customer workspaces with an inbox, meeting-minutes management and handoff-ready summaries.

About

Initializes per-customer workspaces with an inbox for accumulating information, meeting-minutes management, and handoff-ready summaries. A developer runs a PowerShell script to scaffold folders for inbox, questions, customer profile, meeting notes and next-action homework, with auto-classification rules that route pasted chat or email to the right file. It converts Teams AI notes to templates and produces handoff summaries with source file paths.

  • Scaffolds per-customer workspaces with inbox, meeting notes and next-action folders
  • Auto-routing rules classify pasted chat/email into inbox, meeting notes or questions
  • Handoff-ready workspace summary with related source file paths

Customer Workspace by the numbers

  • 51 all-time installs (skills.sh)
  • Ranked #1,611 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

customer-workspace capabilities & compatibility

Free; uses PowerShell or manual folder setup

Capabilities
biz ops setup · meeting notes · workspace scaffolding
Works with
teams · outlook
Use cases
project management · documentation
Platforms
Windows
Pricing
Free
From the docs

What customer-workspace says it does

Customer workspace initialization skill. Provides inbox (information accumulation), meeting minutes management, and auto-classification rules.
SKILL.md
Initialize customer-specific workspaces with information accumulation, meeting notes management, and handoff-ready summaries.
SKILL.md
npx skills add https://github.com/aktsmm/agent-skills --skill customer-workspace

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs51
repo stars23
Last updatedAugust 4, 2026
Repositoryaktsmm/agent-skills

What it does

Set up a per-customer workspace with an inbox, meeting-notes management and a handoff-ready summary.

Who is it for?

Setting up per-customer workspaces with inbox, meeting notes and handoff summaries

Skip if: Whole business-ops reporting environment setup (use biz-ops-setup)

When should I use this skill?

Setting up a per-customer workspace or adding an inbox / meeting-minutes feature

What you get

A structured customer workspace with auto-routed inbox and handoff-ready summary

  • Per-customer workspace folders
  • Inbox and meeting-notes structure
  • Handoff-ready workspace summary

By the numbers

  • 11 default tags
  • 7-item auto-routing pattern table

Files

SKILL.mdMarkdownGitHub ↗

Customer Workspace Skill

Initialize customer-specific workspaces with information accumulation, meeting notes management, and handoff-ready summaries.

When to Use

  • Customer workspace, inbox, meeting notes, workspace summary, handoff
  • Setting up per-customer workspaces
  • Adding inbox or meeting minutes management
  • Creating handoff-ready workspace summaries with source file paths
  • Implementing auto-classification rules for customer information

Features

FeatureDescription
InboxPaste chat/email for auto-classification
Meeting NotesConvert Teams AI notes to template format
QuestionsExtract questions/actions from meeting log
Auto-RoutingRoute input based on pattern detection
Customer ProfileCentralized customer information
Workspace SummaryHandoff summary with related file paths
Next ActionsPer-MTG homework workspace with bidirectional links
Material SplitOptional split for customer originals, working copies, and customer-facing files

---

Quick Start

# Basic
.\scripts\Initialize-CustomerWorkspace.ps1 -CustomerName "Contoso Inc"

# Full options
.\scripts\Initialize-CustomerWorkspace.ps1 `
  -CustomerName "Contoso Inc" `
  -ContractType "MACC" `
  -ContractPeriod "2025/04 - 2028/03" `
  -KeyContacts "John Doe (Infra Lead)"

If PowerShell is unavailable, manually create the same folders, copy the prompt/template files from assets/, and create README.md plus workspace-summary.md from the workspace root templates.

Generated Structure

{workspace}/
├── README.md                    ← Start here / workspace overview
├── workspace-summary.md         ← Handoff-ready summary
├── .github/
│   ├── copilot-instructions.md    ← Auto-routing rules
│   └── prompts/                   ← Inbox, meeting notes, questions
├── _inbox/{YYYY-MM}.md            ← Inbox files
├── _questions/{YYYY-MM}.md        ← Accumulated questions (optional)
├── _customer/profile.md           ← Customer profile
├── _templates/                    ← Templates
├── meeting-notes/                 ← Meeting minutes (one file per MTG)
└── next-actions/                  ← Per-MTG homework workspace
    ├── to-YYYY-MM-DD/             ← Tasks for the next MTG
    │   ├── README.md               ← Progress board
    │   ├── homework/               ← Customer-agreed homework
    │   ├── proposals/              ← Self-initiated proposal prep
    │   └── research/               ← Supplementary research/validation
    └── ongoing/                    ← Continuing items without a deadline

Optional Material Folders

When customer-shared diagrams, decks, tables, or schedules start to accumulate, split by lifecycle first and scope second.

_received/                       ← customer originals only
  overall-architecture/          ← cross-meeting baseline material
  mtg-YYYY-MM-DD-name/           ← meeting-specific material

_working/                        ← internal edited / annotated / draft copies
  overall-architecture/
  mtg-YYYY-MM-DD-name/

_provided/                       ← customer-facing copies, send-out decks, projection versions
  overall-architecture/
  mtg-YYYY-MM-DD-name/
  • Use _received/ for customer originals and avoid editing files in place.
  • Use _working/ for annotated copies, extracted pages, redlines, and draft comparisons.
  • Use _provided/ only for versions safe to show or send to the customer.
  • Use overall-architecture/ when the material stays relevant across multiple meetings.
  • Use mtg-YYYY-MM-DD-name/ only when the material is truly scoped to one meeting.

---

Auto-Routing Patterns

PatternAction
"Generated by AI"→ Meeting notes
Meeting memo with agenda / tasks / next meeting→ Meeting notes + Questions
Name + datetime + short text→ Inbox
Contains From: Date:→ Inbox
Bullet points / short memo→ Inbox
Question format→ Normal response

Default Tags

#network #cost #contract #proposal #ai #container #meeting #support #organization #deadline #internal

Next Actions (per-MTG homework workspace)

Carve homework, proposal prep, and supplementary research out of meeting notes into a date-scoped next-actions/to-YYYY-MM-DD/ folder.

  • Folders: homework/ (customer-agreed), proposals/ (self-initiated), research/ (supplementary)
  • Bidirectional links:
  • In meeting notes, every decision/homework row links to the corresponding next-actions/to-YYYY-MM-DD/.../xxx.md.
  • In each task file, the header records 出どころ: pointing back to the meeting note (or 自主提案 / 自主検証).
  • Progress states: not-started / in-progress / blocked / done / dropped. Only the state table lives in to-YYYY-MM-DD/README.md; details stay in each task file.
  • Why split by type: mixing proposals into homework breaks the link to meeting notes and turns self-initiated ideas into apparent customer commitments.
  • Full rules and templates: see Next Actions Workspace section in assets/copilot-instructions.md.

---

Done Criteria

  • [ ] Workspace folder created
  • [ ] README.md exists at workspace root
  • [ ] workspace-summary.md exists at workspace root
  • [ ] _inbox/{YYYY-MM}.md exists
  • [ ] _questions/{YYYY-MM}.md exists
  • [ ] _customer/profile.md configured
  • [ ] Auto-routing rules working

Key References

  • Inbox Rules
  • Meeting Minutes Rules
  • Workspace Summary Rules

Assets

  • assets/_templates/ - Template files
  • assets/_templates/next-actions-readme.md - Per-MTG progress board template
  • assets/_templates/next-actions-task.md - Single task file template (homework / proposal / research)
  • assets/inbox.prompt.md - Inbox prompt
  • assets/convert-meeting-minutes.prompt.md - Meeting notes prompt
  • assets/extract-questions.prompt.md - Question extraction prompt
  • assets/copilot-instructions.md - Auto-routing rules

Related skills

FAQ

How is pasted input routed?

By pattern: AI-generated notes and meeting memos go to meeting notes/questions, while From:/Date: text or short memos go to the inbox.

What if PowerShell is unavailable?

You manually create the same folders, copy prompt/template files from assets/, and create README.md and workspace-summary.md from the root templates.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.