@hasna/microservices 0.0.5 → 0.0.6

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/bin/index.js CHANGED
@@ -3961,7 +3961,8 @@ var CATEGORIES = [
3961
3961
  "Operations",
3962
3962
  "Productivity",
3963
3963
  "HR",
3964
- "Analytics"
3964
+ "Analytics",
3965
+ "Management"
3965
3966
  ];
3966
3967
  var MICROSERVICES = [
3967
3968
  {
@@ -4097,6 +4098,13 @@ var MICROSERVICES = [
4097
4098
  category: "HR",
4098
4099
  tags: ["payroll", "salary", "wages", "deductions", "tax", "employees", "pay-stubs"]
4099
4100
  },
4101
+ {
4102
+ name: "company",
4103
+ displayName: "Company",
4104
+ description: "AI agent control plane for autonomous company operations \u2014 organizations, teams, members, customers, and vendors",
4105
+ category: "Management",
4106
+ tags: ["company", "organization", "teams", "members", "customers", "vendors", "management"]
4107
+ },
4100
4108
  {
4101
4109
  name: "transcriber",
4102
4110
  displayName: "Transcriber",
package/bin/mcp.js CHANGED
@@ -19462,7 +19462,8 @@ var CATEGORIES = [
19462
19462
  "Operations",
19463
19463
  "Productivity",
19464
19464
  "HR",
19465
- "Analytics"
19465
+ "Analytics",
19466
+ "Management"
19466
19467
  ];
19467
19468
  var MICROSERVICES = [
19468
19469
  {
@@ -19598,6 +19599,13 @@ var MICROSERVICES = [
19598
19599
  category: "HR",
19599
19600
  tags: ["payroll", "salary", "wages", "deductions", "tax", "employees", "pay-stubs"]
19600
19601
  },
19602
+ {
19603
+ name: "company",
19604
+ displayName: "Company",
19605
+ description: "AI agent control plane for autonomous company operations \u2014 organizations, teams, members, customers, and vendors",
19606
+ category: "Management",
19607
+ tags: ["company", "organization", "teams", "members", "customers", "vendors", "management"]
19608
+ },
19601
19609
  {
19602
19610
  name: "transcriber",
19603
19611
  displayName: "Transcriber",
package/dist/index.js CHANGED
@@ -6,7 +6,8 @@ var CATEGORIES = [
6
6
  "Operations",
7
7
  "Productivity",
8
8
  "HR",
9
- "Analytics"
9
+ "Analytics",
10
+ "Management"
10
11
  ];
11
12
  var MICROSERVICES = [
12
13
  {
@@ -142,6 +143,13 @@ var MICROSERVICES = [
142
143
  category: "HR",
143
144
  tags: ["payroll", "salary", "wages", "deductions", "tax", "employees", "pay-stubs"]
144
145
  },
146
+ {
147
+ name: "company",
148
+ displayName: "Company",
149
+ description: "AI agent control plane for autonomous company operations \u2014 organizations, teams, members, customers, and vendors",
150
+ category: "Management",
151
+ tags: ["company", "organization", "teams", "members", "customers", "vendors", "management"]
152
+ },
145
153
  {
146
154
  name: "transcriber",
147
155
  displayName: "Transcriber",
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@hasna/microservice-company",
3
+ "version": "0.0.1",
4
+ "description": "AI agent control plane for autonomous company operations — organizations, teams, members, customers, and vendors",
5
+ "type": "module",
6
+ "bin": {
7
+ "microservice-company": "./src/cli/index.ts",
8
+ "microservice-company-mcp": "./src/mcp/index.ts"
9
+ },
10
+ "exports": {
11
+ ".": "./src/index.ts"
12
+ },
13
+ "scripts": {
14
+ "dev": "bun run ./src/cli/index.ts",
15
+ "test": "bun test"
16
+ },
17
+ "dependencies": {
18
+ "@modelcontextprotocol/sdk": "^1.26.0",
19
+ "commander": "^12.1.0",
20
+ "zod": "^3.24.0"
21
+ },
22
+ "license": "Apache-2.0",
23
+ "publishConfig": {
24
+ "registry": "https://registry.npmjs.org",
25
+ "access": "public"
26
+ }
27
+ }