@vyuhlabs/dxkit 1.2.1 → 1.3.0

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.
@@ -1,6 +1,11 @@
1
1
  ---
2
2
  name: gcloud
3
3
  description: Google Cloud Platform operations — gcloud CLI, Cloud Run, GKE, BigQuery, IAM, GCS. Use when asked about GCP, Google Cloud, gcloud commands, or cloud infrastructure.
4
+ paths:
5
+ - '**/cloudbuild.yaml'
6
+ - '**/cloudbuild.yml'
7
+ - '**/.gcloudignore'
8
+ - '**/app.yaml'
4
9
  ---
5
10
 
6
11
  # Google Cloud (gcloud)
@@ -1,6 +1,12 @@
1
1
  ---
2
2
  name: pulumi
3
3
  description: Pulumi infrastructure as code — stacks, previews, deployments, config. Use when asked about IaC, Pulumi, cloud resources, infrastructure provisioning, or stack management.
4
+ paths:
5
+ - 'Pulumi.yaml'
6
+ - 'Pulumi.yml'
7
+ - 'Pulumi.*.yaml'
8
+ - '**/Pulumi.yaml'
9
+ - '**/Pulumi.*.yaml'
4
10
  ---
5
11
 
6
12
  # Pulumi (Infrastructure as Code)
@@ -1,6 +1,13 @@
1
1
  ---
2
2
  name: secrets
3
3
  description: Manage secrets via Infisical. Use when asked about secrets, environment variables, API keys, .env configuration, or credential management.
4
+ paths:
5
+ - '.env'
6
+ - '.env.*'
7
+ - '**/.env'
8
+ - '**/.env.*'
9
+ - '.infisical.json'
10
+ - '**/.infisical.json'
4
11
  ---
5
12
 
6
13
  # Secrets Management (Infisical)
@@ -1,6 +1,19 @@
1
1
  ---
2
2
  name: test
3
3
  description: Run tests, check coverage, debug test failures. Use when asked to run tests, write tests, investigate test failures, or check coverage.
4
+ paths:
5
+ - '**/*.test.ts'
6
+ - '**/*.test.tsx'
7
+ - '**/*.test.js'
8
+ - '**/*.test.jsx'
9
+ - '**/*.spec.ts'
10
+ - '**/*.spec.tsx'
11
+ - '**/*.spec.js'
12
+ - '**/*_test.go'
13
+ - '**/test_*.py'
14
+ - '**/*_test.py'
15
+ - '**/tests/**'
16
+ - '**/__tests__/**'
4
17
  ---
5
18
 
6
19
  # Testing