Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .agents/skills/cli-admin/references/org-is-manager-of.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ Execute the orgIsManagerOf query
## Usage

```bash
csdk org-is-manager-of --pEntityId <UUID> --pManagerId <UUID> --pMaxDepth <Int> --pUserId <UUID>
csdk org-is-manager-of --managerId <UUID> --maxDepth <Int> --targetEntityId <UUID> --userId <UUID>
```

## Examples

### Run orgIsManagerOf

```bash
csdk org-is-manager-of --pEntityId <UUID> --pManagerId <UUID> --pMaxDepth <Int> --pUserId <UUID>
csdk org-is-manager-of --managerId <UUID> --maxDepth <Int> --targetEntityId <UUID> --userId <UUID>
```
6 changes: 4 additions & 2 deletions .agents/skills/cli-api/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: cli-api
description: CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
description: CLI tool (csdk) for the api API — provides CRUD commands for 49 tables and 9 custom operations
---

# cli-api

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

CLI tool (csdk) for the api API — provides CRUD commands for 47 tables and 9 custom operations
CLI tool (csdk) for the api API — provides CRUD commands for 49 tables and 9 custom operations

## Usage

Expand Down Expand Up @@ -70,6 +70,8 @@ See the `references/` directory for detailed per-entity API documentation:
- [database-transfer](references/database-transfer.md)
- [default-privilege](references/default-privilege.md)
- [domain](references/domain.md)
- [domain-event](references/domain-event.md)
- [domain-verification](references/domain-verification.md)
- [embedding-chunk](references/embedding-chunk.md)
- [enum](references/enum.md)
- [field](references/field.md)
Expand Down
68 changes: 68 additions & 0 deletions .agents/skills/cli-api/references/domain-event.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# domainEvent

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

CRUD operations for DomainEvent records via csdk CLI

## Usage

```bash
csdk domain-event list
csdk domain-event list --where.<field>.<op> <value> --orderBy <values>
csdk domain-event list --limit 10 --after <cursor>
csdk domain-event find-first --where.<field>.<op> <value>
csdk domain-event get --id <UUID>
csdk domain-event create --eventType <String> --managedDomainId <UUID> --ownerId <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--message <String>] [--metadata <JSON>]
csdk domain-event update --id <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--eventType <String>] [--managedDomainId <UUID>] [--message <String>] [--metadata <JSON>] [--ownerId <UUID>]
csdk domain-event delete --id <UUID>
```

## Examples

### List domainEvent records

```bash
csdk domain-event list
```

### List domainEvent records with pagination

```bash
csdk domain-event list --limit 10 --offset 0
```

### List domainEvent records with cursor pagination

```bash
csdk domain-event list --limit 10 --after <cursor>
```

### Find first matching domainEvent

```bash
csdk domain-event find-first --where.id.equalTo <value>
```

### List domainEvent records with field selection

```bash
csdk domain-event list --select id,id
```

### List domainEvent records with filtering and ordering

```bash
csdk domain-event list --where.id.equalTo <value> --orderBy ID_ASC
```

### Create a domainEvent

```bash
csdk domain-event create --eventType <String> --managedDomainId <UUID> --ownerId <UUID> [--actorId <UUID>] [--domainVerificationId <UUID>] [--message <String>] [--metadata <JSON>]
```

### Get a domainEvent by id

```bash
csdk domain-event get --id <value>
```
68 changes: 68 additions & 0 deletions .agents/skills/cli-api/references/domain-verification.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# domainVerification

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

CRUD operations for DomainVerification records via csdk CLI

## Usage

```bash
csdk domain-verification list
csdk domain-verification list --where.<field>.<op> <value> --orderBy <values>
csdk domain-verification list --limit 10 --after <cursor>
csdk domain-verification find-first --where.<field>.<op> <value>
csdk domain-verification get --id <UUID>
csdk domain-verification create --managedDomainId <UUID> --ownerId <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--method <String>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
csdk domain-verification update --id <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--managedDomainId <UUID>] [--method <String>] [--ownerId <UUID>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
csdk domain-verification delete --id <UUID>
```

## Examples

### List domainVerification records

```bash
csdk domain-verification list
```

### List domainVerification records with pagination

```bash
csdk domain-verification list --limit 10 --offset 0
```

### List domainVerification records with cursor pagination

```bash
csdk domain-verification list --limit 10 --after <cursor>
```

### Find first matching domainVerification

```bash
csdk domain-verification find-first --where.id.equalTo <value>
```

### List domainVerification records with field selection

```bash
csdk domain-verification list --select id,id
```

### List domainVerification records with filtering and ordering

```bash
csdk domain-verification list --where.id.equalTo <value> --orderBy ID_ASC
```

### Create a domainVerification

