@mandaitor/taxonomy-venture 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025-2026 Mandaitor
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # @mandaitor/taxonomy-venture
2
+
3
+ Venture capital industry taxonomy for the Mandaitor delegation framework.
4
+
5
+ ---
6
+
7
+ ## Overview
8
+
9
+ This package defines the delegation vocabulary for venture capital workflows, including deal sourcing, due diligence, and portfolio management.
10
+
11
+ ## Modules
12
+
13
+ | Module | Description |
14
+ |--------|-------------|
15
+ | `actions.ts` | Delegatable actions for VC operations |
16
+ | `resources.ts` | Resource patterns following fund/portfolio/company hierarchies |
17
+ | `constraints.ts` | VC-specific constraints |
18
+ | `templates.ts` | Pre-configured mandate templates for common VC delegation patterns |
19
+
20
+ ## Development
21
+
22
+ ```bash
23
+ pnpm build
24
+ pnpm test:unit
25
+ ```
@@ -0,0 +1,7 @@
1
+ import type { TaxonomyAction } from "@mandaitor/taxonomy-core";
2
+ /**
3
+ * Venture capital actions covering the autonomous deal flow pipeline:
4
+ * sourcing → qualification → vetting → matching → introductions → diligence
5
+ */
6
+ export declare const VENTURE_ACTIONS: TaxonomyAction[];
7
+ //# sourceMappingURL=actions.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAE/D;;;GAGG;AACH,eAAO,MAAM,eAAe,EAAE,cAAc,EAoG3C,CAAC"}
@@ -0,0 +1,92 @@
1
+ /**
2
+ * Venture capital actions covering the autonomous deal flow pipeline:
3
+ * sourcing → qualification → vetting → matching → introductions → diligence
4
+ */
5
+ export const VENTURE_ACTIONS = [
6
+ // ── Sourcing ───────────────────────────────────────────
7
+ {
8
+ id: "venture.sourcing.scout",
9
+ label: "Scout Startup Signals",
10
+ description: "Authorize AI agent to monitor global signals (ProductHunt, GitHub, news) for high-potential founders",
11
+ riskLevel: "LOW",
12
+ requiresHumanApproval: false,
13
+ tags: ["sourcing", "signals", "automation"],
14
+ },
15
+ {
16
+ id: "venture.sourcing.qualify",
17
+ label: "Qualify Lead Against Thesis",
18
+ description: "Authorize AI agent to qualify scouted leads against the fund's investment thesis and criteria",
19
+ riskLevel: "MEDIUM",
20
+ requiresHumanApproval: false,
21
+ tags: ["sourcing", "qualification", "thesis"],
22
+ },
23
+ // ── Vetting ────────────────────────────────────────────
24
+ {
25
+ id: "venture.vetting.interview",
26
+ label: "Conduct Founder Interview",
27
+ description: "Authorize AI agent to conduct deep-dive interviews with founders via Telegram to verify traction and PMF",
28
+ riskLevel: "MEDIUM",
29
+ requiresHumanApproval: false,
30
+ tags: ["vetting", "interview", "telegram"],
31
+ },
32
+ {
33
+ id: "venture.vetting.audit_metrics",
34
+ label: "Audit Growth Metrics",
35
+ description: "Authorize AI agent to audit CAC/LTV ratios, MRR growth, and product-market fit signals",
36
+ riskLevel: "MEDIUM",
37
+ requiresHumanApproval: false,
38
+ tags: ["vetting", "metrics", "audit"],
39
+ },
40
+ {
41
+ id: "venture.vetting.generate_report",
42
+ label: "Generate Vetting Report",
43
+ description: "Authorize AI agent to compile a structured vetting report from interview and metric data",
44
+ riskLevel: "MEDIUM",
45
+ requiresHumanApproval: false,
46
+ tags: ["vetting", "reporting", "documentation"],
47
+ },
48
+ // ── Matching ───────────────────────────────────────────
49
+ {
50
+ id: "venture.matching.map_mandate",
51
+ label: "Map to Investment Mandate",
52
+ description: "Authorize AI agent to map vetted opportunities to the fund's specific investment thesis and benchmarks",
53
+ riskLevel: "LOW",
54
+ requiresHumanApproval: false,
55
+ tags: ["matching", "mandate", "thesis"],
56
+ },
57
+ {
58
+ id: "venture.matching.rank_fit",
59
+ label: "Rank Thesis Fit Score",
60
+ description: "Authorize AI agent to compute and rank thesis-fit scores for qualified opportunities",
61
+ riskLevel: "LOW",
62
+ requiresHumanApproval: false,
63
+ tags: ["matching", "ranking", "scoring"],
64
+ },
65
+ // ── Introductions ──────────────────────────────────────
66
+ {
67
+ id: "venture.intro.request_optin",
68
+ label: "Request Double Opt-In",
69
+ description: "Authorize AI agent to secure mutual interest from both founder and investor before facilitating intro",
70
+ riskLevel: "HIGH",
71
+ requiresHumanApproval: true,
72
+ tags: ["intro", "optin", "privacy"],
73
+ },
74
+ {
75
+ id: "venture.intro.facilitate",
76
+ label: "Facilitate Warm Introduction",
77
+ description: "Authorize AI agent to send warm email introduction to both parties after double opt-in confirmed",
78
+ riskLevel: "HIGH",
79
+ requiresHumanApproval: true,
80
+ tags: ["intro", "email", "facilitation"],
81
+ },
82
+ // ── Due Diligence ──────────────────────────────────────
83
+ {
84
+ id: "venture.diligence.request_data",
85
+ label: "Request Data Room Access",
86
+ description: "Authorize AI agent to request access to founder's data room for due diligence review",
87
+ riskLevel: "HIGH",
88
+ requiresHumanApproval: true,
89
+ tags: ["diligence", "data", "access"],
90
+ },
91
+ ];
92
+ //# sourceMappingURL=actions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"actions.js","sourceRoot":"","sources":["../src/actions.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,MAAM,CAAC,MAAM,eAAe,GAAqB;IAC/C,0DAA0D;IAC1D;QACE,EAAE,EAAE,wBAAwB;QAC5B,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EACT,sGAAsG;QACxG,SAAS,EAAE,KAAK;QAChB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,UAAU,EAAE,SAAS,EAAE,YAAY,CAAC;KAC5C;IACD;QACE,EAAE,EAAE,0BAA0B;QAC9B,KAAK,EAAE,6BAA6B;QACpC,WAAW,EACT,+FAA+F;QACjG,SAAS,EAAE,QAAQ;QACnB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,UAAU,EAAE,eAAe,EAAE,QAAQ,CAAC;KAC9C;IAED,0DAA0D;IAC1D;QACE,EAAE,EAAE,2BAA2B;QAC/B,KAAK,EAAE,2BAA2B;QAClC,WAAW,EACT,0GAA0G;QAC5G,SAAS,EAAE,QAAQ;QACnB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,UAAU,CAAC;KAC3C;IACD;QACE,EAAE,EAAE,+BAA+B;QACnC,KAAK,EAAE,sBAAsB;QAC7B,WAAW,EACT,wFAAwF;QAC1F,SAAS,EAAE,QAAQ;QACnB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC;KACtC;IACD;QACE,EAAE,EAAE,iCAAiC;QACrC,KAAK,EAAE,yBAAyB;QAChC,WAAW,EACT,0FAA0F;QAC5F,SAAS,EAAE,QAAQ;QACnB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,SAAS,EAAE,WAAW,EAAE,eAAe,CAAC;KAChD;IAED,0DAA0D;IAC1D;QACE,EAAE,EAAE,8BAA8B;QAClC,KAAK,EAAE,2BAA2B;QAClC,WAAW,EACT,wGAAwG;QAC1G,SAAS,EAAE,KAAK;QAChB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,UAAU,EAAE,SAAS,EAAE,QAAQ,CAAC;KACxC;IACD;QACE,EAAE,EAAE,2BAA2B;QAC/B,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EACT,sFAAsF;QACxF,SAAS,EAAE,KAAK;QAChB,qBAAqB,EAAE,KAAK;QAC5B,IAAI,EAAE,CAAC,UAAU,EAAE,SAAS,EAAE,SAAS,CAAC;KACzC;IAED,0DAA0D;IAC1D;QACE,EAAE,EAAE,6BAA6B;QACjC,KAAK,EAAE,uBAAuB;QAC9B,WAAW,EACT,uGAAuG;QACzG,SAAS,EAAE,MAAM;QACjB,qBAAqB,EAAE,IAAI;QAC3B,IAAI,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,SAAS,CAAC;KACpC;IACD;QACE,EAAE,EAAE,0BAA0B;QAC9B,KAAK,EAAE,8BAA8B;QACrC,WAAW,EACT,kGAAkG;QACpG,SAAS,EAAE,MAAM;QACjB,qBAAqB,EAAE,IAAI;QAC3B,IAAI,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,cAAc,CAAC;KACzC;IAED,0DAA0D;IAC1D;QACE,EAAE,EAAE,gCAAgC;QACpC,KAAK,EAAE,0BAA0B;QACjC,WAAW,EACT,sFAAsF;QACxF,SAAS,EAAE,MAAM;QACjB,qBAAqB,EAAE,IAAI;QAC3B,IAAI,EAAE,CAAC,WAAW,EAAE,MAAM,EAAE,QAAQ,CAAC;KACtC;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { TaxonomyConstraintTemplate } from "@mandaitor/taxonomy-core";
2
+ export declare const VENTURE_CONSTRAINTS: TaxonomyConstraintTemplate[];
3
+ //# sourceMappingURL=constraints.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constraints.d.ts","sourceRoot":"","sources":["../src/constraints.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,0BAA0B,EAAE,MAAM,0BAA0B,CAAC;AAE3E,eAAO,MAAM,mBAAmB,EAAE,0BAA0B,EAqG3D,CAAC"}
@@ -0,0 +1,103 @@
1
+ export const VENTURE_CONSTRAINTS = [
2
+ {
3
+ id: "venture.time.fund-lifecycle",
4
+ name: "Fund Lifecycle Constraint",
5
+ description: "Limits mandate validity to the fund's active investment period",
6
+ type: "TIME",
7
+ schema: {
8
+ not_before: {
9
+ type: "string",
10
+ format: "date-time",
11
+ description: "Fund investment period start",
12
+ },
13
+ expires_at: {
14
+ type: "string",
15
+ format: "date-time",
16
+ description: "Fund investment period end",
17
+ },
18
+ defaultDuration: { type: "string", format: "duration", default: "P365D" },
19
+ },
20
+ defaults: {
21
+ defaultDuration: "P365D",
22
+ },
23
+ },
24
+ {
25
+ id: "venture.rate.scouting",
26
+ name: "Scouting Rate Limits",
27
+ description: "Rate limits for autonomous deal scouting to prevent signal fatigue",
28
+ type: "RATE_LIMIT",
29
+ schema: {
30
+ max_scouts_per_day: {
31
+ type: "number",
32
+ description: "Maximum scouting signals processed per day",
33
+ default: 500,
34
+ },
35
+ max_qualifications_per_day: {
36
+ type: "number",
37
+ description: "Maximum leads qualified per day",
38
+ default: 50,
39
+ },
40
+ },
41
+ defaults: {
42
+ max_scouts_per_day: 500,
43
+ max_qualifications_per_day: 50,
44
+ },
45
+ },
46
+ {
47
+ id: "venture.rate.introductions",
48
+ name: "Introduction Rate Limits",
49
+ description: "Rate limits for warm introductions to maintain quality",
50
+ type: "RATE_LIMIT",
51
+ schema: {
52
+ max_intros_per_week: {
53
+ type: "number",
54
+ description: "Maximum warm introductions per week",
55
+ default: 10,
56
+ },
57
+ max_optin_requests_per_day: {
58
+ type: "number",
59
+ description: "Maximum opt-in requests per day",
60
+ default: 20,
61
+ },
62
+ },
63
+ defaults: {
64
+ max_intros_per_week: 10,
65
+ max_optin_requests_per_day: 20,
66
+ },
67
+ },
68
+ {
69
+ id: "venture.consent.founder-data",
70
+ name: "Founder Data Consent",
71
+ description: "Consent requirements for processing founder data",
72
+ type: "COMPLIANCE",
73
+ schema: {
74
+ require_founder_consent: {
75
+ type: "boolean",
76
+ description: "Whether explicit founder consent is required",
77
+ default: true,
78
+ },
79
+ require_double_optin: {
80
+ type: "boolean",
81
+ description: "Whether double opt-in is required for introductions",
82
+ default: true,
83
+ },
84
+ max_interview_duration_minutes: {
85
+ type: "number",
86
+ description: "Maximum duration for AI-conducted interviews",
87
+ default: 30,
88
+ },
89
+ min_thesis_fit_score: {
90
+ type: "number",
91
+ description: "Minimum thesis-fit score required for introduction (0-1)",
92
+ default: 0.75,
93
+ },
94
+ },
95
+ defaults: {
96
+ require_founder_consent: true,
97
+ require_double_optin: true,
98
+ max_interview_duration_minutes: 30,
99
+ min_thesis_fit_score: 0.75,
100
+ },
101
+ },
102
+ ];
103
+ //# sourceMappingURL=constraints.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constraints.js","sourceRoot":"","sources":["../src/constraints.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,MAAM,mBAAmB,GAAiC;IAC/D;QACE,EAAE,EAAE,6BAA6B;QACjC,IAAI,EAAE,2BAA2B;QACjC,WAAW,EAAE,gEAAgE;QAC7E,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE;YACN,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,MAAM,EAAE,WAAW;gBACnB,WAAW,EAAE,8BAA8B;aAC5C;YACD,UAAU,EAAE;gBACV,IAAI,EAAE,QAAQ;gBACd,MAAM,EAAE,WAAW;gBACnB,WAAW,EAAE,4BAA4B;aAC1C;YACD,eAAe,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,EAAE,UAAU,EAAE,OAAO,EAAE,OAAO,EAAE;SAC1E;QACD,QAAQ,EAAE;YACR,eAAe,EAAE,OAAO;SACzB;KACF;IACD;QACE,EAAE,EAAE,uBAAuB;QAC3B,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EAAE,oEAAoE;QACjF,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE;YACN,kBAAkB,EAAE;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4CAA4C;gBACzD,OAAO,EAAE,GAAG;aACb;YACD,0BAA0B,EAAE;gBAC1B,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iCAAiC;gBAC9C,OAAO,EAAE,EAAE;aACZ;SACF;QACD,QAAQ,EAAE;YACR,kBAAkB,EAAE,GAAG;YACvB,0BAA0B,EAAE,EAAE;SAC/B;KACF;IACD;QACE,EAAE,EAAE,4BAA4B;QAChC,IAAI,EAAE,0BAA0B;QAChC,WAAW,EAAE,wDAAwD;QACrE,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE;YACN,mBAAmB,EAAE;gBACnB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,qCAAqC;gBAClD,OAAO,EAAE,EAAE;aACZ;YACD,0BAA0B,EAAE;gBAC1B,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,iCAAiC;gBAC9C,OAAO,EAAE,EAAE;aACZ;SACF;QACD,QAAQ,EAAE;YACR,mBAAmB,EAAE,EAAE;YACvB,0BAA0B,EAAE,EAAE;SAC/B;KACF;IACD;QACE,EAAE,EAAE,8BAA8B;QAClC,IAAI,EAAE,sBAAsB;QAC5B,WAAW,EAAE,kDAAkD;QAC/D,IAAI,EAAE,YAAY;QAClB,MAAM,EAAE;YACN,uBAAuB,EAAE;gBACvB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,8CAA8C;gBAC3D,OAAO,EAAE,IAAI;aACd;YACD,oBAAoB,EAAE;gBACpB,IAAI,EAAE,SAAS;gBACf,WAAW,EAAE,qDAAqD;gBAClE,OAAO,EAAE,IAAI;aACd;YACD,8BAA8B,EAAE;gBAC9B,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,8CAA8C;gBAC3D,OAAO,EAAE,EAAE;aACZ;YACD,oBAAoB,EAAE;gBACpB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,0DAA0D;gBACvE,OAAO,EAAE,IAAI;aACd;SACF;QACD,QAAQ,EAAE;YACR,uBAAuB,EAAE,IAAI;YAC7B,oBAAoB,EAAE,IAAI;YAC1B,8BAA8B,EAAE,EAAE;YAClC,oBAAoB,EAAE,IAAI;SAC3B;KACF;CACF,CAAC"}
@@ -0,0 +1,7 @@
1
+ import type { IndustryTaxonomy, TaxonomyAction, TaxonomyResourcePattern, TaxonomyMandateTemplate } from "@mandaitor/taxonomy-core";
2
+ export declare const VENTURE_ACTIONS: TaxonomyAction[];
3
+ export declare const VENTURE_RESOURCES: TaxonomyResourcePattern[];
4
+ export declare const VENTURE_TEMPLATES: TaxonomyMandateTemplate[];
5
+ export declare const ventureTaxonomy: IndustryTaxonomy;
6
+ export default ventureTaxonomy;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,gBAAgB,EAChB,cAAc,EACd,uBAAuB,EACvB,uBAAuB,EACxB,MAAM,0BAA0B,CAAC;AAElC,eAAO,MAAM,eAAe,EAAE,cAAc,EAwD3C,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,uBAAuB,EA0BtD,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,uBAAuB,EAyEtD,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,gBA0B7B,CAAC;AAEF,eAAe,eAAe,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,178 @@
1
+ export const VENTURE_ACTIONS = [
2
+ {
3
+ id: "venture.sourcing.scout",
4
+ label: "Scout Startup Signals",
5
+ description: "Authorize AI agent to monitor global signals (ProductHunt, GitHub, news) for high-potential founders",
6
+ riskLevel: "LOW",
7
+ requiresHumanApproval: false,
8
+ tags: ["sourcing", "signals", "automation"],
9
+ },
10
+ {
11
+ id: "venture.vetting.interview",
12
+ label: "Conduct Founder Interview",
13
+ description: "Authorize AI agent to conduct deep-dive interviews with founders via Telegram to verify traction and PMF",
14
+ riskLevel: "MEDIUM",
15
+ requiresHumanApproval: false,
16
+ tags: ["vetting", "interview", "telegram"],
17
+ },
18
+ {
19
+ id: "venture.vetting.audit_metrics",
20
+ label: "Audit Growth Metrics",
21
+ description: "Authorize AI agent to audit CAC/LTV ratios, MRR growth, and product-market fit signals",
22
+ riskLevel: "MEDIUM",
23
+ requiresHumanApproval: false,
24
+ tags: ["vetting", "metrics", "audit"],
25
+ },
26
+ {
27
+ id: "venture.matching.map_mandate",
28
+ label: "Map to Investment Mandate",
29
+ description: "Authorize AI agent to map vetted opportunities to the fund's specific investment thesis and benchmarks",
30
+ riskLevel: "LOW",
31
+ requiresHumanApproval: false,
32
+ tags: ["matching", "mandate", "thesis"],
33
+ },
34
+ {
35
+ id: "venture.intro.request_optin",
36
+ label: "Request Double Opt-In",
37
+ description: "Authorize AI agent to secure mutual interest from both founder and investor before facilitating intro",
38
+ riskLevel: "HIGH",
39
+ requiresHumanApproval: true,
40
+ tags: ["intro", "optin", "privacy"],
41
+ },
42
+ {
43
+ id: "venture.intro.facilitate",
44
+ label: "Facilitate Warm Introduction",
45
+ description: "Authorize AI agent to send warm email introduction to both parties after double opt-in confirmed",
46
+ riskLevel: "HIGH",
47
+ requiresHumanApproval: true,
48
+ tags: ["intro", "email", "facilitation"],
49
+ },
50
+ // ... additional actions defined in full package
51
+ ];
52
+ export const VENTURE_RESOURCES = [
53
+ {
54
+ name: "fund-mandate",
55
+ pattern: "southstarter:fund:{fundId}/mandate:{mandateId}/*",
56
+ description: "Resources scoped to a specific investment mandate within a fund",
57
+ parameters: [
58
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
59
+ { name: "mandateId", type: "string", description: "Investment mandate ID", required: true },
60
+ ],
61
+ },
62
+ {
63
+ name: "fund-pipeline",
64
+ pattern: "southstarter:fund:{fundId}/pipeline:*",
65
+ description: "All deal pipeline items for a fund",
66
+ parameters: [
67
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
68
+ ],
69
+ },
70
+ {
71
+ name: "founder-profile",
72
+ pattern: "southstarter:founder:{founderId}/*",
73
+ description: "Founder profile and vetting data",
74
+ parameters: [
75
+ { name: "founderId", type: "string", description: "Founder profile ID", required: true },
76
+ ],
77
+ },
78
+ ];
79
+ export const VENTURE_TEMPLATES = [
80
+ {
81
+ id: "venture.autonomous-scouting",
82
+ name: "Autonomous Deal Scouting",
83
+ description: "Delegate startup signal monitoring and initial qualification to SouthStarter's Scout Agent",
84
+ vertical: "venture",
85
+ scope: {
86
+ actions: [
87
+ "venture.sourcing.scout",
88
+ "venture.sourcing.qualify",
89
+ "venture.matching.map_mandate",
90
+ "venture.matching.rank_fit",
91
+ ],
92
+ resourcePatterns: ["fund-mandate", "fund-pipeline"],
93
+ effect: "ALLOW",
94
+ },
95
+ constraints: {
96
+ time: { defaultDuration: "P365D" },
97
+ rateLimits: { max_scouts_per_day: 500, max_qualifications_per_day: 50 },
98
+ },
99
+ delegateType: "AGENT",
100
+ },
101
+ {
102
+ id: "venture.founder-vetting",
103
+ name: "AI-Powered Founder Vetting",
104
+ description: "Delegate Telegram-based founder interviews and metric auditing to SouthStarter's Vetting Agent",
105
+ vertical: "venture",
106
+ scope: {
107
+ actions: [
108
+ "venture.vetting.interview",
109
+ "venture.vetting.audit_metrics",
110
+ "venture.vetting.generate_report",
111
+ ],
112
+ resourcePatterns: ["founder-profile"],
113
+ effect: "ALLOW",
114
+ conditions: {
115
+ require_founder_consent: true,
116
+ max_interview_duration_minutes: 30,
117
+ },
118
+ },
119
+ constraints: {
120
+ time: { defaultDuration: "P90D" },
121
+ rateLimits: { max_interviews_per_day: 20 },
122
+ },
123
+ delegateType: "AGENT",
124
+ },
125
+ {
126
+ id: "venture.warm-introductions",
127
+ name: "Warm Introduction Facilitation",
128
+ description: "Delegate double-opt-in intro facilitation between vetted founders and fund partners",
129
+ vertical: "venture",
130
+ scope: {
131
+ actions: ["venture.intro.request_optin", "venture.intro.facilitate"],
132
+ resourcePatterns: ["fund-mandate", "founder-profile"],
133
+ effect: "ALLOW",
134
+ conditions: {
135
+ require_double_optin: true,
136
+ min_thesis_fit_score: 0.75,
137
+ },
138
+ },
139
+ constraints: {
140
+ time: { defaultDuration: "P180D" },
141
+ rateLimits: { max_intros_per_week: 10 },
142
+ escalationRules: {
143
+ always_notify: "fund_partner",
144
+ escalation_method: "NOTIFICATION",
145
+ },
146
+ },
147
+ delegateType: "AGENT",
148
+ },
149
+ ];
150
+ export const ventureTaxonomy = {
151
+ id: "venture",
152
+ version: "1.0.0",
153
+ name: "Venture Capital & Deal Flow",
154
+ actions: VENTURE_ACTIONS,
155
+ resourcePatterns: VENTURE_RESOURCES,
156
+ constraintTemplates: [],
157
+ mandateTemplates: VENTURE_TEMPLATES,
158
+ validateScope(scope) {
159
+ const errors = [];
160
+ const validActions = new Set(VENTURE_ACTIONS.map((a) => a.id));
161
+ const scopeWithActions = scope;
162
+ for (const action of scopeWithActions.actions || []) {
163
+ if (!validActions.has(action)) {
164
+ errors.push({
165
+ path: `scope.actions[${action}]`,
166
+ message: `Unknown action: ${action}`,
167
+ code: "UNKNOWN_ACTION",
168
+ });
169
+ }
170
+ }
171
+ return { valid: errors.length === 0, errors };
172
+ },
173
+ validateConstraints(_constraints) {
174
+ return { valid: true, errors: [] };
175
+ },
176
+ };
177
+ export default ventureTaxonomy;
178
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,7 @@
1
+ import type { TaxonomyResourcePattern } from "@mandaitor/taxonomy-core";
2
+ /**
3
+ * Resource patterns follow the SouthStarter deal flow hierarchy:
4
+ * fund → mandate → pipeline → founder
5
+ */
6
+ export declare const VENTURE_RESOURCES: TaxonomyResourcePattern[];
7
+ //# sourceMappingURL=resources.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resources.d.ts","sourceRoot":"","sources":["../src/resources.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAExE;;;GAGG;AACH,eAAO,MAAM,iBAAiB,EAAE,uBAAuB,EAgDtD,CAAC"}
@@ -0,0 +1,54 @@
1
+ /**
2
+ * Resource patterns follow the SouthStarter deal flow hierarchy:
3
+ * fund → mandate → pipeline → founder
4
+ */
5
+ export const VENTURE_RESOURCES = [
6
+ {
7
+ name: "fund-mandate",
8
+ pattern: "southstarter:fund:{fundId}/mandate:{mandateId}/*",
9
+ description: "Resources scoped to a specific investment mandate within a fund",
10
+ parameters: [
11
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
12
+ { name: "mandateId", type: "string", description: "Investment mandate ID", required: true },
13
+ ],
14
+ },
15
+ {
16
+ name: "fund-pipeline",
17
+ pattern: "southstarter:fund:{fundId}/pipeline:*",
18
+ description: "All deal pipeline items for a fund",
19
+ parameters: [
20
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
21
+ ],
22
+ },
23
+ {
24
+ name: "founder-profile",
25
+ pattern: "southstarter:founder:{founderId}/*",
26
+ description: "Founder profile and vetting data",
27
+ parameters: [
28
+ { name: "founderId", type: "string", description: "Founder profile ID", required: true },
29
+ ],
30
+ },
31
+ {
32
+ name: "fund-wide",
33
+ pattern: "southstarter:fund:{fundId}/*",
34
+ description: "All resources within a fund — use with caution, grants broad access",
35
+ parameters: [
36
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
37
+ ],
38
+ },
39
+ {
40
+ name: "fund-reports",
41
+ pattern: "southstarter:fund:{fundId}/reports:{reportType}/*",
42
+ description: "Fund reports of a specific type (vetting, pipeline, performance)",
43
+ parameters: [
44
+ { name: "fundId", type: "string", description: "Fund or investor ID", required: true },
45
+ {
46
+ name: "reportType",
47
+ type: "string",
48
+ description: "Report type (vetting, pipeline, performance)",
49
+ required: true,
50
+ },
51
+ ],
52
+ },
53
+ ];
54
+ //# sourceMappingURL=resources.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"resources.js","sourceRoot":"","sources":["../src/resources.ts"],"names":[],"mappings":"AAIA;;;GAGG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAA8B;IAC1D;QACE,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE,kDAAkD;QAC3D,WAAW,EAAE,iEAAiE;QAC9E,UAAU,EAAE;YACV,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE;YACtF,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,uBAAuB,EAAE,QAAQ,EAAE,IAAI,EAAE;SAC5F;KACF;IACD;QACE,IAAI,EAAE,eAAe;QACrB,OAAO,EAAE,uCAAuC;QAChD,WAAW,EAAE,oCAAoC;QACjD,UAAU,EAAE;YACV,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE;SACvF;KACF;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,OAAO,EAAE,oCAAoC;QAC7C,WAAW,EAAE,kCAAkC;QAC/C,UAAU,EAAE;YACV,EAAE,IAAI,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,oBAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE;SACzF;KACF;IACD;QACE,IAAI,EAAE,WAAW;QACjB,OAAO,EAAE,8BAA8B;QACvC,WAAW,EAAE,qEAAqE;QAClF,UAAU,EAAE;YACV,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE;SACvF;KACF;IACD;QACE,IAAI,EAAE,cAAc;QACpB,OAAO,EAAE,mDAAmD;QAC5D,WAAW,EAAE,kEAAkE;QAC/E,UAAU,EAAE;YACV,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,qBAAqB,EAAE,QAAQ,EAAE,IAAI,EAAE;YACtF;gBACE,IAAI,EAAE,YAAY;gBAClB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,8CAA8C;gBAC3D,QAAQ,EAAE,IAAI;aACf;SACF;KACF;CACF,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { TaxonomyMandateTemplate } from "@mandaitor/taxonomy-core";
2
+ export declare const VENTURE_TEMPLATES: TaxonomyMandateTemplate[];
3
+ //# sourceMappingURL=templates.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"templates.d.ts","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,0BAA0B,CAAC;AAExE,eAAO,MAAM,iBAAiB,EAAE,uBAAuB,EAoFtD,CAAC"}
@@ -0,0 +1,83 @@
1
+ export const VENTURE_TEMPLATES = [
2
+ {
3
+ id: "venture.autonomous-scouting",
4
+ name: "Autonomous Deal Scouting",
5
+ description: "Delegate startup signal monitoring and initial qualification to SouthStarter's Scout Agent",
6
+ vertical: "venture",
7
+ scope: {
8
+ actions: [
9
+ "venture.sourcing.scout",
10
+ "venture.sourcing.qualify",
11
+ "venture.matching.map_mandate",
12
+ "venture.matching.rank_fit",
13
+ ],
14
+ resourcePatterns: ["fund-mandate", "fund-pipeline"],
15
+ effect: "ALLOW",
16
+ },
17
+ constraints: {
18
+ time: { defaultDuration: "P365D" },
19
+ rateLimits: { max_scouts_per_day: 500, max_qualifications_per_day: 50 },
20
+ },
21
+ delegateType: "AGENT",
22
+ },
23
+ {
24
+ id: "venture.founder-vetting",
25
+ name: "AI-Powered Founder Vetting",
26
+ description: "Delegate Telegram-based founder interviews and metric auditing to SouthStarter's Vetting Agent",
27
+ vertical: "venture",
28
+ scope: {
29
+ actions: [
30
+ "venture.vetting.interview",
31
+ "venture.vetting.audit_metrics",
32
+ "venture.vetting.generate_report",
33
+ ],
34
+ resourcePatterns: ["founder-profile"],
35
+ effect: "ALLOW",
36
+ conditions: { require_founder_consent: true, max_interview_duration_minutes: 30 },
37
+ },
38
+ constraints: {
39
+ time: { defaultDuration: "P90D" },
40
+ rateLimits: { max_interviews_per_day: 20 },
41
+ },
42
+ delegateType: "AGENT",
43
+ },
44
+ {
45
+ id: "venture.warm-introductions",
46
+ name: "Warm Introduction Facilitation",
47
+ description: "Delegate double-opt-in intro facilitation between vetted founders and fund partners",
48
+ vertical: "venture",
49
+ scope: {
50
+ actions: ["venture.intro.request_optin", "venture.intro.facilitate"],
51
+ resourcePatterns: ["fund-mandate", "founder-profile"],
52
+ effect: "ALLOW",
53
+ conditions: { require_double_optin: true, min_thesis_fit_score: 0.75 },
54
+ },
55
+ constraints: {
56
+ time: { defaultDuration: "P180D" },
57
+ rateLimits: { max_intros_per_week: 10 },
58
+ escalationRules: { always_notify: "fund_partner", escalation_method: "NOTIFICATION" },
59
+ },
60
+ delegateType: "AGENT",
61
+ },
62
+ {
63
+ id: "venture.due-diligence",
64
+ name: "Due Diligence Data Access",
65
+ description: "Delegate data room access requests for qualified opportunities that pass vetting",
66
+ vertical: "venture",
67
+ scope: {
68
+ actions: ["venture.diligence.request_data"],
69
+ resourcePatterns: ["founder-profile", "fund-reports"],
70
+ effect: "ALLOW",
71
+ },
72
+ constraints: {
73
+ time: { defaultDuration: "P30D" },
74
+ rateLimits: { max_requests_per_week: 5 },
75
+ escalationRules: {
76
+ always_escalate_to: "fund_partner",
77
+ escalation_method: "APPROVAL_REQUIRED",
78
+ },
79
+ },
80
+ delegateType: "AGENT",
81
+ },
82
+ ];
83
+ //# sourceMappingURL=templates.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"templates.js","sourceRoot":"","sources":["../src/templates.ts"],"names":[],"mappings":"AAIA,MAAM,CAAC,MAAM,iBAAiB,GAA8B;IAC1D;QACE,EAAE,EAAE,6BAA6B;QACjC,IAAI,EAAE,0BAA0B;QAChC,WAAW,EACT,4FAA4F;QAC9F,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,wBAAwB;gBACxB,0BAA0B;gBAC1B,8BAA8B;gBAC9B,2BAA2B;aAC5B;YACD,gBAAgB,EAAE,CAAC,cAAc,EAAE,eAAe,CAAC;YACnD,MAAM,EAAE,OAAO;SAChB;QACD,WAAW,EAAE;YACX,IAAI,EAAE,EAAE,eAAe,EAAE,OAAO,EAAE;YAClC,UAAU,EAAE,EAAE,kBAAkB,EAAE,GAAG,EAAE,0BAA0B,EAAE,EAAE,EAAE;SACxE;QACD,YAAY,EAAE,OAAO;KACtB;IACD;QACE,EAAE,EAAE,yBAAyB;QAC7B,IAAI,EAAE,4BAA4B;QAClC,WAAW,EACT,gGAAgG;QAClG,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE;YACL,OAAO,EAAE;gBACP,2BAA2B;gBAC3B,+BAA+B;gBAC/B,iCAAiC;aAClC;YACD,gBAAgB,EAAE,CAAC,iBAAiB,CAAC;YACrC,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,EAAE,uBAAuB,EAAE,IAAI,EAAE,8BAA8B,EAAE,EAAE,EAAE;SAClF;QACD,WAAW,EAAE;YACX,IAAI,EAAE,EAAE,eAAe,EAAE,MAAM,EAAE;YACjC,UAAU,EAAE,EAAE,sBAAsB,EAAE,EAAE,EAAE;SAC3C;QACD,YAAY,EAAE,OAAO;KACtB;IACD;QACE,EAAE,EAAE,4BAA4B;QAChC,IAAI,EAAE,gCAAgC;QACtC,WAAW,EACT,qFAAqF;QACvF,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE;YACL,OAAO,EAAE,CAAC,6BAA6B,EAAE,0BAA0B,CAAC;YACpE,gBAAgB,EAAE,CAAC,cAAc,EAAE,iBAAiB,CAAC;YACrD,MAAM,EAAE,OAAO;YACf,UAAU,EAAE,EAAE,oBAAoB,EAAE,IAAI,EAAE,oBAAoB,EAAE,IAAI,EAAE;SACvE;QACD,WAAW,EAAE;YACX,IAAI,EAAE,EAAE,eAAe,EAAE,OAAO,EAAE;YAClC,UAAU,EAAE,EAAE,mBAAmB,EAAE,EAAE,EAAE;YACvC,eAAe,EAAE,EAAE,aAAa,EAAE,cAAc,EAAE,iBAAiB,EAAE,cAAc,EAAE;SACtF;QACD,YAAY,EAAE,OAAO;KACtB;IACD;QACE,EAAE,EAAE,uBAAuB;QAC3B,IAAI,EAAE,2BAA2B;QACjC,WAAW,EAAE,kFAAkF;QAC/F,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE;YACL,OAAO,EAAE,CAAC,gCAAgC,CAAC;YAC3C,gBAAgB,EAAE,CAAC,iBAAiB,EAAE,cAAc,CAAC;YACrD,MAAM,EAAE,OAAO;SAChB;QACD,WAAW,EAAE;YACX,IAAI,EAAE,EAAE,eAAe,EAAE,MAAM,EAAE;YACjC,UAAU,EAAE,EAAE,qBAAqB,EAAE,CAAC,EAAE;YACxC,eAAe,EAAE;gBACf,kBAAkB,EAAE,cAAc;gBAClC,iBAAiB,EAAE,mBAAmB;aACvC;SACF;QACD,YAAY,EAAE,OAAO;KACtB;CACF,CAAC"}
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@mandaitor/taxonomy-venture",
3
+ "version": "0.1.1",
4
+ "description": "Mandaitor — Venture capital industry taxonomy (SouthStarter)",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "dependencies": {
20
+ "@mandaitor/taxonomy-core": "0.1.1"
21
+ },
22
+ "devDependencies": {
23
+ "typescript": "^5.6.0",
24
+ "vitest": "^4.0.0"
25
+ },
26
+ "publishConfig": {
27
+ "registry": "https://registry.npmjs.org",
28
+ "access": "public"
29
+ },
30
+ "license": "MIT",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/C4RR13P0TT3R/mandaitor.git",
34
+ "directory": "packages/taxonomy-venture"
35
+ },
36
+ "keywords": [
37
+ "mandaitor",
38
+ "delegation",
39
+ "mandate",
40
+ "ai-governance",
41
+ "trust",
42
+ "verification",
43
+ "proof-of-mandate",
44
+ "sd-jwt",
45
+ "verifiable-credentials",
46
+ "taxonomy",
47
+ "venture-capital",
48
+ "southstarter"
49
+ ],
50
+ "homepage": "https://docs.mandaitor.io/docs/taxonomies/venture",
51
+ "bugs": {
52
+ "url": "https://github.com/C4RR13P0TT3R/mandaitor/issues"
53
+ },
54
+ "author": "Mandaitor <support@mandaitor.io> (https://mandaitor.io)",
55
+ "scripts": {
56
+ "build": "tsc",
57
+ "test": "vitest run",
58
+ "test:unit": "vitest run",
59
+ "typecheck": "tsc -p tsconfig.typecheck.json",
60
+ "lint": "eslint src/",
61
+ "lint:fix": "eslint src/ --fix",
62
+ "clean": "rm -rf dist tsconfig.tsbuildinfo"
63
+ }
64
+ }