From 9ca12b0db47ccd7ff8749a120baca3b80762b9db Mon Sep 17 00:00:00 2001 From: "ash@erphq" Date: Sat, 2 May 2026 11:17:37 +0530 Subject: [PATCH] skills: add per-skill agents: and related: frontmatter contract MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds two top-level optional frontmatter fields (sibling to name:, description:, version:) for skills metadata that downstream consumers like erphq/lab-sites need to render cross-references on skill pages: - agents: list of agent capability slugs that work on this skill - related: list of other skill slugs this skill commonly works with Today these live as hand-curated JSON in lab-sites (apps/web-lab/src/_data/erpFeatures.json + crmFeatures.json) and diverge per consumer. Moving them into SKILL.md frontmatter makes them canonical, validatable (drift checks already cover SKILL.md), and shareable across consumers. Both fields are optional — skills without them render the standard page sans cross-references. Live at top level (not under metadata:) because they're about skill relationships, not file metadata. This commit: - Documents the contract in README.md (new "Frontmatter — agents: and related: (optional, downstream-facing)" subsection under "For agents") - Populates agents+related on the 31 SKILL.md files at the 03-org-1k-plus tier that erphq/lab-sites currently composes (sourced from lab-sites' existing JSON, unioning across apps that compose each skill — e.g. security-roles is composed by both ERP and CRM, so its agents/related are the union of both apps' values) Other ~50 SKILL.md files at other tiers / depts not lab-sites uses are left unmodified. Optional means optional — backfill as time permits, no rush. When lab-sites' agents/related stay in sync with upstream, lab-sites can drop the fields from its local JSON and read them from skillSpecs.mjs. Closes #6 --- README.md | 31 +++++++++++++++++++ .../03-org-1k-plus/accounts-payable/SKILL.md | 6 ++++ .../accounts-receivable/SKILL.md | 9 ++++++ .../budgeting-forecasting/SKILL.md | 6 ++++ .../03-org-1k-plus/consolidation/SKILL.md | 7 +++++ .../03-org-1k-plus/fixed-assets/SKILL.md | 5 +++ .../03-org-1k-plus/general-ledger/SKILL.md | 6 ++++ .../03-org-1k-plus/period-close/SKILL.md | 6 ++++ .../03-org-1k-plus/tax-compliance/SKILL.md | 6 ++++ .../03-org-1k-plus/leave-attendance/SKILL.md | 4 +++ .../03-org-1k-plus/payroll/SKILL.md | 6 ++++ .../03-org-1k-plus/integrations/SKILL.md | 6 ++++ .../master-data-management/SKILL.md | 4 +++ .../reports-dashboards/SKILL.md | 6 ++++ .../03-org-1k-plus/security-roles/SKILL.md | 5 +++ .../workflow-automation/SKILL.md | 7 +++++ .../campaign-management/SKILL.md | 5 +++ .../03-org-1k-plus/commissions/SKILL.md | 5 +++ .../contracts-renewals/SKILL.md | 8 +++++ .../03-org-1k-plus/customer-360/SKILL.md | 9 ++++++ .../03-org-1k-plus/lead-management/SKILL.md | 9 ++++++ .../pipeline-forecasting/SKILL.md | 8 +++++ .../03-org-1k-plus/quoting-cpq/SKILL.md | 8 +++++ .../territory-management/SKILL.md | 6 ++++ .../03-org-1k-plus/demand-planning/SKILL.md | 5 +++ .../03-org-1k-plus/inventory/SKILL.md | 6 ++++ .../03-org-1k-plus/logistics/SKILL.md | 4 +++ .../03-org-1k-plus/procurement/SKILL.md | 6 ++++ .../production-planning/SKILL.md | 10 ++++++ .../03-org-1k-plus/quality/SKILL.md | 5 +++ .../03-org-1k-plus/vendor-management/SKILL.md | 7 +++++ .../03-org-1k-plus/warehouse/SKILL.md | 5 +++ 32 files changed, 226 insertions(+) diff --git a/README.md b/README.md index e843ad1..06c7888 100644 --- a/README.md +++ b/README.md @@ -189,6 +189,37 @@ The whole skill — context, decisions, build steps, integrations, checklists To improve a skill, edit its `SKILL.md` in place. To add a new skill, create `departments////SKILL.md` following the frontmatter format used by existing files. +### Frontmatter — `agents:` and `related:` (optional, downstream-facing) + +Every `SKILL.md` may declare two optional top-level frontmatter fields that downstream consumers (e.g. [erphq/lab-sites](https://github.com/erphq/lab-sites), which renders erpai.studio's skill pages) use to surface cross-references on the rendered page: + +```yaml +--- +name: accounts-receivable +description: This skill should be used when… +version: 1.0.0 +agents: # ← optional + - collections + - reconciliation + - approvals +related: # ← optional + - accounts-payable + - general-ledger + - period-close +metadata: + author: erphq + … +--- +``` + +**`agents:`** — list of agent capability slugs that work on this skill. Slugs are reusable across apps (e.g. `approvals` shows up in nearly every skill). Renderers display them as cards / chips on the skill page; if the consumer's site has per-agent pages, it cross-links. + +**`related:`** — list of other skill slugs this skill commonly works with. Slugs MUST resolve to other `SKILL.md` files in this repo. Renderers use them for the "works with" cross-link grid. + +Both fields are optional. Skills without them render the standard page sans those sections. As fields fill in, downstream consumers automatically pick them up. + +These fields live at top level — sibling to `name:` / `description:` / `version:` — not nested under `metadata:`. The `metadata:` block holds technical facts about the file; `agents:` and `related:` describe the skill's relationships. + --- ## For humans diff --git a/departments/finance-accounting/03-org-1k-plus/accounts-payable/SKILL.md b/departments/finance-accounting/03-org-1k-plus/accounts-payable/SKILL.md index f1026fa..647be96 100644 --- a/departments/finance-accounting/03-org-1k-plus/accounts-payable/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/accounts-payable/SKILL.md @@ -2,6 +2,12 @@ name: accounts-payable description: This skill should be used when the task involves manage vendor invoices, match them to purchase orders and receipts, run payment batches, and keep supplier relationships healthy. version: 1.0.0 +agents: +related: + - general-ledger + - period-close + - procurement + - vendor-management metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/accounts-receivable/SKILL.md b/departments/finance-accounting/03-org-1k-plus/accounts-receivable/SKILL.md index 3b6ff44..c2c33e1 100644 --- a/departments/finance-accounting/03-org-1k-plus/accounts-receivable/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/accounts-receivable/SKILL.md @@ -2,6 +2,15 @@ name: accounts-receivable description: This skill should be used when the task involves send customer invoices, track who owes you money, collect payments, apply cash, and manage aging and dunning. version: 1.0.0 +agents: + - approvals + - collections + - reconciliation +related: + - accounts-payable + - general-ledger + - period-close + - tax-compliance metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/budgeting-forecasting/SKILL.md b/departments/finance-accounting/03-org-1k-plus/budgeting-forecasting/SKILL.md index 50559d9..06c2080 100644 --- a/departments/finance-accounting/03-org-1k-plus/budgeting-forecasting/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/budgeting-forecasting/SKILL.md @@ -2,6 +2,12 @@ name: budgeting-forecasting description: This skill should be used when the task involves create budgets, run variance analysis, build rolling forecasts, and model scenarios so you can plan with confidence. version: 1.0.0 +agents: + - variance-analyst +related: + - general-ledger + - period-close + - reports-dashboards metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/consolidation/SKILL.md b/departments/finance-accounting/03-org-1k-plus/consolidation/SKILL.md index c4516e7..3eebfde 100644 --- a/departments/finance-accounting/03-org-1k-plus/consolidation/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/consolidation/SKILL.md @@ -2,6 +2,13 @@ name: consolidation description: This skill should be used when the task involves roll up multiple entities into one set of financial statements with intercompany eliminations, currency translation, and minority interest adjustments. version: 1.0.0 +agents: + - consolidation + - period-close +related: + - general-ledger + - period-close + - reports-dashboards metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/fixed-assets/SKILL.md b/departments/finance-accounting/03-org-1k-plus/fixed-assets/SKILL.md index dc5c957..e1e82ad 100644 --- a/departments/finance-accounting/03-org-1k-plus/fixed-assets/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/fixed-assets/SKILL.md @@ -2,6 +2,11 @@ name: fixed-assets description: This skill should be used when the task involves track company property and equipment, calculate depreciation, handle disposals and revaluations, and manage lease accounting. version: 1.0.0 +agents: + - period-close +related: + - accounts-payable + - general-ledger metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/general-ledger/SKILL.md b/departments/finance-accounting/03-org-1k-plus/general-ledger/SKILL.md index 29f35d5..f133fe2 100644 --- a/departments/finance-accounting/03-org-1k-plus/general-ledger/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/general-ledger/SKILL.md @@ -2,6 +2,12 @@ name: general-ledger description: This skill should be used when the task involves manage your chart of accounts, record journal entries, produce trial balances, and generate financial statements. version: 1.0.0 +agents: +related: + - accounts-payable + - accounts-receivable + - consolidation + - period-close metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/period-close/SKILL.md b/departments/finance-accounting/03-org-1k-plus/period-close/SKILL.md index b3c69ea..17ccc05 100644 --- a/departments/finance-accounting/03-org-1k-plus/period-close/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/period-close/SKILL.md @@ -2,6 +2,12 @@ name: period-close description: This skill should be used when the task involves run your month-end close efficiently — reconciliations, accruals, adjustments, and reporting on time every time. version: 1.0.0 +agents: +related: + - budgeting-forecasting + - consolidation + - general-ledger + - reports-dashboards metadata: author: erphq domain: erpai.studio diff --git a/departments/finance-accounting/03-org-1k-plus/tax-compliance/SKILL.md b/departments/finance-accounting/03-org-1k-plus/tax-compliance/SKILL.md index 3dcc8ac..05c9d68 100644 --- a/departments/finance-accounting/03-org-1k-plus/tax-compliance/SKILL.md +++ b/departments/finance-accounting/03-org-1k-plus/tax-compliance/SKILL.md @@ -2,6 +2,12 @@ name: tax-compliance description: This skill should be used when the task involves handle sales tax, VAT, GST, withholding tax, 1099 reporting, and statutory filings so you stay on the right side of every tax authority. version: 1.0.0 +agents: + - period-close +related: + - accounts-payable + - accounts-receivable + - general-ledger metadata: author: erphq domain: erpai.studio diff --git a/departments/human-resources/03-org-1k-plus/leave-attendance/SKILL.md b/departments/human-resources/03-org-1k-plus/leave-attendance/SKILL.md index 890996e..8bcfa86 100644 --- a/departments/human-resources/03-org-1k-plus/leave-attendance/SKILL.md +++ b/departments/human-resources/03-org-1k-plus/leave-attendance/SKILL.md @@ -2,6 +2,10 @@ name: leave-attendance description: This skill should be used when the task involves track time, manage PTO policies, handle FMLA, schedule shifts, and manage overtime compliance. version: 1.0.0 +agents: + - approvals +related: + - payroll metadata: author: erphq domain: erpai.studio diff --git a/departments/human-resources/03-org-1k-plus/payroll/SKILL.md b/departments/human-resources/03-org-1k-plus/payroll/SKILL.md index 6eb6cea..c58468a 100644 --- a/departments/human-resources/03-org-1k-plus/payroll/SKILL.md +++ b/departments/human-resources/03-org-1k-plus/payroll/SKILL.md @@ -2,6 +2,12 @@ name: payroll description: This skill should be used when the task involves calculate pay, withhold taxes, process deductions, run pay cycles, and stay compliant with wage laws. version: 1.0.0 +agents: + - approvals +related: + - general-ledger + - leave-attendance + - tax-compliance metadata: author: erphq domain: erpai.studio diff --git a/departments/information-technology/03-org-1k-plus/integrations/SKILL.md b/departments/information-technology/03-org-1k-plus/integrations/SKILL.md index 19c04ca..838fa94 100644 --- a/departments/information-technology/03-org-1k-plus/integrations/SKILL.md +++ b/departments/information-technology/03-org-1k-plus/integrations/SKILL.md @@ -2,6 +2,12 @@ name: integrations description: This skill should be used when the task involves connect ERP•AI applications to external systems -- use when designing API connections, data syncs, middleware orchestration, and event-driven communication between enterprise platforms. version: 1.0.0 +agents: + - ap-intake + - reconciliation +related: + - security-roles + - workflow-automation metadata: author: erphq domain: erpai.studio diff --git a/departments/information-technology/03-org-1k-plus/master-data-management/SKILL.md b/departments/information-technology/03-org-1k-plus/master-data-management/SKILL.md index d869bcb..8349294 100644 --- a/departments/information-technology/03-org-1k-plus/master-data-management/SKILL.md +++ b/departments/information-technology/03-org-1k-plus/master-data-management/SKILL.md @@ -2,6 +2,10 @@ name: master-data-management description: This skill should be used when the task involves design and operate master data management programs in ERP•AI -- use when establishing golden records, data stewardship, duplicate detection, data quality frameworks, and cross-system synchronization for enterprise master data. version: 1.0.0 +agents: +related: + - general-ledger + - security-roles metadata: author: erphq domain: erpai.studio diff --git a/departments/information-technology/03-org-1k-plus/reports-dashboards/SKILL.md b/departments/information-technology/03-org-1k-plus/reports-dashboards/SKILL.md index 0ac4cd5..ecc8797 100644 --- a/departments/information-technology/03-org-1k-plus/reports-dashboards/SKILL.md +++ b/departments/information-technology/03-org-1k-plus/reports-dashboards/SKILL.md @@ -2,6 +2,12 @@ name: reports-dashboards description: This skill should be used when the task involves designing, building, and managing enterprise reporting and analytics -- from KPI selection through dashboard layout, scheduled distribution, and data security. version: 1.0.0 +agents: + - variance-analyst +related: + - budgeting-forecasting + - consolidation + - general-ledger metadata: author: erphq domain: erpai.studio diff --git a/departments/information-technology/03-org-1k-plus/security-roles/SKILL.md b/departments/information-technology/03-org-1k-plus/security-roles/SKILL.md index d65e0e8..da09d70 100644 --- a/departments/information-technology/03-org-1k-plus/security-roles/SKILL.md +++ b/departments/information-technology/03-org-1k-plus/security-roles/SKILL.md @@ -2,6 +2,11 @@ name: security-roles description: This skill should be used when the task involves design and implement access control, authentication, audit logging, encryption, and compliance-driven security configurations in ERP•AI -- use when defining RBAC, segregation of duties, SSO, field-level security, and regulatory controls. version: 1.0.0 +agents: + - approvals +related: + - master-data-management + - workflow-automation metadata: author: erphq domain: erpai.studio diff --git a/departments/information-technology/03-org-1k-plus/workflow-automation/SKILL.md b/departments/information-technology/03-org-1k-plus/workflow-automation/SKILL.md index e7cf8ac..4e2dbf8 100644 --- a/departments/information-technology/03-org-1k-plus/workflow-automation/SKILL.md +++ b/departments/information-technology/03-org-1k-plus/workflow-automation/SKILL.md @@ -2,6 +2,13 @@ name: workflow-automation description: This skill should be used when the task involves design and implement business process automation in ERP•AI -- use when building approval chains, state machines, scheduled jobs, notification rules, SLA enforcement, and business rule engines. version: 1.0.0 +agents: + - approvals + - period-close +related: + - accounts-payable + - procurement + - security-roles metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/campaign-management/SKILL.md b/departments/sales-crm/03-org-1k-plus/campaign-management/SKILL.md index 781e1b9..c9005af 100644 --- a/departments/sales-crm/03-org-1k-plus/campaign-management/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/campaign-management/SKILL.md @@ -2,6 +2,11 @@ name: campaign-management description: This skill should be used when the task involves plan marketing campaigns, segment your audience, execute across channels, track what influenced revenue, and prove ROI. version: 1.0.0 +agents: + - lead-scoring +related: + - customer-360 + - lead-management metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/commissions/SKILL.md b/departments/sales-crm/03-org-1k-plus/commissions/SKILL.md index b1ea5cd..f2fe67e 100644 --- a/departments/sales-crm/03-org-1k-plus/commissions/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/commissions/SKILL.md @@ -2,6 +2,11 @@ name: commissions description: This skill should be used when the task involves design commission plans, calculate payouts with accelerators and clawbacks, handle split credits, and pay your sales team accurately and on time. version: 1.0.0 +agents: + - commission-statement +related: + - contracts-renewals + - pipeline-forecasting metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/contracts-renewals/SKILL.md b/departments/sales-crm/03-org-1k-plus/contracts-renewals/SKILL.md index 4916467..9e106fc 100644 --- a/departments/sales-crm/03-org-1k-plus/contracts-renewals/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/contracts-renewals/SKILL.md @@ -2,6 +2,14 @@ name: contracts-renewals description: This skill should be used when the task involves manage contract creation, track renewal dates, handle amendments, process auto-renewals, and make sure revenue doesn't walk out the door. version: 1.0.0 +agents: + - deal-coach + - renewals +related: + - commissions + - customer-360 + - pipeline-forecasting + - quoting-cpq metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/customer-360/SKILL.md b/departments/sales-crm/03-org-1k-plus/customer-360/SKILL.md index 64cfc55..f2ed803 100644 --- a/departments/sales-crm/03-org-1k-plus/customer-360/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/customer-360/SKILL.md @@ -2,6 +2,15 @@ name: customer-360 description: This skill should be used when the task involves build a unified view of every customer — their history, health, spending patterns, and signals for cross-sell and upsell opportunities. version: 1.0.0 +agents: + - deal-coach + - lead-scoring + - renewals +related: + - commissions + - contracts-renewals + - lead-management + - pipeline-forecasting metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/lead-management/SKILL.md b/departments/sales-crm/03-org-1k-plus/lead-management/SKILL.md index 06e642d..19430e3 100644 --- a/departments/sales-crm/03-org-1k-plus/lead-management/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/lead-management/SKILL.md @@ -2,6 +2,15 @@ name: lead-management description: This skill should be used when the task involves capture leads from every source, score them, route them to the right rep, nurture the ones not ready to buy, and track what converts. version: 1.0.0 +agents: + - approvals + - deal-coach + - lead-scoring +related: + - campaign-management + - customer-360 + - pipeline-forecasting + - territory-management metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/pipeline-forecasting/SKILL.md b/departments/sales-crm/03-org-1k-plus/pipeline-forecasting/SKILL.md index e9fa271..501bbd0 100644 --- a/departments/sales-crm/03-org-1k-plus/pipeline-forecasting/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/pipeline-forecasting/SKILL.md @@ -2,6 +2,14 @@ name: pipeline-forecasting description: This skill should be used when the task involves track deals through stages, weight them by probability, build reliable revenue forecasts, and hold reps accountable to their numbers. version: 1.0.0 +agents: + - deal-coach + - forecast +related: + - commissions + - contracts-renewals + - lead-management + - quoting-cpq metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/quoting-cpq/SKILL.md b/departments/sales-crm/03-org-1k-plus/quoting-cpq/SKILL.md index 80340d6..7b31a3b 100644 --- a/departments/sales-crm/03-org-1k-plus/quoting-cpq/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/quoting-cpq/SKILL.md @@ -2,6 +2,14 @@ name: quoting-cpq description: This skill should be used when the task involves configure products, calculate pricing with discounts and bundles, get approvals, and generate professional proposals that close deals. version: 1.0.0 +agents: + - approvals + - quote-approval +related: + - commissions + - contracts-renewals + - customer-360 + - pipeline-forecasting metadata: author: erphq domain: erpai.studio diff --git a/departments/sales-crm/03-org-1k-plus/territory-management/SKILL.md b/departments/sales-crm/03-org-1k-plus/territory-management/SKILL.md index 3cb4e3c..595cf2c 100644 --- a/departments/sales-crm/03-org-1k-plus/territory-management/SKILL.md +++ b/departments/sales-crm/03-org-1k-plus/territory-management/SKILL.md @@ -2,6 +2,12 @@ name: territory-management description: This skill should be used when the task involves design sales territories, assign accounts to reps, allocate quotas fairly, and rebalance when things get lopsided. version: 1.0.0 +agents: + - territory-realignment +related: + - commissions + - lead-management + - pipeline-forecasting metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/demand-planning/SKILL.md b/departments/supply-chain/03-org-1k-plus/demand-planning/SKILL.md index 155d093..f838925 100644 --- a/departments/supply-chain/03-org-1k-plus/demand-planning/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/demand-planning/SKILL.md @@ -2,6 +2,11 @@ name: demand-planning description: This skill should be used when the task involves how to predict what customers will need so you can have the right stuff ready at the right time. version: 1.0.0 +agents: +related: + - inventory + - procurement + - production-planning metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/inventory/SKILL.md b/departments/supply-chain/03-org-1k-plus/inventory/SKILL.md index 5448f45..6e0fdba 100644 --- a/departments/supply-chain/03-org-1k-plus/inventory/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/inventory/SKILL.md @@ -2,6 +2,12 @@ name: inventory description: This skill should be used when the task involves how to track what you have, where it is, and when to order more. version: 1.0.0 +agents: +related: + - demand-planning + - procurement + - production-planning + - warehouse metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/logistics/SKILL.md b/departments/supply-chain/03-org-1k-plus/logistics/SKILL.md index b16cd15..d04f9c9 100644 --- a/departments/supply-chain/03-org-1k-plus/logistics/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/logistics/SKILL.md @@ -2,6 +2,10 @@ name: logistics description: This skill should be used when the task involves how to move products from point A to point B efficiently, affordably, and on time. version: 1.0.0 +agents: +related: + - accounts-receivable + - warehouse metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/procurement/SKILL.md b/departments/supply-chain/03-org-1k-plus/procurement/SKILL.md index c4571c1..9e98628 100644 --- a/departments/supply-chain/03-org-1k-plus/procurement/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/procurement/SKILL.md @@ -2,6 +2,12 @@ name: procurement description: This skill should be used when the task involves how to buy things your company needs — from requesting items to paying for them. version: 1.0.0 +agents: +related: + - accounts-payable + - inventory + - production-planning + - vendor-management metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/production-planning/SKILL.md b/departments/supply-chain/03-org-1k-plus/production-planning/SKILL.md index 7eb9836..837c2df 100644 --- a/departments/supply-chain/03-org-1k-plus/production-planning/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/production-planning/SKILL.md @@ -2,6 +2,16 @@ name: production-planning description: This skill should be used when the task involves how to figure out what to make, when to make it, and how to keep the shop floor running smoothly. version: 1.0.0 +agents: + - approvals + - consolidation + - procurement +related: + - demand-planning + - inventory + - procurement + - quality + - warehouse metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/quality/SKILL.md b/departments/supply-chain/03-org-1k-plus/quality/SKILL.md index 4ed7709..255c43c 100644 --- a/departments/supply-chain/03-org-1k-plus/quality/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/quality/SKILL.md @@ -2,6 +2,11 @@ name: quality description: This skill should be used when the task involves how to make sure what you buy, make, and sell meets your standards every time. version: 1.0.0 +agents: +related: + - production-planning + - vendor-management + - warehouse metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/vendor-management/SKILL.md b/departments/supply-chain/03-org-1k-plus/vendor-management/SKILL.md index 153b2cc..f44997d 100644 --- a/departments/supply-chain/03-org-1k-plus/vendor-management/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/vendor-management/SKILL.md @@ -2,6 +2,13 @@ name: vendor-management description: This skill should be used when the task involves how to find, evaluate, and work with the companies that supply what you need. version: 1.0.0 +agents: + - ap-intake + - procurement +related: + - accounts-payable + - procurement + - quality metadata: author: erphq domain: erpai.studio diff --git a/departments/supply-chain/03-org-1k-plus/warehouse/SKILL.md b/departments/supply-chain/03-org-1k-plus/warehouse/SKILL.md index e4920e5..5586608 100644 --- a/departments/supply-chain/03-org-1k-plus/warehouse/SKILL.md +++ b/departments/supply-chain/03-org-1k-plus/warehouse/SKILL.md @@ -2,6 +2,11 @@ name: warehouse description: This skill should be used when the task involves how to receive, store, find, pick, pack, and ship products efficiently. version: 1.0.0 +agents: +related: + - inventory + - logistics + - procurement metadata: author: erphq domain: erpai.studio