```bash
csdk domain-verification create --managedDomainId <UUID> --ownerId <UUID> [--attempts <Int>] [--error <String>] [--expiresAt <Datetime>] [--lastCheckedAt <Datetime>] [--method <String>] [--recordName <String>] [--recordType <String>] [--recordValue <String>] [--status <String>] [--verifiedAt <Datetime>]
```

### Get a domainVerification by id

```bash
csdk domain-verification get --id <value>
```
6 changes: 3 additions & 3 deletions .agents/skills/cli-api/references/managed-domain.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ csdk managed-domain list --where.<field>.<op> <value> --orderBy <values>
csdk managed-domain list --limit 10 --after <cursor>
csdk managed-domain find-first --where.<field>.<op> <value>
csdk managed-domain get --id <UUID>
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--annotations <JSON>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
csdk managed-domain update --id <UUID> [--annotations <JSON>] [--databaseId <UUID>] [--domain <Hostname>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
csdk managed-domain update --id <UUID> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--databaseId <UUID>] [--domain <Hostname>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
csdk managed-domain delete --id <UUID>
```

Expand Down Expand Up @@ -58,7 +58,7 @@ csdk managed-domain list --where.id.equalTo <value> --orderBy ID_ASC
### Create a managedDomain

```bash
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--annotations <JSON>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
csdk managed-domain create --databaseId <UUID> --domain <Hostname> [--allowPublicUsage <Boolean>] [--annotations <JSON>] [--certStatus <String>] [--isWildcard <Boolean>] [--tlsReadyAt <Datetime>] [--tlsStatus <String>] [--verificationStatus <String>] [--verifiedAt <Datetime>]
```

### Get a managedDomain by id
Expand Down
2 changes: 1 addition & 1 deletion .agents/skills/cli-api/references/request-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Requests a database and returns a ticket (database_provision_module row) to poll.

Pass exactly one of preset_slug or modules. The pool, presets, and owner bootstrap are private implementation details: a warm pool hit fulfills the ticket immediately (fulfilled_at set, deferred owner bootstrap), otherwise the database is cold-provisioned with exactly the requested modules. Poll the ticket until status = 'completed'; it then carries database_id and fulfilled_at.
Pass exactly one of preset_slug or modules. The pool, presets, and owner bootstrap are private implementation details: a warm pool hit fulfills the ticket immediately (fulfilled_at set, deferred owner bootstrap), otherwise the database is cold-provisioned asynchronously with exactly the requested modules. Poll the ticket until status = 'completed'; it then carries database_id and fulfilled_at.

Example usage:
SELECT * FROM metaschema_public.request_database('my_app', 'example.com', preset_slug := 'full');
Expand Down
4 changes: 2 additions & 2 deletions .agents/skills/cli-api/references/resolve-http-route.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ Execute the resolveHttpRoute query
## Usage

```bash
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
csdk resolve-http-route --requestHost <String> --requestMethod <String> --requestPath <String>
```

## Examples

### Run resolveHttpRoute

```bash
csdk resolve-http-route --pHost <String> --pMethod <String> --pPath <String>
csdk resolve-http-route --requestHost <String> --requestMethod <String> --requestPath <String>
```
14 changes: 8 additions & 6 deletions .agents/skills/cli-compute/SKILL.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: cli-compute
description: CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
description: CLI tool (csdk) for the compute API — provides CRUD commands for 67 tables and 29 custom operations
---

# cli-compute

<!-- @constructive-io/graphql-codegen - DO NOT EDIT -->

CLI tool (csdk) for the compute API — provides CRUD commands for 65 tables and 29 custom operations
CLI tool (csdk) for the compute API — provides CRUD commands for 67 tables and 29 custom operations

## Usage

Expand Down Expand Up @@ -57,7 +57,6 @@ See the `references/` directory for detailed per-entity API documentation:
- [auth](references/auth.md)
- [config](references/config.md)
- [db-preset](references/db-preset.md)
- [declared-capacity](references/declared-capacity.md)
- [function-api-binding](references/function-api-binding.md)
- [function-definition](references/function-definition.md)
- [function-deployment](references/function-deployment.md)
Expand All @@ -71,6 +70,7 @@ See the `references/` directory for detailed per-entity API documentation:
- [function-graph-object](references/function-graph-object.md)
- [function-graph-ref](references/function-graph-ref.md)
- [function-graph-store](references/function-graph-store.md)
- [function-invocation-attempt](references/function-invocation-attempt.md)
- [function-invocation](references/function-invocation.md)
- [get-all-tree-nodes-record](references/get-all-tree-nodes-record.md)
- [infra-commit](references/infra-commit.md)
Expand All @@ -81,12 +81,12 @@ See the `references/` directory for detailed per-entity API documentation:
- [integration-provider](references/integration-provider.md)
- [namespace](references/namespace.md)
- [namespace-event](references/namespace-event.md)
- [platform-declared-capacity](references/platform-declared-capacity.md)
- [platform-function-api-binding](references/platform-function-api-binding.md)
- [platform-function-definition](references/platform-function-definition.md)
- [platform-function-deployment](references/platform-function-deployment.md)
- [platform-function-deployment-event](references/platform-function-deployment-event.md)
- [platform-function-execution-log](references/platform-function-execution-log.md)
- [platform-function-invocation-attempt](references/platform-function-invocation-attempt.md)
- [platform-function-invocation](references/platform-function-invocation.md)
- [platform-infra-commit](references/platform-infra-commit.md)
- [platform-infra-get-all-tree-nodes-record](references/platform-infra-get-all-tree-nodes-record.md)
Expand All @@ -96,26 +96,28 @@ See the `references/` directory for detailed per-entity API documentation:
- [platform-namespace](references/platform-namespace.md)
- [platform-namespace-event](references/platform-namespace-event.md)
- [platform-resource](references/platform-resource.md)
- [platform-resource-declared-capacity](references/platform-resource-declared-capacity.md)
- [platform-resource-definition](references/platform-resource-definition.md)
- [platform-resource-event](references/platform-resource-event.md)
- [platform-resource-installation](references/platform-resource-installation.md)
- [platform-resource-status-check](references/platform-resource-status-check.md)
- [platform-resource-usage-log](references/platform-resource-usage-log.md)
- [platform-resource-usage-summary](references/platform-resource-usage-summary.md)
- [platform-resource-utilization-daily](references/platform-resource-utilization-daily.md)
- [platform-resource-utilization](references/platform-resource-utilization.md)
- [platform-resources-health](references/platform-resources-health.md)
- [platform-resources-requirements-state](references/platform-resources-requirements-state.md)
- [platform-resources-resolved-requirement](references/platform-resources-resolved-requirement.md)
- [platform-webhook-endpoint](references/platform-webhook-endpoint.md)
- [platform-webhook-event](references/platform-webhook-event.md)
- [resource](references/resource.md)
- [resource-declared-capacity](references/resource-declared-capacity.md)
- [resource-definition](references/resource-definition.md)
- [resource-event](references/resource-event.md)
- [resource-installation](references/resource-installation.md)
- [resource-status-check](references/resource-status-check.md)
- [resource-usage-log](references/resource-usage-log.md)
- [resource-usage-summary](references/resource-usage-summary.md)
- [resource-utilization-daily](references/resource-utilization-daily.md)
- [resource-utilization](references/resource-utilization.md)
- [resources-health](references/resources-health.md)
- [resources-requirements-state](references/resources-requirements-state.md)
- [resources-resolved-requirement](references/resources-resolved-requirement.md)
Expand Down
6 changes: 3 additions & 3 deletions .agents/skills/cli-compute/references/function-definition.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ csdk function-definition list --where.<field>.<op> <value> --orderBy <values>
csdk function-definition list --limit 10 --after <cursor>
csdk function-definition find-first --where.<field>.<op> <value>
csdk function-definition get --id <UUID>
csdk function-definition create --category <String> --databaseId <UUID> --name <String> --taskIdentifier <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
csdk function-definition update --id <UUID> [--accessChannels <String>] [--category <String>] [--concurrency <Int>] [--databaseId <UUID>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--name <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--taskIdentifier <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
csdk function-definition create --category <String> --databaseId <UUID> --name <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
csdk function-definition update --id <UUID> [--accessChannels <String>] [--category <String>] [--concurrency <Int>] [--databaseId <UUID>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--name <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
csdk function-definition delete --id <UUID>
```

Expand Down Expand Up @@ -58,7 +58,7 @@ csdk function-definition list --where.id.equalTo <value> --orderBy ID_ASC
### Create a functionDefinition

```bash
csdk function-definition create --category <String> --databaseId <UUID> --name <String> --taskIdentifier <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
csdk function-definition create --category <String> --databaseId <UUID> --name <String> [--accessChannels <String>] [--concurrency <Int>] [--description <String>] [--fnCategory <String>] [--functionColumns <JSON>] [--graphId <UUID>] [--icon <String>] [--image <String>] [--inputs <JSON>] [--integrations <String>] [--isPublished <Boolean>] [--maxAttempts <Int>] [--moduleTable <String>] [--outputs <JSON>] [--payloadArgs <JSON>] [--priority <Int>] [--props <JSON>] [--protected <Boolean>] [--publishedAt <Datetime>] [--queueName <String>] [--requiredBuckets <String>] [--requiredConfigs <ResourceRequirement>] [--requiredModels <String>] [--requiredSecrets <ResourceRequirement>] [--resources <JSON>] [--runtime <String>] [--scaleMax <Int>] [--scaleMin <Int>] [--targetFunction <String>] [--targetSchema <String>] [--timeoutSeconds <Int>] [--volatile <Boolean>]
```

### Get a functionDefinition by id
Expand Down
Loading
Loading