@harperfast/skills 1.7.0 → 1.8.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.
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -4
- package/harper-best-practices/AGENTS.md +257 -57
- package/harper-best-practices/SKILL.md +1 -0
- package/harper-best-practices/rules/creating-harper-apps.md +5 -2
- package/harper-best-practices/rules/load-env.md +100 -0
- package/harper-best-practices/rules/schema-design-tooling.md +132 -41
- package/harper-best-practices/rules/typescript-type-stripping.md +47 -17
- package/harper-best-practices/rules.manifest.yaml +46 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -13,6 +13,7 @@ export const ruleNames = [
|
|
|
13
13
|
"deploying-to-harper-fabric",
|
|
14
14
|
"extending-tables",
|
|
15
15
|
"handling-binary-data",
|
|
16
|
+
"load-env",
|
|
16
17
|
"logging",
|
|
17
18
|
"programmatic-table-requests",
|
|
18
19
|
"querying-rest-apis",
|
|
@@ -33,19 +34,20 @@ export const rules = {
|
|
|
33
34
|
"caching": "---\nname: caching\ndescription: How to implement integrated data caching in Harper from external sources.\nmetadata:\n mode: generate\n sources:\n - learn/developers/caching-with-harper.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 8212a7d7dbbd2b18\n---\n\n# Caching External Data Sources in Harper\n\nInstructions for the agent to implement integrated data caching in Harper by wrapping external sources with a cache table and `sourcedFrom`.\n\n## When to Use\n\nApply this rule when a Harper application needs to cache responses from an external API, microservice, or database to avoid repeated slow or expensive upstream calls. Use it whenever you need to define TTL-based cache expiration, observe ETag-based conditional responses, or manually invalidate cached entries.\n\n## How It Works\n\n1. **Define a cache table with `expiration`**: In `schema.graphql`, add the `expiration` argument to `@table`. The value is in seconds. Any record older than this threshold is considered stale and will be re-fetched on next access.\n\n ```graphql\n type JokeCache @table(expiration: 60) @export {\n \tid: ID @primaryKey\n \tsetup: String\n \tpunchline: String\n }\n ```\n\n2. **Wrap the external source in `resources.js`**: Create an object with a `get(id)` method that fetches from the upstream source. Then call `sourcedFrom` on the table to register it.\n\n ```javascript\n const jokeAPI = {\n \tasync get(id) {\n \t\tconst response = await fetch(`https://official-joke-api.appspot.com/jokes/${id}`);\n \t\treturn response.json();\n \t},\n };\n\n tables.JokeCache.sourcedFrom(jokeAPI);\n ```\n\n Harper's caching behavior after `sourcedFrom` is registered:\n - A request arrives for `/JokeCache/1`.\n - Harper checks if the record with id `1` exists in `JokeCache` and is not stale.\n - If fresh, Harper returns it immediately.\n - If missing or stale, Harper calls `jokeAPI.get()`, stores the result in `JokeCache`, and returns it.\n - Multiple simultaneous requests for the same missing or stale record wait on a single upstream call — Harper prevents cache stampedes automatically.\n\n3. **Configure plugins in `config.yaml`**: Enable the schema, REST API, and JS resource plugins.\n\n ```yaml\n graphqlSchema:\n files: 'schema.graphql'\n rest: true\n jsResource:\n files: 'resources.js'\n ```\n\n4. **Observe caching via ETags**: Harper automatically computes an ETag from the record's last-modified timestamp. On the first request you receive a `200` with an `etag` header. Pass that value back in `If-None-Match` on subsequent requests; Harper returns `304 Not Modified` with an empty body if the record is unchanged.\n\n ```bash\n curl -i 'http://localhost:9926/JokeCache/1' \\\n -H 'If-None-Match: \"abCDefGHij\"'\n ```\n\n5. **Force a cache bypass**: Send `Cache-Control: no-cache` to make Harper skip the local cache and always call the upstream source, regardless of TTL.\n\n ```bash\n curl -i 'http://localhost:9926/JokeCache/1' \\\n -H 'Cache-Control: no-cache'\n ```\n\n6. **Invalidate a cache entry on demand**: Remove `@export` from the schema type, then export a class of the same name in `resources.js` that extends the table and implements a `post` handler calling `this.invalidate(target)`.\n\n ```graphql\n type JokeCache @table(expiration: 60) {\n \tid: ID @primaryKey\n \tsetup: String\n \tpunchline: String\n }\n ```\n\n ```javascript\n export class JokeCache extends tables.JokeCache {\n \tstatic async post(target, data) {\n \t\tconst body = await data;\n \t\tif (body?.action === 'invalidate') {\n \t\t\tthis.invalidate(target);\n \t\t\treturn { status: 200, data: { message: 'invalidated' } };\n \t\t}\n \t}\n }\n ```\n\n Trigger invalidation with a `POST`:\n\n ```bash\n curl -X POST 'http://localhost:9926/JokeCache/1' \\\n -H 'Content-Type: application/json' \\\n -d '{\"action\": \"invalidate\"}'\n ```\n\n The next `GET /JokeCache/1` will fetch fresh data from the upstream source regardless of TTL.\n\n## Examples\n\nComplete `schema.graphql` and `resources.js` for a cached external API with on-demand invalidation:\n\n```graphql\ntype JokeCache @table(expiration: 60) {\n\tid: ID @primaryKey\n\tsetup: String\n\tpunchline: String\n}\n```\n\n```javascript\n// resources.js\n\nconst jokeAPI = {\n\tasync get() {\n\t\tconst id = this.getId();\n\t\tconst response = await fetch(`https://official-joke-api.appspot.com/jokes/${id}`);\n\t\treturn response.json();\n\t},\n};\n\ntables.JokeCache.sourcedFrom(jokeAPI);\n\nexport class JokeCache extends tables.JokeCache {\n\tstatic async post(target, data) {\n\t\tconst body = await data;\n\t\tif (body?.action === 'invalidate') {\n\t\t\tthis.invalidate(target);\n\t\t\treturn { status: 200, data: { message: 'invalidated' } };\n\t\t}\n\t}\n}\n```\n\nFirst request — cache miss, upstream is called, `200` returned:\n\n```bash\ncurl -i 'http://localhost:9926/JokeCache/1'\n```\n\nSecond request with ETag — cache hit, `304 Not Modified`:\n\n```bash\ncurl -i 'http://localhost:9926/JokeCache/1' \\\n -H 'If-None-Match: \"abCDefGHij\"'\n```\n\n## Notes\n\n- `expiration` is measured in seconds. Harper also supports separate `eviction` and `scanInterval` arguments on `@table` for fine-grained control over physical record removal.\n- The `@export` directive on the schema type is not required when you export a Resource class of the same name from `resources.js` — the class export serves as the endpoint registration. See [custom-resources.md](custom-resources.md) for details on building Resource classes.\n- Harper's REST layer automatically exposes `@export`-ed tables and Resource classes as HTTP endpoints. See [automatic-apis.md](automatic-apis.md) for how endpoints are structured and named.\n- ETag values include their double quotes as part of the value — include them verbatim when passing the value in `If-None-Match`.\n- `sourcedFrom` must be called after the table reference (`tables.JokeCache`) is available, which is guaranteed when the call is at the top level of `resources.js`.\n",
|
|
34
35
|
"checking-authentication": "---\nname: checking-authentication\ndescription: How to handle user authentication and sessions in Harper Resources.\nmetadata:\n mode: generate\n sources:\n - >-\n reference/v5/resources/resource-api.md#`getCurrentUser(): User |\n undefined`\n - reference/v5/resources/resource-api.md#Session and Login from a Resource\n - reference/v5/security/jwt-authentication.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: fdd9ec3b11011490\n---\n\n# Checking Authentication\n\nInstructions for the agent to follow when handling user authentication and session management inside Harper Resources.\n\n## When to Use\n\nApply this rule when implementing authentication checks, login/logout flows, or token issuance inside a custom Resource. Use it any time a Resource needs to identify the current user, establish a session, or issue JWTs to clients. See [custom-resources.md](custom-resources.md) for the general Resource authoring pattern.\n\n## How It Works\n\n1. **Check the current user** with `getCurrentUser()`. Call it inside any Resource method to retrieve the authenticated user or `undefined` if no user is authenticated. Guard protected endpoints by returning a `401` when the result is `undefined`.\n\n ```javascript\n async get(target) {\n const user = this.getCurrentUser();\n if (!user) return new Response(null, { status: 401 });\n return { username: user.username, role: user.role };\n }\n ```\n\n The returned object exposes `username`, `role`, and `role.permission` flags.\n\n2. **Enable sessions** before using session-based login. Set `authentication.enableSessions: true` in `harperdb-config.yaml`:\n\n ```yaml\n authentication:\n enableSessions: true\n ```\n\n3. **Access login and session helpers** via `getContext()`. The context object exposes `context.login` and `context.session` for sign-in/out flows.\n - Call `context.login(username, password)` to verify credentials and establish a session cookie on success.\n - To end a session, delete it via `context.session.delete(context.session.id)`.\n\n4. **Implement sign-in and sign-out Resources** using the context helpers:\n\n ```javascript\n export class SignIn extends Resource {\n \tasync post(_target, data) {\n \t\tconst context = this.getContext();\n \t\ttry {\n \t\t\tawait context.login(data.username, data.password);\n \t\t} catch {\n \t\t\treturn new Response('Invalid credentials', { status: 403 });\n \t\t}\n \t\treturn new Response('Logged in', { status: 200 });\n \t}\n }\n\n export class SignOut extends Resource {\n \tasync post() {\n \t\tconst context = this.getContext();\n \t\tif (!context.session) return new Response(null, { status: 401 });\n \t\tawait context.session.delete(context.session.id);\n \t\treturn new Response('Logged out', { status: 200 });\n \t}\n }\n ```\n\n5. **Issue JWTs for non-browser clients** (CLI tools, mobile apps, service-to-service). Cookie-based sessions are intended for browser clients. For other clients, mint tokens programmatically using `server.operation()`:\n\n ```javascript\n import { Resource, server } from 'harper';\n\n export class IssueTokens extends Resource {\n \tstatic async get(_target, context) {\n \t\tconst { operation_token, refresh_token } = await server.operation(\n \t\t\t{ operation: 'create_authentication_tokens' },\n \t\t\tcontext,\n \t\t\ttrue,\n \t\t);\n \t\treturn { operation_token, refresh_token };\n \t}\n\n \tstatic async post(_target, data) {\n \t\tconst { username, password } = await data;\n \t\tif (!username || !password) {\n \t\t\treturn new Response('username and password required', { status: 400 });\n \t\t}\n \t\tconst { operation_token, refresh_token } = await server.operation({\n \t\t\toperation: 'create_authentication_tokens',\n \t\t\tusername,\n \t\t\tpassword,\n \t\t});\n \t\treturn { operation_token, refresh_token };\n \t}\n }\n\n export class RefreshJWT extends Resource {\n \tstatic async post(_target, data) {\n \t\tconst { refresh_token } = await data;\n \t\tif (!refresh_token) {\n \t\t\treturn new Response('refresh_token required', { status: 400 });\n \t\t}\n \t\tconst { operation_token } = await server.operation({\n \t\t\toperation: 'refresh_operation_token',\n \t\t\trefresh_token,\n \t\t});\n \t\treturn { operation_token };\n \t}\n }\n ```\n\n Pass `true` as the third argument to `server.operation()` when the operation should run as the current authenticated user. Omit it or pass `false` when the operation supplies its own credentials.\n\n6. **Configure JWT token expiry** in `harperdb-config.yaml` under the `authentication` section:\n\n ```yaml\n authentication:\n operationTokenTimeout: 1d\n refreshTokenTimeout: 30d\n ```\n\n Duration strings follow the `jsonwebtoken` package format (e.g., `1d`, `12h`, `60m`).\n\n## Examples\n\n**Protecting a resource endpoint and returning user info:**\n\n```javascript\nasync get(target) {\n const user = this.getCurrentUser();\n if (!user) return new Response(null, { status: 401 });\n return { username: user.username, role: user.role };\n}\n```\n\n**Full session-based sign-in/sign-out flow:**\n\n```javascript\nexport class SignIn extends Resource {\n\tasync post(_target, data) {\n\t\tconst context = this.getContext();\n\t\ttry {\n\t\t\tawait context.login(data.username, data.password);\n\t\t} catch {\n\t\t\treturn new Response('Invalid credentials', { status: 403 });\n\t\t}\n\t\treturn new Response('Logged in', { status: 200 });\n\t}\n}\n\nexport class SignOut extends Resource {\n\tasync post() {\n\t\tconst context = this.getContext();\n\t\tif (!context.session) return new Response(null, { status: 401 });\n\t\tawait context.session.delete(context.session.id);\n\t\treturn new Response('Logged out', { status: 200 });\n\t}\n}\n```\n\n**JWT token refresh endpoint:**\n\n```javascript\nexport class RefreshJWT extends Resource {\n\tstatic async post(_target, data) {\n\t\tconst { refresh_token } = await data;\n\t\tif (!refresh_token) {\n\t\t\treturn new Response('refresh_token required', { status: 400 });\n\t\t}\n\t\tconst { operation_token } = await server.operation({\n\t\t\toperation: 'refresh_operation_token',\n\t\t\trefresh_token,\n\t\t});\n\t\treturn { operation_token };\n\t}\n}\n```\n\n## Notes\n\n- `getCurrentUser()` and `getContext()` are instance methods; call them with `this` inside non-static Resource methods.\n- `enableSessions` must be `true` in config before `context.login` or `context.session` will function.\n- Cookie-based sessions target browser clients. Use JWT issuance via `server.operation()` for all other client types.\n- When both `operation_token` and `refresh_token` have expired, the client must call `create_authentication_tokens` again with credentials.\n",
|
|
35
36
|
"creating-a-fabric-account-and-cluster": "---\nname: creating-a-fabric-account-and-cluster\ndescription: How to create a Harper Fabric account, organization, and cluster.\nmetadata:\n mode: synthesized\n---\n\n# Creating a Harper Fabric Account and Cluster\n\nFollow these steps to set up your Harper Fabric environment for deployment.\n\n## How It Works\n\n1. **Sign Up/In**: Go to [https://fabric.harper.fast/](https://fabric.harper.fast/) and sign up or sign in.\n2. **Create an Organization**: Create an organization (org) to manage your projects.\n3. **Create a Cluster**: Create a new cluster. This can be on the free tier, no credit card required.\n4. **Set Credentials**: During setup, set the cluster username and password to finish configuring it.\n5. **Get Application URL**: Navigate to the **Config** tab and copy the **Application URL**.\n6. **Configure Environment**: Update your `.env` file or GitHub Actions secrets with cluster-specific credentials.\n7. **Next Steps**: See the [deploying-to-harper-fabric](deploying-to-harper-fabric.md) rule for detailed instructions on deploying your application successfully.\n\n## Examples\n\n### Environment Configuration\n\n```bash\nCLI_TARGET_USERNAME='YOUR_CLUSTER_USERNAME'\nCLI_TARGET_PASSWORD='YOUR_CLUSTER_PASSWORD'\nCLI_TARGET='YOUR_CLUSTER_URL'\n```\n",
|
|
36
|
-
"creating-harper-apps": "---\nname: creating-harper-apps\ndescription: How to initialize a new Harper application using the CLI.\nmetadata:\n mode: synthesized\n---\n\n# Creating Harper Applications\n\nThe fastest way to start a new Harper project is using the `create-harper` CLI tool. This command
|
|
37
|
+
"creating-harper-apps": "---\nname: creating-harper-apps\ndescription: How to initialize a new Harper application using the CLI.\nmetadata:\n mode: synthesized\n---\n\n# Creating Harper Applications\n\nThe fastest way to start a new Harper project is using the `create-harper` CLI tool. This command\ninitializes a project with a standard folder structure, essential configuration files, and basic\nschema definitions.\n\n## When to Use\n\nUse this command when starting a new Harper application or adding a new Harper microservice to an\nexisting architecture.\n\n## Commands\n\nInitialize a project using your preferred package manager:\n\n### NPM\n\n```bash\nnpm create harper@latest\n```\n\n### PNPM\n\n```bash\npnpm create harper@latest\n```\n\n### Bun\n\n```bash\nbun create harper@latest\n```\n\n## Options\n\nYou can specify the project name and template directly:\n\n```bash\nnpm create harper@latest my-app --template default\n```\n\n## Next Steps\n\n1. **Configure Environment**: Set up your `.env` file with local or cloud credentials.\n2. **Define Schema**: Modify `schema.graphql` to fit your application's data model.\n3. **Start Development**: Run `npm run dev` to start the local Harper instance.\n4. **Deploy**: Use `npm run deploy` to push your application to Harper Fabric.\n",
|
|
37
38
|
"custom-resources": "---\nname: custom-resources\ndescription: How to define custom REST endpoints with JavaScript or TypeScript in Harper.\nmetadata:\n mode: synthesized\n---\n\n# Custom Resources\n\nInstructions for the agent to follow when creating custom resources in Harper.\n\n## When to Use\n\nUse this skill when the automatic CRUD operations provided by `@table @export` are insufficient, and you need custom logic, third-party API integration, or specialized data handling for your REST endpoints.\n\n## How It Works\n\n1. **Check if a Custom Resource is Necessary**: Verify if [Automatic APIs](./automatic-apis.md) or [Extending Tables](./extending-tables.md) can satisfy the requirement first.\n2. **Create the Resource File**: Create a `.ts` or `.js` file in the directory specified by `jsResource` in `config.yaml` (typically `resources/`).\n3. **Define the Resource Class**: Export a class extending `Resource` from `harper`:\n\n ```typescript\n import { type RequestTargetOrId, Resource } from 'harper';\n\n export class MyResource extends Resource {\n \tasync get(target?: RequestTargetOrId) {\n \t\treturn { message: 'Hello from custom GET!' };\n \t}\n }\n ```\n\n4. **Implement HTTP Methods**: Add methods like `get`, `post`, `put`, `patch`, or `delete` to handle corresponding requests.\n5. **Route Nesting and Naming**: You can control the URL structure by how you export your resources:\n - **Direct Class Export**: `export class Foo extends Resource` creates endpoints at `/Foo/`. Class names are case-sensitive in the URL.\n - **Nested Objects**: `export const Bar = { Foo };` creates endpoints at `/Bar/Foo/`.\n - **Lowercase and Hyphens**: Use object keys to define custom paths: `export const bar = { 'foo-baz': Foo };` exposes endpoints at `/bar/foo-baz/`.\n6. **Access Tables (Optional)**: Import and use the `tables` object to interact with your data:\n ```typescript\n import { tables } from 'harper';\n // ... inside a method\n const results = await tables.MyTable.list();\n ```\n7. **Configure Loading**: Ensure `config.yaml` points to your resource files (e.g., `jsResource: { files: 'resources/*.ts' }`).\n",
|
|
38
39
|
"defining-relationships": "---\nname: defining-relationships\ndescription: How to define and use relationships between tables in Harper using GraphQL.\nmetadata:\n mode: synthesized\n---\n\n# Defining Relationships\n\nInstructions for the agent to follow when defining relationships between Harper tables.\n\n## When to Use\n\nUse this skill when you need to link data across different tables, enabling automatic joins and efficient related-data fetching via REST APIs.\n\n## How It Works\n\n1. **Identify the Relationship Type**: Determine if it's one-to-one, many-to-one, or one-to-many.\n2. **Use the `@relationship` Directive**: Apply it to a field in your GraphQL schema.\n - **Many-to-One (Current table holds FK)**: Use `from`.\n ```graphql\n type Book @table @export {\n \tauthorId: ID\n \tauthor: Author @relationship(from: \"authorId\")\n }\n ```\n - **One-to-Many (Related table holds FK)**: Use `to` and an array type.\n ```graphql\n type Author @table @export {\n \tbooks: [Book] @relationship(to: \"authorId\")\n }\n ```\n3. **Query with Relationships**: Use dot syntax in REST API calls for filtering or the `select()` operator for including related data.\n - Example Filter: `GET /Book/?author.name=Harper`\n - Example Select: `GET /Author/?select(name,books(title))`\n",
|
|
39
40
|
"deploying-to-harper-fabric": "---\nname: deploying-to-harper-fabric\ndescription: How to deploy a Harper application to the Harper Fabric cloud.\nmetadata:\n mode: generate\n sources:\n - reference/v5/components/applications.md#Remote Management\n - >-\n fabric/cluster-creation-management.md#Connecting the Harper CLI to a\n Cluster\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: ccdefbbf8f3b8657\n---\n\n# Deploying to Harper Fabric\n\nInstructions for the agent to follow when deploying a Harper application to the Harper Fabric cloud using the Harper CLI.\n\n## When to Use\n\nApply this rule when deploying a Harper application to a remote Harper instance or Harper Fabric cluster. This covers interactive deployments, CI/CD pipelines, and any scenario where the agent must push a local or remote package to a target environment.\n\n## How It Works\n\n1. **Authenticate with the remote target**: Run `harper login` once to store an authentication token. The CLI writes `HARPER_CLI_TARGET` to a local `.env` so subsequent commands do not need credentials repeated. Find the **Application URL** on the cluster's **Config → Overview** page (see [creating-a-fabric-account-and-cluster.md](creating-a-fabric-account-and-cluster.md)).\n\n ```bash\n harper login <Application URL>\n # Provide cluster username and password when prompted\n ```\n\n2. **Deploy the application**: Run `harper deploy` with the required parameters. After logging in, no credentials are needed inline.\n\n ```bash\n harper deploy \\\n project=<name> \\\n package=<package> \\\n target=<remote> \\\n restart=true \\\n replicated=true\n ```\n\n3. **Choose a package source**: Set the `package` parameter to any valid npm dependency value, or omit it to package and deploy the current local directory.\n\n | Value | Effect |\n | ---------------------------------------------------- | ------------------------------------------------ |\n | _(omitted)_ | Packages and deploys the current local directory |\n | `\"@harperdb/status-check\"` | npm package |\n | `\"HarperDB/status-check\"` | GitHub repo (short form) |\n | `\"https://github.com/HarperDB/status-check\"` | GitHub repo (full URL) |\n | `\"git+ssh://git@github.com:HarperDB/secret-app.git\"` | Private repo via SSH |\n | `\"https://example.com/application.tar.gz\"` | Remote tarball |\n\n For git tags, use the `semver` directive for reliable versioning:\n\n ```\n HarperDB/application-template#semver:v1.0.0\n ```\n\n4. **Authenticate for CI/CD pipelines**: Use environment variables instead of interactive login. Set credentials before running `harper deploy`.\n\n ```bash\n export HARPER_CLI_USERNAME=<username>\n export HARPER_CLI_PASSWORD=<password>\n harper deploy \\\n project=<name> \\\n package=<package> \\\n target=<remote> \\\n restart=true \\\n replicated=true\n ```\n\n5. **Register SSH keys for private repos**: Before deploying from an SSH-based private repository, use the Add SSH Key operation to register the key with the remote instance.\n\n## Examples\n\n**Interactive login then deploy (recommended):**\n\n```bash\n# Log in once\nharper login <remote>\n# Provide your username and password when prompted\n\n# Subsequently deploy without credentials\nharper deploy \\\n project=<name> \\\n package=<package> \\\n target=<remote> \\\n restart=true \\\n replicated=true\n```\n\n**Deploy with inline credentials (not recommended for production):**\n\n```bash\nharper deploy \\\n project=<name> \\\n package=<package> \\\n username=<username> \\\n password=<password> \\\n target=<remote> \\\n restart=true \\\n replicated=true\n```\n\n**Deploy a specific GitHub release by semver tag:**\n\n```bash\nharper deploy \\\n project=my-app \\\n package=\"HarperDB/application-template#semver:v1.0.0\" \\\n target=<remote> \\\n restart=true \\\n replicated=true\n```\n\n## Notes\n\n- Always prefer `harper login` for interactive use and environment variables (`HARPER_CLI_USERNAME`, `HARPER_CLI_PASSWORD`) for CI/CD. Avoid inline `username`/`password` parameters in production.\n- Omitting `package` causes the CLI to package the current local directory. Specifying a local file path creates a symlink, so changes are picked up between restarts without redeploying.\n- Harper generates a `package.json` from component configurations and resolves dependencies using a form of `npm install`.\n- For SSH-based private repos, register keys with the Add SSH Key operation before deploying.\n",
|
|
40
41
|
"extending-tables": "---\nname: extending-tables\ndescription: How to add custom logic to automatically generated table resources in Harper.\nmetadata:\n mode: synthesized\n---\n\n# Extending Tables\n\nInstructions for the agent to follow when extending table resources in Harper.\n\n## When to Use\n\nUse this skill when you need to add custom validation, side effects (like webhooks), data transformation, or custom access control to the standard CRUD operations of a Harper table.\n\n## How It Works\n\n1. **Define the Table in GraphQL**: In your `.graphql` schema, define the table using the `@table` directive. **Do not** use `@export` if you plan to extend it.\n ```graphql\n type MyTable @table {\n \tid: ID @primaryKey\n \tname: String\n }\n ```\n2. **Create the Extension File**: Create a `.ts` file in your `resources/` directory.\n3. **Extend the Table Resource**: Export a class that extends `tables.YourTableName`:\n\n ```typescript\n import { type RequestTargetOrId, tables } from 'harper';\n\n export class MyTable extends tables.MyTable {\n \tasync post(target: RequestTargetOrId, record: any) {\n \t\t// Custom logic here\n \t\tif (!record.name) {\n \t\t\tthrow new Error('Name required');\n \t\t}\n \t\treturn super.post(target, record);\n \t}\n }\n ```\n\n4. **Override Methods**: Override `get`, `post`, `put`, `patch`, or `delete` as needed. Always call `super[method]` to maintain default Harper functionality unless you intend to replace it entirely.\n5. **Implement Logic**: Use overrides for validation, side effects, or transforming data before/after database operations.\n",
|
|
41
42
|
"handling-binary-data": "---\nname: handling-binary-data\ndescription: How to store and serve binary data like images or audio in Harper.\nmetadata:\n mode: synthesized\n---\n\n# Handling Binary Data\n\nInstructions for the agent to follow when handling binary data in Harper.\n\n## When to Use\n\nUse this skill when you need to store binary files (images, audio, etc.) in the database or serve them back to clients via REST endpoints.\n\n## How It Works\n\n1. **Store Binary Data**: In your resource's `post` or `put` method, convert incoming data to Buffers and then to Blobs using `createBlob` from Harper's globals. Include the MIME type if available:\n\n ```typescript\n async post(target, record) {\n if (record.data) {\n record.data = createBlob(Buffer.from(record.data, record.encoding || 'base64'), {\n type: record.contentType || 'application/octet-stream',\n });\n }\n return super.post(target, record);\n }\n ```\n\n2. **Serve Binary Data**: In your resource's `get` method, return a response object with the appropriate `Content-Type` and the binary data in the `body`:\n ```typescript\n async get(target) {\n const record = await super.get(target);\n if (record?.data) {\n return {\n status: 200,\n headers: { 'Content-Type': record.data.type || 'application/octet-stream' },\n body: record.data,\n };\n }\n return record;\n }\n ```\n3. **Use the Blob Type**: Ensure your GraphQL schema uses the `Blob` scalar for binary fields.\n",
|
|
43
|
+
"load-env": "---\nname: load-env\ndescription: >-\n How to load environment variables from .env files into a Harper application\n using the loadEnv plugin.\nmetadata:\n mode: generate\n sources:\n - reference/v5/environment-variables/overview.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: c73a0caf28a2b833\n---\n\n# Load Environment Variables with loadEnv\n\nInstructions for the agent to follow when loading environment variables from `.env` files into a Harper application using the `loadEnv` plugin.\n\n## When to Use\n\nApply this rule when a Harper application needs to load secrets or configuration values from `.env` files into `process.env` at startup. Use it whenever you need to configure `loadEnv` in `config.yaml`, control load order, handle multiple files, or manage override behavior.\n\n## How It Works\n\n1. **Declare `loadEnv` in `config.yaml`**: Add `loadEnv` to your `config.yaml` with a `files` key pointing to the `.env` file. `loadEnv` is built into Harper and does not need to be installed separately.\n\n ```yaml\n loadEnv:\n files: '.env'\n ```\n\n This loads the specified file from the root of your component directory into `process.env`.\n\n2. **Place `loadEnv` first**: Always declare `loadEnv` before any other components in `config.yaml` so environment variables are available before dependent components start. Because Harper is single-process, variables loaded onto `process.env` are shared across all components.\n\n ```yaml\n # config.yaml — loadEnv must come first\n loadEnv:\n files: '.env'\n\n rest: true\n\n myApp:\n files: './src/*.js'\n ```\n\n3. **Control override behavior**: By default, existing shell or container environment variables take precedence over values in `.env` files. To force `.env` values to overwrite existing variables, set `override: true`.\n\n ```yaml\n loadEnv:\n files: '.env'\n override: true\n ```\n\n4. **Load multiple files**: Provide a list of files or a glob pattern under `files`. Files are loaded in the order specified.\n ```yaml\n loadEnv:\n files:\n - '.env'\n - '.env.local'\n ```\n Or using a glob pattern:\n ```yaml\n loadEnv:\n files: 'env-vars/*'\n ```\n\n## Examples\n\nA complete `config.yaml` using `loadEnv` with multiple files and override enabled:\n\n```yaml\n# config.yaml — loadEnv must come first\nloadEnv:\n files:\n - '.env'\n - '.env.local'\n override: true\n\nrest: true\n\nmyApp:\n files: './src/*.js'\n```\n\nA minimal setup loading a single `.env` file:\n\n```yaml\nloadEnv:\n files: '.env'\n\nmyApp:\n files: './src/*.js'\n```\n\n## Notes\n\n- `loadEnv` is built into Harper — declare it in `config.yaml` only; do not install it as a separate package.\n- The `files` value accepts either a single string, a list of strings, or a glob pattern.\n- Without `override: true`, variables already present in the environment are never overwritten by values in `.env` files.\n- `process.env` is shared across all Harper components in the same process, so load order in `config.yaml` determines availability.\n",
|
|
42
44
|
"logging": "---\nname: logging\ndescription: >-\n Best practices for logging in Harper, including console capture, the granular\n logger interface, and programmatic log retrieval.\nmetadata:\n mode: generate\n sources:\n - reference/v5/logging/overview.md\n - reference/v5/logging/api.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 46cd384598304e3b\n---\n\n# Harper Logging\n\nInstructions for the agent to follow when implementing logging in Harper applications, including direct logger usage, tagged loggers, and console capture behavior.\n\n## When to Use\n\nApply this rule when writing any JavaScript component, plugin, or resource that needs to emit structured log entries, filter logs by component, or capture existing `console.log` output into Harper's log system. Use it whenever you need to understand log levels, log entry format, or the `logger` global API.\n\n## How It Works\n\n1. **Use the `logger` global directly** — `logger` is available in all JavaScript components without any imports. Call the method matching the desired severity level:\n\n ```javascript\n logger.trace('detailed trace message');\n logger.debug('debug info', { someContext: 'value' });\n logger.info('informational message');\n logger.warn('potential issue');\n logger.error('error occurred', error);\n logger.fatal('fatal error');\n logger.notify('server is ready');\n ```\n\n Only entries at or above the configured `logging.level` (or `logging.external.level`) are written to `hdb.log`.\n\n2. **Create a tagged logger with `withTag(`** — Call `logger.withTag(tag)` once per module or class to get a `TaggedLogger` scoped to that tag. This prefixes every log entry with the tag, making log output filterable by component.\n\n ```javascript\n const log = logger.withTag('my-resource');\n ```\n\n Because `TaggedLogger` methods for disabled levels are `null`, always use optional chaining (`?.`) when calling them:\n\n ```javascript\n log.debug?.('Fetching record', { id });\n log.warn?.('Record not found', { id });\n log.error?.('Failed to update record', err);\n ```\n\n `TaggedLogger` does not have a `withTag()` method.\n\n3. **Understand the interface contracts** — `MainLogger` always has all methods defined:\n\n ```typescript\n interface MainLogger {\n \ttrace(...messages: any[]): void;\n \tdebug(...messages: any[]): void;\n \tinfo(...messages: any[]): void;\n \twarn(...messages: any[]): void;\n \terror(...messages: any[]): void;\n \tfatal(...messages: any[]): void;\n \tnotify(...messages: any[]): void;\n \twithTag(tag: string): TaggedLogger;\n }\n ```\n\n `TaggedLogger` methods may be `null`:\n\n ```typescript\n interface TaggedLogger {\n \ttrace: ((...messages: any[]) => void) | null;\n \tdebug: ((...messages: any[]) => void) | null;\n \tinfo: ((...messages: any[]) => void) | null;\n \twarn: ((...messages: any[]) => void) | null;\n \terror: ((...messages: any[]) => void) | null;\n \tfatal: ((...messages: any[]) => void) | null;\n \tnotify: ((...messages: any[]) => void) | null;\n }\n ```\n\n4. **Know the log levels** — From least to most severe:\n\n | Level | Description |\n | -------- | -------------------------------------------------------------------- |\n | `trace` | Highly detailed internal execution tracing. |\n | `debug` | Diagnostic information useful during development. |\n | `info` | General operational events. |\n | `warn` | Potential issues that don't prevent normal operation. |\n | `error` | Errors that affect specific operations. |\n | `fatal` | Critical errors causing process termination. |\n | `notify` | Important operational milestones. Always logged regardless of level. |\n\n The default log level is `warn`. Setting a level includes that level and all more-severe levels.\n\n5. **Enable console capture when porting existing code** — When `logging.console: true` is set, writes via `console.log`, `console.warn`, `console.error`, etc. are appended verbatim to `hdb.log`. Captured lines do **not** pass through `logger`'s level filter. Prefer `logger` directly in production code so that level filtering and tagging apply. Console capture is intended as a convenience for porting existing code and for debugging.\n\n6. **Know where logs are written** — All standard log output goes to `<ROOTPATH>/log/hdb.log` (default: `~/hdb/log/hdb.log`). To also log to `stdout`/`stderr`, set `logging.stdStreams: true`.\n\n## Examples\n\n### Basic logging in a resource\n\n```javascript\nexport class MyResource extends Resource {\n\tasync get(id) {\n\t\tlogger.debug('Fetching record', { id });\n\t\tconst record = await super.get(id);\n\t\tif (!record) {\n\t\t\tlogger.warn('Record not found', { id });\n\t\t}\n\t\treturn record;\n\t}\n\n\tasync put(record) {\n\t\tlogger.info('Updating record', { id: record.id });\n\t\ttry {\n\t\t\treturn await super.put(record);\n\t\t} catch (err) {\n\t\t\tlogger.error('Failed to update record', err);\n\t\t\tthrow err;\n\t\t}\n\t}\n}\n```\n\n### Tagged logging with `withTag()`\n\n```javascript\nconst log = logger.withTag('my-resource');\n\nexport class MyResource extends Resource {\n\tasync get(id) {\n\t\tlog.debug?.('Fetching record', { id });\n\t\tconst record = await super.get(id);\n\t\tif (!record) {\n\t\t\tlog.warn?.('Record not found', { id });\n\t\t}\n\t\treturn record;\n\t}\n\n\tasync put(record) {\n\t\tlog.info?.('Updating record', { id: record.id });\n\t\ttry {\n\t\t\treturn await super.put(record);\n\t\t} catch (err) {\n\t\t\tlog.error?.('Failed to update record', err);\n\t\t\tthrow err;\n\t\t}\n\t}\n}\n```\n\nTagged entries appear in `hdb.log` with the tag in the header:\n\n```\n2023-03-09T14:25:05.269Z [info] [my-resource]: Updating record\n```\n\n## Notes\n\n- All log output is written to `<ROOTPATH>/log/hdb.log`. The `logger` global writes to this file at the configured `logging.external` level.\n- Log entry format for `logger`: `<timestamp> [<level>] [<thread>/<id>]: <message>`\n- Log entry format for `TaggedLogger`: `<timestamp> [<level>] [<tag>]: <message>`\n- `console.log` output is only forwarded to `hdb.log` when `logging.console: true` is explicitly set; it is not forwarded by default.\n- When logging to standard streams, run Harper in the foreground (`harper`, not `harper start`).\n- `TaggedLogger` is bound to the configured log level at creation time — always use `?.` on its methods.\n",
|
|
43
45
|
"programmatic-table-requests": "---\nname: programmatic-table-requests\ndescription: How to interact with Harper tables programmatically using the `tables` object.\nmetadata:\n mode: synthesized\n---\n\n# Programmatic Table Requests\n\nInstructions for the agent to follow when interacting with Harper tables via code.\n\n## When to Use\n\nUse this skill when you need to perform database operations (CRUD, search, subscribe) from within Harper Resources or scripts.\n\n## How It Works\n\n1. **Access the Table**: Use the global `tables` object followed by your table name (e.g., `tables.MyTable`).\n2. **Perform CRUD Operations**:\n - **Get**: `await tables.MyTable.get(id)` for a single record or `await tables.MyTable.get({ conditions: [...] })` for multiple.\n - **Create**: `await tables.MyTable.post(record)` (auto-generates ID) or `await tables.MyTable.put(id, record)`.\n - **Update**: `await tables.MyTable.patch(id, partialRecord)` for partial updates.\n - **Delete**: `await tables.MyTable.delete(id)`.\n3. **Use Updatable Records for Atomic Ops**: Call `update(id)` to get a reference, then use `addTo` or `subtractFrom` for atomic increments/decrements:\n ```typescript\n const stats = await tables.Stats.update('daily');\n stats.addTo('viewCount', 1);\n ```\n4. **Search and Stream**: Use `search(query)` for efficient streaming of large result sets:\n ```typescript\n for await (const record of tables.MyTable.search({ conditions: [...] })) {\n // process record\n }\n ```\n See the [Query Conditions](#query-conditions) section below for the full query object reference.\n5. **Real-time Subscriptions**: Use `subscribe(query)` to listen for changes:\n ```typescript\n for await (const event of tables.MyTable.subscribe(query)) {\n \t// handle event\n }\n ```\n6. **Publish Events**: Use `publish(id, message)` to trigger subscriptions without necessarily persisting data.\n\n## Query Conditions\n\nWhen passing a query to `search()`, `get()`, or `subscribe()`, use a query object with a `conditions` array.\n\n### Condition Object Shape\n\n| Property | Description |\n| ------------ | ------------------------------------------------------------------------------------------ |\n| `attribute` | Field name, or array of field names to traverse a relationship (e.g., `['brand', 'name']`) |\n| `value` | The value to compare against |\n| `comparator` | One of the comparator strings below (default: `equals`) |\n| `operator` | `and` (default) or `or` — applies to a nested `conditions` block |\n| `conditions` | Nested array of condition objects for complex AND/OR logic |\n\n### Comparator Values\n\nUse these exact strings — incorrect comparator names will silently fail or error:\n\n| Comparator | Meaning |\n| -------------------- | ---------------------------------------------------------- |\n| `equals` | Exact match (default) |\n| `not_equal` | Not equal |\n| `greater_than` | `>` |\n| `greater_than_equal` | `>=` |\n| `less_than` | `<` |\n| `less_than_equal` | `<=` |\n| `starts_with` | String starts with value |\n| `contains` | String contains value |\n| `ends_with` | String ends with value |\n| `between` | Value is between two bounds (pass `value` as `[min, max]`) |\n\n### Query Object Parameters\n\n| Property | Description |\n| ------------ | ------------------------------------------------------------------------------------ |\n| `conditions` | Array of condition objects |\n| `limit` | Maximum number of records to return |\n| `offset` | Number of records to skip (for pagination) |\n| `select` | Array of attribute names to return; supports `$id` and `$updatedtime` |\n| `sort` | Object with `attribute`, `descending` (bool), and optional `next` for secondary sort |\n\n### Examples\n\n**Simple filter:**\n\n```javascript\nfor await (const record of tables.Product.search({\n conditions: [{ attribute: 'price', comparator: 'less_than', value: 100 }],\n limit: 20,\n})) { ... }\n```\n\n**AND + nested OR:**\n\n```javascript\nfor await (const record of tables.Product.search({\n conditions: [\n { attribute: 'price', comparator: 'less_than', value: 100 },\n {\n operator: 'or',\n conditions: [\n { attribute: 'rating', comparator: 'greater_than', value: 4 },\n { attribute: 'featured', value: true },\n ],\n },\n ],\n})) { ... }\n```\n\n**Relationship traversal:**\n\n```javascript\nfor await (const record of tables.Book.search({\n conditions: [{ attribute: ['brand', 'name'], comparator: 'equals', value: 'Harper' }],\n})) { ... }\n```\n\n**Sort and paginate:**\n\n```javascript\nfor await (const record of tables.Product.search({\n conditions: [{ attribute: 'inStock', value: true }],\n sort: { attribute: 'price', descending: false },\n limit: 10,\n offset: 20,\n})) { ... }\n```\n\n## Cautions\n\nBe very careful when performing updates and deletions! You may be dealing with live production data. The wrong request to delete, without approval from a human, could be devastating to a business. Always use the proper approval process.\n",
|
|
44
46
|
"querying-rest-apis": "---\nname: querying-rest-apis\ndescription: 'How to use query parameters to filter, sort, and paginate Harper REST APIs.'\nmetadata:\n mode: generate\n sources:\n - reference/v5/rest/querying.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 9f8c981a629ef606\n---\n\n# Querying REST APIs\n\nInstructions for the agent to filter, sort, select, and paginate Harper REST API collections using URL query parameters.\n\n## When to Use\n\nApply this rule when building or modifying code that queries Harper REST endpoints with filtering, sorting, field selection, or pagination. Use it whenever constructing URLs against collection paths exposed by Harper's automatic REST interface (see [automatic-apis.md](automatic-apis.md)).\n\n## How It Works\n\n1. **Filter by attribute**: Add query parameters matching attribute names and values. The queried attribute must be indexed.\n\n ```\n GET /Product/?category=software\n GET /Product/?category=software&inStock=true\n ```\n\n2. **Apply comparison operators (FIQL syntax)**: Use FIQL operators directly in query parameter values.\n\n | Operator | Meaning |\n | ------------ | -------------------------------------- |\n | `==` | Equal |\n | `=lt=` | Less than |\n | `=le=` | Less than or equal |\n | `=gt=` | Greater than |\n | `=ge=` | Greater than or equal |\n | `=ne=`, `!=` | Not equal |\n | `=ct=` | Contains (strings) |\n | `=sw=` | Starts with (strings) |\n | `=ew=` | Ends with (strings) |\n | `=`, `===` | Strict equality (no type conversion) |\n | `!==` | Strict inequality (no type conversion) |\n\n ```\n GET /Product/?price=gt=100\n GET /Product/?price=le=20\n GET /Product/?name==Keyboard*\n GET /Product/?category=software&price=gt=100&price=lt=200\n ```\n\n For date fields, URL-encode colons as `%3A`:\n\n ```\n GET /Product/?listDate=gt=2017-03-08T09%3A30%3A00.000Z\n ```\n\n3. **Chain conditions for range queries**: Omit the attribute name on the second condition to apply it to the same attribute. Only `gt`/`ge` combined with `lt`/`le` is supported.\n\n ```\n GET /Product/?price=gt=100<=200\n ```\n\n4. **Combine conditions with OR logic**: Use `|` instead of `&`.\n\n ```\n GET /Product/?rating=5|featured=true\n ```\n\n5. **Group conditions**: Use parentheses or square brackets to control order of operations. Prefer square brackets when constructing queries from user input, since standard URI encoding safely encodes `[` and `]`.\n\n ```\n GET /Product/?rating=5|(price=gt=100&price=lt=200)\n GET /Product/?rating=5&[tag=fast|tag=scalable|tag=efficient]\n ```\n\n Construct grouped queries from JavaScript:\n\n ```javascript\n let url = `/Product/?rating=5&[${tags.map(encodeURIComponent).join('|')}]`;\n ```\n\n6. **Select specific properties with `select(`**: Use `select()` to control which fields are returned.\n\n | Syntax | Returns |\n | -------------------------------------- | ------------------------------------------- |\n | `?select(property)` | Values of a single property directly |\n | `?select(property1,property2)` | Objects with only the specified properties |\n | `?select([property1,property2])` | Arrays of property values |\n | `?select(property1,)` | Objects with a single specified property |\n | `?select(property{subProp1,subProp2})` | Nested objects with specific sub-properties |\n\n ```\n GET /Product/?category=software&select(name)\n GET /Product/?brand.name=Microsoft&select(name,brand{name})\n ```\n\n7. **Limit results with `limit(`**: Use `limit(end)` or `limit(start,end)` to paginate.\n\n ```\n GET /Product/?rating=gt=3&inStock=true&select(rating,name)&limit(20)\n GET /Product/?rating=gt=3&limit(10,30)\n ```\n\n8. **Sort results with `sort(`**: Use `sort(property)` or `sort(+property,-property,...)`. Prefix `+` or no prefix = ascending; `-` = descending.\n\n ```\n GET /Product/?rating=gt=3&sort(+name)\n GET /Product/?sort(+rating,-price)\n ```\n\n9. **Query across relationships**: Use dot-syntax to filter by related table attributes. Relationships must be defined in the schema using `@relation`.\n\n ```\n GET /Product/?brand.name=Microsoft\n GET /Brand/?products.name=Keyboard\n ```\n\n Use `select()` to include relationship attributes in the response (they are not included by default):\n\n ```\n GET /Product/?brand.name=Microsoft&select(name,brand{name})\n ```\n\n10. **Access a specific property by URL**: Append the property name with dot syntax to the record ID. Only works for properties declared in the schema.\n ```\n GET /MyTable/123.propertyName\n ```\n\n## Examples\n\n**Range filter with select and limit:**\n\n```\nGET /Product/?category=software&price=gt=100&price=lt=200&select(name,price)&limit(20)\n```\n\n**Sort descending with multiple fields:**\n\n```\nGET /Product/?sort(+rating,-price)\n```\n\n**OR logic with grouping:**\n\n```\nGET /Product/?price=lt=100|[rating=5&[tag=fast|tag=scalable|tag=efficient]&inStock=true]\n```\n\n**Relationship join with nested select:**\n\n```\nGET /Product/?brand.name=Microsoft&select(name,brand{name,id})\n```\n\n**Schema defining a relationship for join queries:**\n\n```graphql\ntype Product @table @export {\n\tid: Long @primaryKey\n\tname: String\n\tbrandId: Long @indexed\n\tbrand: Brand @relation(from: \"brandId\")\n}\ntype Brand @table @export {\n\tid: Long @primaryKey\n\tname: String\n\tproducts: [Product] @relation(to: \"brandId\")\n}\n```\n\n**Many-to-many relationship query:**\n\n```graphql\ntype Product @table @export {\n\tid: Long @primaryKey\n\tname: String\n\tresellerIds: [Long] @indexed\n\tresellers: [Reseller] @relation(from: \"resellerId\")\n}\n```\n\n```\nGET /Product/?resellers.name=Cool Shop&select(id,name,resellers{name,id})\n```\n\n**Type conversion with explicit prefix:**\n\n```\nGET /Product/?price==number:123\nGET /Product/?active==boolean:true\nGET /Product/?listDate==date:2024-01-05T20%3A07%3A27.955Z\n```\n\n## Notes\n\n- Only indexed attributes can be used as the primary filter; additional unindexed attributes can be combined with `&` once at least one indexed attribute is present.\n- For null value queries, use `?attribute=null`. Indexes must have been created with null indexing support; existing indexes must be removed and re-added to support null queries.\n- FIQL comparators (`==`, `!=`, `=gt=`, etc.) apply automatic type conversion based on value syntax or schema-declared type. Strict operators (`=`, `===`, `!==`) skip automatic type conversion.\n- Filtering by a related attribute produces INNER JOIN behavior (only records with a matching related record are returned). Using `select()` on a relationship without a filter produces LEFT JOIN behavior.\n- The array order of foreign key values in many-to-many relationships is preserved when resolving the relationship.\n- See [automatic-apis.md](automatic-apis.md) for how Harper tables are automatically exposed as REST endpoints.\n",
|
|
45
47
|
"real-time-apps": "---\nname: real-time-apps\ndescription: How to build real-time features in Harper using WebSockets and Pub/Sub.\nmetadata:\n mode: generate\n sources:\n - reference/v5/rest/websockets.md\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: a8afd4d3a52f77ba\n---\n\n# Real-Time Apps with WebSockets and Pub/Sub\n\nInstructions for the agent to follow when building real-time features in Harper using WebSockets and Pub/Sub.\n\n## When to Use\n\nApply this rule when implementing any feature that requires real-time bidirectional communication, live data streaming, or push-based updates in a Harper application. This includes chat, live dashboards, sensor feeds, and any scenario where clients must receive resource changes as they happen.\n\n## How It Works\n\n1. **Enable WebSocket support**: WebSocket support is enabled automatically when the `rest` plugin is enabled. To explicitly disable it, set the following in your config:\n\n ```yaml\n rest:\n webSocket: false\n ```\n\n2. **Connect a client to a resource**: A WebSocket connection to a resource URL automatically subscribes to that resource. When the record changes or a message is published to it, the connection receives the update.\n\n ```javascript\n let ws = new WebSocket('wss://server/my-resource/341');\n ws.onmessage = (event) => {\n \tlet data = JSON.parse(event.data);\n };\n ```\n\n `new WebSocket('wss://server/my-resource/341')` accesses the resource defined for `my-resource` with record id `341` and subscribes to it.\n\n3. **Implement a custom `connect()` handler**: Override the `connect(incomingMessages)` method on a resource class to control WebSocket behavior. The method must return an async iterable (or generator) that produces messages to send to the client. See [automatic-apis.md](automatic-apis.md) for more on defining resource classes.\n\n4. **Use the default `connect()` for event-style access**: Call `super.connect()` to get a streaming iterable that provides:\n - A `send(message)` method for pushing outgoing messages\n - A `close` event for cleanup on disconnect\n\n5. **Handle message ordering in distributed environments**: Harper delivers messages to local subscribers immediately without inter-node coordination delay.\n\n | Message Type | Behavior |\n | -------------------------------------------------------- | ----------------------------------------------------------------------- |\n | Non-retained (no `retain` flag) | Every message delivered in order received; suitable for chat |\n | Retained (published with `retain`, or PUT/updated in DB) | Only the latest-timestamp message is kept; suitable for sensor readings |\n\n6. **Use MQTT over WebSockets** when needed by setting the sub-protocol header:\n ```\n Sec-WebSocket-Protocol: mqtt\n ```\n\n## Examples\n\n**Simple echo server** — override `connect(incomingMessages)` to yield each incoming message back to the client:\n\n```javascript\nexport class Echo extends Resource {\n\tasync *connect(incomingMessages) {\n\t\tfor await (let message of incomingMessages) {\n\t\t\tyield message; // echo each message back\n\t\t}\n\t}\n}\n```\n\n**Custom connect with timer and event-style access** — use `super.connect()` to get the outgoing stream, push periodic messages, echo incoming messages, and clean up on disconnect:\n\n```javascript\nexport class Example extends Resource {\n\tconnect(incomingMessages) {\n\t\tlet outgoingMessages = super.connect();\n\n\t\tlet timer = setInterval(() => {\n\t\t\toutgoingMessages.send({ greeting: 'hi again!' });\n\t\t}, 1000);\n\n\t\tincomingMessages.on('data', (message) => {\n\t\t\toutgoingMessages.send(message); // echo incoming messages\n\t\t});\n\n\t\toutgoingMessages.on('close', () => {\n\t\t\tclearInterval(timer);\n\t\t});\n\n\t\treturn outgoingMessages;\n\t}\n}\n```\n\n## Notes\n\n- WebSocket connections target a resource URL path. By default, connecting to a resource subscribes to changes for that resource.\n- The `connect(incomingMessages)` method **must** return an async iterable or generator; returning a plain value will not work.\n- `super.connect()` returns a streaming iterable with `send(message)` and a `close` event — use this when you need to push messages outside of the incoming message loop.\n- For one-way real-time streaming without bidirectional communication, consider Server-Sent Events instead.\n- For full pub/sub capabilities, Harper also supports MQTT; set `Sec-WebSocket-Protocol: mqtt` to use MQTT over WebSockets.\n",
|
|
46
|
-
"schema-design-tooling": "---\nname: schema-design-tooling\ndescription: Best practices for Harper schema design, including core directives and GraphQL
|
|
48
|
+
"schema-design-tooling": "---\nname: schema-design-tooling\ndescription: >-\n Best practices for Harper schema design, including core directives and GraphQL\n tooling configuration.\nmetadata:\n mode: generate\n sources:\n - reference/v5/database/schema.md#Overview\n - reference/v5/database/schema.md#Type Directives\n - reference/v5/database/schema.md#Field Directives\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 4faa3baed7cfa854\n---\n\n# Schema Design and Tooling\n\nInstructions for the agent to follow when designing Harper schemas, applying core directives, and configuring GraphQL tooling.\n\n## When to Use\n\nApply this rule when creating or modifying Harper schema files, configuring `graphqlSchema` in `config.yaml`, or deciding which directives to apply to tables and fields. Use it any time a component needs tables, indexes, primary keys, or exported endpoints defined.\n\n## How It Works\n\n1. **Create a GraphQL schema file** with Harper-specific directives. Name it (e.g., `schema.graphql`) and place it in your component directory.\n\n ```graphql\n type Dog @table {\n \tid: Long @primaryKey\n \tname: String\n \tbreed: String\n \tage: Int\n }\n\n type Breed @table {\n \tid: Long @primaryKey\n \tname: String @indexed\n }\n ```\n\n2. **Register the schema in `config.yaml`** using the `graphqlSchema` plugin key:\n\n ```yaml\n graphqlSchema:\n files: 'schema.graphql'\n ```\n\n Both plugins and applications can specify schemas this way.\n\n3. **Mark every table type with `@table`**. The type name becomes the table name by default. Use optional arguments to override behavior:\n\n | Argument | Type | Default | Description |\n | -------------- | --------- | ----------------------------- | ------------------------------------------------------------- |\n | `table` | `String` | type name | Override the table name |\n | `database` | `String` | `\"data\"` | Database to place the table in |\n | `expiration` | `Int` | — | Seconds until a record goes stale |\n | `eviction` | `Int` | `0` | Additional seconds after `expiration` before physical removal |\n | `scanInterval` | `Int` | `(expiration + eviction) / 4` | Seconds between eviction scans |\n | `replicate` | `Boolean` | `true` | Enable replication of this table |\n\n4. **Designate a primary key on every table** using `@primaryKey`. Primary keys must be unique; duplicate-key inserts are rejected. If no key is provided on insert, Harper auto-generates one:\n - `String` or `ID` → UUID string\n - `Int`, `Long`, or `Any` → auto-incrementing integer\n\n Prefer `Long` or `Any` for auto-generated numeric keys; `Int` is 32-bit and may be insufficient for large tables.\n\n5. **Index fields that need fast querying** with `@indexed`. This is required for filtering by that attribute in REST queries, SQL, or NoSQL operations. If the field value is an array, each element is individually indexed.\n\n ```graphql\n type Product @table {\n \tid: Long @primaryKey\n \tcategory: String @indexed\n \tprice: Float @indexed\n }\n ```\n\n6. **Expose a table as an external resource endpoint** with `@export`. This makes the table accessible via REST, MQTT, and other interfaces. The optional `name` parameter sets the URL path segment; without it, the type name is used.\n\n ```graphql\n type MyTable @table @export(name: \"my-table\") {\n \tid: Long @primaryKey\n }\n ```\n\n7. **Restrict extra properties** with `@sealed` when records must not include attributes beyond those declared. By default, Harper allows additional properties.\n\n ```graphql\n type StrictRecord @table @sealed {\n \tid: Long @primaryKey\n \tname: String\n }\n ```\n\n8. **Configure expiration, eviction, and scan behavior** together when building caching tables. These three arguments control the full record lifecycle:\n - `expiration` — record becomes stale; next request triggers a source fetch\n - `eviction` — additional time after `expiration` before physical removal\n - `scanInterval` — how often Harper scans for records to evict; clock-aligned, not startup-aligned\n\n## Examples\n\n**Caching table with tuned expiration:**\n\n```graphql\n# Expire after 5 minutes, evict after 1 hour, scan every 10 minutes\ntype WeatherCache @table(expiration: 300, eviction: 3300, scanInterval: 600) {\n\tid: ID @primaryKey\n\ttemperature: Float\n}\n```\n\n**Table in a named database with expiration and an indexed field:**\n\n```graphql\ntype Event @table(database: \"analytics\", expiration: 86400) {\n\tid: Long @primaryKey\n\tname: String @indexed\n}\n```\n\n**Session cache with auto-expiry:**\n\n```graphql\ntype Session @table(expiration: 3600) {\n\tid: Long @primaryKey\n\tuserId: String\n}\n```\n\n**Table with audit timestamps:**\n\n```graphql\ntype Order @table @export(name: \"orders\") {\n\tid: Long @primaryKey\n\tcreatedAt: Long @createdTime\n\tupdatedAt: Long @updatedTime\n\tstatus: String @indexed\n}\n```\n\n**Overriding the table name and disabling replication:**\n\n```graphql\ntype Product @table(table: \"products\") {\n\tid: Long @primaryKey\n\tname: String\n}\n\ntype LocalRecord @table(replicate: false) {\n\tid: Long @primaryKey\n\tvalue: String\n}\n```\n\n## Notes\n\n- Use unique `database` names in plugins and applications to avoid table naming collisions, since all tables default to the `\"data\"` database.\n- Eviction removes non-indexed record data but does **not** remove a record from its secondary indexes. Indexes remain functional for evicted records; Harper fetches the full record from the source on demand when a query matches an evicted record.\n- `scanInterval` is clock-aligned to the server's local timezone. The server's startup time does not affect when eviction runs.\n- If replication is disabled on a table and later re-enabled, it will not catch up on writes made while replication was disabled.\n- Null values are indexed by `@indexed` fields, enabling queries such as `GET /Product/?category=null`.\n",
|
|
47
49
|
"serving-web-content": "---\nname: serving-web-content\ndescription: How to serve static files and integrated Vite/React applications in Harper.\nmetadata:\n mode: synthesized\n---\n\n# Serving Web Content\n\nInstructions for the agent to follow when serving web content from Harper.\n\n## When to Use\n\nUse this skill when you need to serve a frontend (HTML, CSS, JS, or a React app) directly from your Harper instance.\n\n## How It Works\n\n1. **Choose a Method**: Decide between the simple Static Plugin or the integrated Vite Plugin.\n2. **Option A: Static Plugin (Simple)**:\n - Add to `config.yaml`:\n ```yaml\n static:\n files: 'web/*'\n ```\n - Place files in a `web/` folder in the project root.\n - Files are served at the root URL (e.g., `http://localhost:9926/index.html`).\n3. **Option B: Vite Plugin (Advanced/Development)**:\n - Add to `config.yaml`:\n ```yaml\n '@harperfast/vite-plugin':\n package: '@harperfast/vite-plugin'\n ```\n - Ensure `vite.config.ts` and `index.html` are in the project root.\n\n ```javascript\n import vue from '@vitejs/plugin-vue';\n import path from 'node:path';\n import { defineConfig } from 'vite';\n\n // https://vite.dev/config/\n export default defineConfig({\n \tplugins: [vue()],\n \tresolve: {\n \t\talias: {\n \t\t\t'@': path.resolve(import.meta.dirname, './src'),\n \t\t},\n \t},\n \tbuild: {\n \t\toutDir: 'web',\n \t\temptyOutDir: true,\n \t\trolldownOptions: {\n \t\t\texternal: ['**/*.test.*', '**/*.spec.*'],\n \t\t},\n \t},\n });\n ```\n\n - Install dependencies: `npm install --save-dev vite @harperfast/vite-plugin`.\n - Then `harper run .` will start up Harper and Vite with HMR. Vite does _not_ need to be executed separately.\n\n4. **Deploy for Production**: For Vite apps, use a build script to generate static files into a `web/` folder and deploy them using the static handler pattern. For example, these scripts in a package.json can perform the necessary steps:\n ```json\n \"build\": \"vite build\",\n \"deploy\": \"rm -Rf deploy && npm run build && mkdir deploy && mv web deploy/ && cp -R deploy-template/* deploy/ && cp -R schemas resources deploy/ && (cd deploy && harper deploy_component . project=web restart=rolling replicated=true) && rm -Rf deploy\",\n ```\n Then in production, the \"Static Plugin\" option will performantly and securely serve your assets. `npm create harper@latest` scaffolds all of this for you.\n",
|
|
48
|
-
"typescript-type-stripping": "---\nname: typescript-type-stripping\ndescription: How to run TypeScript files directly in Harper without a build step.\nmetadata:\n mode:
|
|
50
|
+
"typescript-type-stripping": "---\nname: typescript-type-stripping\ndescription: How to run TypeScript files directly in Harper without a build step.\nmetadata:\n mode: generate\n sources:\n - reference/v5/components/javascript-environment.md#TypeScript Support\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 4e6bd8b610edd595\n---\n\n# TypeScript Type Stripping in Harper\n\nInstructions for the agent to run `.ts` files directly in Harper without a build step using Node.js's built-in type stripping.\n\n## When to Use\n\nApply this rule when writing Harper resource files in TypeScript. Use it any time you need to reference `.ts` source files from `config.yaml` or import between local TypeScript modules in a Harper project.\n\n## How It Works\n\n1. **Ensure Node.js version**: Require Node.js 22.6 or later. Type stripping is unavailable on earlier versions.\n\n2. **Point `jsResource` at `.ts` files**: The `jsResource` plugin loads both `.js` and `.ts` files. Set its `files` glob in `config.yaml` to target your `.ts` source files:\n\n ```yaml\n jsResource:\n files: 'resources/*.ts'\n ```\n\n3. **Use explicit `.ts` extensions in local imports**: Node's loader does not resolve `'./helper'` to `'./helper.ts'`, so always include the full extension:\n\n ```typescript\n import { helper } from './helper.ts';\n ```\n\n4. **Stay within type-stripping limits**: Only type annotations and declarations are removed. Do not use enums with runtime values, namespaces with runtime semantics, or any other features that require code transformation beyond type stripping.\n\n## Examples\n\nA complete Harper resource written in TypeScript, using imports from the `harper` package:\n\n```typescript\nimport { type RequestTargetOrId, Resource, tables } from 'harper';\n\nexport class MyResource extends Resource {\n\tasync get(target?: RequestTargetOrId): Promise<{ message: string }> {\n\t\treturn { message: 'Hello from TS' };\n\t}\n}\n```\n\nPaired `config.yaml` entry loading the file via `jsResource`:\n\n```yaml\njsResource:\n files: 'resources/*.ts'\n```\n\n## Notes\n\n- No build step or transpiler is required — Harper runs `.ts` files directly.\n- Type imports (e.g., `import { type RequestTargetOrId }`) from the `harper` package work as usual.\n- Unsupported TypeScript features include: enums with runtime values, namespaces with runtime semantics, and anything requiring code transformation beyond simple type stripping.\n",
|
|
49
51
|
"using-blob-datatype": "---\nname: using-blob-datatype\ndescription: How to use the Blob data type for efficient binary storage in Harper.\nmetadata:\n mode: synthesized\n---\n\n# Using Blob Datatype\n\nInstructions for the agent to follow when working with the Blob data type in Harper.\n\n## When to Use\n\nUse this skill when you need to store unstructured or large binary data (media, documents) that is too large for standard JSON fields. Blobs provide efficient storage and integrated streaming support.\n\n## How It Works\n\n1. **Define Blob Fields**: In your GraphQL schema, use the `Blob` type:\n ```graphql\n type MyTable @table {\n \tid: ID @primaryKey\n \tdata: Blob\n }\n ```\n2. **Create and Store Blobs**: Use `createBlob()` from Harper's globals to wrap Buffers or Streams:\n ```javascript\n import { tables } from 'harper';\n const blob = createBlob(largeBuffer);\n await tables.MyTable.put('my-id', { data: blob });\n ```\n3. **Use Streaming (Optional)**: For very large files, pass a stream to `createBlob()` to avoid loading the entire file into memory.\n4. **Read Blob Data**: Retrieve the record and use `.bytes()` or streaming interfaces on the blob field:\n ```javascript\n const record = await tables.MyTable.get('my-id');\n const buffer = await record.data.bytes();\n ```\n5. **Ensure Write Completion**: Use `saveBeforeCommit: true` in `createBlob` options if you need the blob fully written before the record is committed.\n6. **Handle Errors**: Attach error listeners to the blob object to handle streaming failures.\n",
|
|
50
52
|
"vector-indexing": "---\nname: vector-indexing\ndescription: How to enable and query vector indexes for similarity search in Harper.\nmetadata:\n mode: generate\n sources:\n - reference/v5/database/schema.md#Vector Indexing\n sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819\n inputHash: 3732961c671aac00\n---\n\n# Vector Indexing\n\nInstructions for the agent to follow when enabling and querying vector indexes for similarity search in Harper using the HNSW algorithm.\n\n## When to Use\n\nApply this rule when adding a vector index to a Harper table schema or writing similarity search queries against high-dimensional vector fields. Use it whenever you need approximate nearest-neighbor search, distance-threshold filtering, or distance-scored results.\n\n## How It Works\n\n1. **Declare the vector index on a `[Float]` field**: Add `@indexed(type: \"HNSW\")` to any `[Float]` attribute in a `@table` type. See [adding-tables-with-schemas.md](adding-tables-with-schemas.md) for general schema setup.\n\n ```graphql\n type Document @table {\n \tid: Long @primaryKey\n \ttextEmbeddings: [Float] @indexed(type: \"HNSW\")\n }\n ```\n\n2. **Query by nearest neighbors using `sort`**: Call `Document.search()` with a `sort` object containing `attribute` (the indexed field name) and `target` (the query vector). Include `limit` to cap results.\n\n ```javascript\n let results = Document.search({\n \tsort: { attribute: 'textEmbeddings', target: searchVector },\n \tlimit: 5,\n });\n ```\n\n3. **Combine with filter conditions**: Add a `conditions` array alongside `sort` to pre-filter records before ranking by similarity.\n\n ```javascript\n let results = Document.search({\n \tconditions: [{ attribute: 'price', comparator: 'lt', value: 50 }],\n \tsort: { attribute: 'textEmbeddings', target: searchVector },\n \tlimit: 5,\n });\n ```\n\n4. **Filter by distance threshold**: To return only records within a similarity cutoff (without ranking), place `target` directly on the condition alongside `comparator` and `value`. Omit `sort`.\n\n ```javascript\n let results = Document.search({\n \tconditions: {\n \t\tattribute: 'textEmbeddings',\n \t\tcomparator: 'lt',\n \t\tvalue: 0.1,\n \t\ttarget: searchVector,\n \t},\n });\n ```\n\n5. **Include computed distance in results**: Use the special `$distance` field in `select` to return the distance from the target vector. Works with both `sort`-based and `conditions`-based queries.\n\n ```javascript\n let results = Document.search({\n \tselect: ['name', '$distance'],\n \tsort: { attribute: 'textEmbeddings', target: searchVector },\n \tlimit: 5,\n });\n ```\n\n6. **Tune HNSW parameters**: Pass additional parameters to `@indexed(type: \"HNSW\", ...)` to control index quality and performance.\n\n | Parameter | Default | Description |\n | ---------------------- | ----------------- | --------------------------------------------------------------------------------------------------- |\n | `distance` | `\"cosine\"` | Distance function: `\"euclidean\"` or `\"cosine\"` (negative cosine similarity) |\n | `efConstruction` | `100` | Max nodes explored during index construction. Higher = better recall, lower = better performance |\n | `M` | `16` | Preferred connections per graph layer. Higher = more space, better recall for high-dimensional data |\n | `optimizeRouting` | `0.5` | Heuristic aggressiveness for omitting redundant connections (0 = off, 1 = most aggressive) |\n | `mL` | computed from `M` | Normalization factor for level generation |\n | `efSearchConstruction` | `50` | Max nodes explored during search |\n\n## Examples\n\n**Schema with custom HNSW parameters:**\n\n```graphql\ntype Document @table {\n\tid: Long @primaryKey\n\ttextEmbeddings: [Float]\n\t\t@indexed(type: \"HNSW\", distance: \"euclidean\", optimizeRouting: 0, efSearchConstruction: 100)\n}\n```\n\n**Nearest-neighbor search with distance score:**\n\n```javascript\nlet results = Document.search({\n\tselect: ['name', '$distance'],\n\tsort: { attribute: 'textEmbeddings', target: searchVector },\n\tlimit: 5,\n});\n```\n\n**Distance-threshold filter (no ranking):**\n\n```javascript\nlet results = Document.search({\n\tconditions: {\n\t\tattribute: 'textEmbeddings',\n\t\tcomparator: 'lt',\n\t\tvalue: 0.1,\n\t\ttarget: searchVector,\n\t},\n});\n```\n\n## Notes\n\n- The default `distance` function is `cosine`. Pass `distance: \"euclidean\"` to switch.\n- `efConstruction` controls index build quality; raising it improves recall at the cost of build time.\n- `$distance` is available in both `sort`-based ranking and `conditions`-based threshold queries.\n- Use the threshold (`conditions` + `target`) form when you want to bound result quality by a similarity cutoff rather than ranking by similarity.\n"
|
|
51
53
|
};
|
|
@@ -53,4 +55,4 @@ export const rules = {
|
|
|
53
55
|
/**
|
|
54
56
|
* The content of the Harper Best Practices SKILL.md.
|
|
55
57
|
*/
|
|
56
|
-
export const skillSummary = "---\nname: harper-best-practices\ndescription: Best practices for building Harper applications, covering schema definition,\n automatic APIs, authentication, custom resources, and data handling.\n Triggers on tasks involving Harper database design, API implementation,\n and deployment.\nlicense: Apache-2.0\nmetadata:\n author: harper\n version: '1.0.0'\n---\n\n# Harper Best Practices\n\nGuidelines for building scalable, secure, and performant applications on Harper. These practices cover everything from initial schema design to advanced deployment strategies.\n\n## When to Use\n\nReference these guidelines when:\n\n- Defining or modifying database schemas\n- Implementing or extending REST/WebSocket APIs\n- Handling authentication and session management\n- Working with custom resources and extensions\n- Optimizing data storage and retrieval (Blobs, Vector Indexing)\n- Deploying applications to Harper Fabric\n\n## How It Works\n\n1. Review the requirements for the task (schema design, API needs, or infrastructure setup).\n2. Consult the relevant category under \"Rule Categories by Priority\" to understand the impact of your decisions.\n3. Apply specific rules from the \"Quick Reference\" section below by reading their detailed rule files.\n4. If you're building a new table, prioritize the `schema-` rules.\n5. If you're extending functionality, consult the `logic-` and `api-` rules.\n6. Validate your implementation against the `ops-` rules before deployment.\n\n## Examples\n\nSee the concrete examples embedded in each rule subsection below (GraphQL schemas, REST query patterns, and deployment workflow snippets).\n\n<!-- BEGIN GENERATED INDEX -->\n\n## Rule Categories by Priority\n\n| Priority | Category | Impact | Prefix |\n| -------- | -------------------- | ------ | --------- |\n| 1 | Schema & Data Design | HIGH | `schema-` |\n| 2 | API & Communication | HIGH | `api-` |\n| 3 | Logic & Extension | MEDIUM | `logic-` |\n| 4 | Infrastructure & Ops | MEDIUM | `ops-` |\n\n## Quick Reference\n\n### 1. Schema & Data Design (HIGH)\n\n- `adding-tables-with-schemas` — Guidelines for adding tables to a Harper database using GraphQL schemas.\n- `schema-design-tooling` — Best practices for Harper schema design, including core directives and GraphQL tooling configuration.\n- `defining-relationships` — How to define and use relationships between tables in Harper using GraphQL.\n- `vector-indexing` — How to enable and query vector indexes for similarity search in Harper.\n- `using-blob-datatype` — How to use the Blob data type for efficient binary storage in Harper.\n- `handling-binary-data` — How to store and serve binary data like images or audio in Harper.\n\n### 2. API & Communication (HIGH)\n\n- `automatic-apis` — How to use Harper's automatically generated REST and WebSocket APIs.\n- `querying-rest-apis` — How to use query parameters to filter, sort, and paginate Harper REST APIs.\n- `real-time-apps` — How to build real-time features in Harper using WebSockets and Pub/Sub.\n- `checking-authentication` — How to handle user authentication and sessions in Harper Resources.\n\n### 3. Logic & Extension (MEDIUM)\n\n- `custom-resources` — How to define custom REST endpoints with JavaScript or TypeScript in Harper.\n- `extending-tables` — How to add custom logic to automatically generated table resources in Harper.\n- `programmatic-table-requests` — How to interact with Harper tables programmatically using the `tables` object.\n- `typescript-type-stripping` — How to run TypeScript files directly in Harper without a build step.\n- `caching` — How to implement integrated data caching in Harper from external sources.\n\n### 4. Infrastructure & Ops (MEDIUM)\n\n- `deploying-to-harper-fabric` — How to deploy a Harper application to the Harper Fabric cloud.\n- `creating-a-fabric-account-and-cluster` — How to create a Harper Fabric account, organization, and cluster.\n- `creating-harper-apps` — How to initialize a new Harper application using the CLI.\n- `serving-web-content` — How to serve static files and integrated Vite/React applications in Harper.\n- `logging` — Best practices for logging in Harper, including console capture, the granular logger interface, and programmatic log retrieval.\n\n<!-- END GENERATED INDEX -->\n\n## How to Use\n\nRead individual rule files for detailed explanations and code examples:\n\n```\nrules/adding-tables-with-schemas.md\nrules/schema-design-tooling.md\nrules/automatic-apis.md\nrules/creating-harper-apps.md\nrules/logging.md\n```\n\n## Full Compiled Document\n\nFor the complete guide with all rules expanded: `AGENTS.md`\n";
|
|
58
|
+
export const skillSummary = "---\nname: harper-best-practices\ndescription: Best practices for building Harper applications, covering schema definition,\n automatic APIs, authentication, custom resources, and data handling.\n Triggers on tasks involving Harper database design, API implementation,\n and deployment.\nlicense: Apache-2.0\nmetadata:\n author: harper\n version: '1.0.0'\n---\n\n# Harper Best Practices\n\nGuidelines for building scalable, secure, and performant applications on Harper. These practices cover everything from initial schema design to advanced deployment strategies.\n\n## When to Use\n\nReference these guidelines when:\n\n- Defining or modifying database schemas\n- Implementing or extending REST/WebSocket APIs\n- Handling authentication and session management\n- Working with custom resources and extensions\n- Optimizing data storage and retrieval (Blobs, Vector Indexing)\n- Deploying applications to Harper Fabric\n\n## How It Works\n\n1. Review the requirements for the task (schema design, API needs, or infrastructure setup).\n2. Consult the relevant category under \"Rule Categories by Priority\" to understand the impact of your decisions.\n3. Apply specific rules from the \"Quick Reference\" section below by reading their detailed rule files.\n4. If you're building a new table, prioritize the `schema-` rules.\n5. If you're extending functionality, consult the `logic-` and `api-` rules.\n6. Validate your implementation against the `ops-` rules before deployment.\n\n## Examples\n\nSee the concrete examples embedded in each rule subsection below (GraphQL schemas, REST query patterns, and deployment workflow snippets).\n\n<!-- BEGIN GENERATED INDEX -->\n\n## Rule Categories by Priority\n\n| Priority | Category | Impact | Prefix |\n| -------- | -------------------- | ------ | --------- |\n| 1 | Schema & Data Design | HIGH | `schema-` |\n| 2 | API & Communication | HIGH | `api-` |\n| 3 | Logic & Extension | MEDIUM | `logic-` |\n| 4 | Infrastructure & Ops | MEDIUM | `ops-` |\n\n## Quick Reference\n\n### 1. Schema & Data Design (HIGH)\n\n- `adding-tables-with-schemas` — Guidelines for adding tables to a Harper database using GraphQL schemas.\n- `schema-design-tooling` — Best practices for Harper schema design, including core directives and GraphQL tooling configuration.\n- `defining-relationships` — How to define and use relationships between tables in Harper using GraphQL.\n- `vector-indexing` — How to enable and query vector indexes for similarity search in Harper.\n- `using-blob-datatype` — How to use the Blob data type for efficient binary storage in Harper.\n- `handling-binary-data` — How to store and serve binary data like images or audio in Harper.\n\n### 2. API & Communication (HIGH)\n\n- `automatic-apis` — How to use Harper's automatically generated REST and WebSocket APIs.\n- `querying-rest-apis` — How to use query parameters to filter, sort, and paginate Harper REST APIs.\n- `real-time-apps` — How to build real-time features in Harper using WebSockets and Pub/Sub.\n- `checking-authentication` — How to handle user authentication and sessions in Harper Resources.\n\n### 3. Logic & Extension (MEDIUM)\n\n- `custom-resources` — How to define custom REST endpoints with JavaScript or TypeScript in Harper.\n- `extending-tables` — How to add custom logic to automatically generated table resources in Harper.\n- `programmatic-table-requests` — How to interact with Harper tables programmatically using the `tables` object.\n- `typescript-type-stripping` — How to run TypeScript files directly in Harper without a build step.\n- `caching` — How to implement integrated data caching in Harper from external sources.\n\n### 4. Infrastructure & Ops (MEDIUM)\n\n- `deploying-to-harper-fabric` — How to deploy a Harper application to the Harper Fabric cloud.\n- `creating-a-fabric-account-and-cluster` — How to create a Harper Fabric account, organization, and cluster.\n- `creating-harper-apps` — How to initialize a new Harper application using the CLI.\n- `serving-web-content` — How to serve static files and integrated Vite/React applications in Harper.\n- `logging` — Best practices for logging in Harper, including console capture, the granular logger interface, and programmatic log retrieval.\n- `load-env` — How to load environment variables from .env files into a Harper application using the loadEnv plugin.\n\n<!-- END GENERATED INDEX -->\n\n## How to Use\n\nRead individual rule files for detailed explanations and code examples:\n\n```\nrules/adding-tables-with-schemas.md\nrules/schema-design-tooling.md\nrules/automatic-apis.md\nrules/creating-harper-apps.md\nrules/logging.md\n```\n\n## Full Compiled Document\n\nFor the complete guide with all rules expanded: `AGENTS.md`\n";
|
|
@@ -40,70 +40,153 @@ type ExamplePerson @table @export {
|
|
|
40
40
|
}
|
|
41
41
|
```
|
|
42
42
|
|
|
43
|
-
### 1.2 Schema Design
|
|
43
|
+
### 1.2 Schema Design and Tooling
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
Instructions for the agent to follow when designing Harper schemas, applying core directives, and configuring GraphQL tooling.
|
|
46
46
|
|
|
47
|
-
####
|
|
47
|
+
#### When to Use
|
|
48
|
+
|
|
49
|
+
Apply this rule when creating or modifying Harper schema files, configuring `graphqlSchema` in `config.yaml`, or deciding which directives to apply to tables and fields. Use it any time a component needs tables, indexes, primary keys, or exported endpoints defined.
|
|
50
|
+
|
|
51
|
+
#### How It Works
|
|
52
|
+
|
|
53
|
+
1. **Create a GraphQL schema file** with Harper-specific directives. Name it (e.g., `schema.graphql`) and place it in your component directory.
|
|
48
54
|
|
|
49
|
-
|
|
55
|
+
```graphql
|
|
56
|
+
type Dog @table {
|
|
57
|
+
id: Long @primaryKey
|
|
58
|
+
name: String
|
|
59
|
+
breed: String
|
|
60
|
+
age: Int
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
type Breed @table {
|
|
64
|
+
id: Long @primaryKey
|
|
65
|
+
name: String @indexed
|
|
66
|
+
}
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
2. **Register the schema in `config.yaml`** using the `graphqlSchema` plugin key:
|
|
70
|
+
|
|
71
|
+
```yaml
|
|
72
|
+
graphqlSchema:
|
|
73
|
+
files: 'schema.graphql'
|
|
74
|
+
```
|
|
50
75
|
|
|
51
|
-
|
|
76
|
+
Both plugins and applications can specify schemas this way.
|
|
52
77
|
|
|
53
|
-
|
|
54
|
-
- `@export`: Automatically generates REST and WebSocket APIs for the table.
|
|
55
|
-
- `@table(expiration: Int)`: Configures a time-to-expire for records in the table (useful for caching).
|
|
78
|
+
3. **Mark every table type with `@table`**. The type name becomes the table name by default. Use optional arguments to override behavior:
|
|
56
79
|
|
|
57
|
-
|
|
80
|
+
| Argument | Type | Default | Description |
|
|
81
|
+
| -------------- | --------- | ----------------------------- | ------------------------------------------------------------- |
|
|
82
|
+
| `table` | `String` | type name | Override the table name |
|
|
83
|
+
| `database` | `String` | `"data"` | Database to place the table in |
|
|
84
|
+
| `expiration` | `Int` | — | Seconds until a record goes stale |
|
|
85
|
+
| `eviction` | `Int` | `0` | Additional seconds after `expiration` before physical removal |
|
|
86
|
+
| `scanInterval` | `Int` | `(expiration + eviction) / 4` | Seconds between eviction scans |
|
|
87
|
+
| `replicate` | `Boolean` | `true` | Enable replication of this table |
|
|
58
88
|
|
|
59
|
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
89
|
+
4. **Designate a primary key on every table** using `@primaryKey`. Primary keys must be unique; duplicate-key inserts are rejected. If no key is provided on insert, Harper auto-generates one:
|
|
90
|
+
- `String` or `ID` → UUID string
|
|
91
|
+
- `Int`, `Long`, or `Any` → auto-incrementing integer
|
|
62
92
|
|
|
63
|
-
|
|
93
|
+
Prefer `Long` or `Any` for auto-generated numeric keys; `Int` is 32-bit and may be insufficient for large tables.
|
|
64
94
|
|
|
65
|
-
|
|
95
|
+
5. **Index fields that need fast querying** with `@indexed`. This is required for filtering by that attribute in REST queries, SQL, or NoSQL operations. If the field value is an array, each element is individually indexed.
|
|
66
96
|
|
|
67
|
-
|
|
97
|
+
```graphql
|
|
98
|
+
type Product @table {
|
|
99
|
+
id: Long @primaryKey
|
|
100
|
+
category: String @indexed
|
|
101
|
+
price: Float @indexed
|
|
102
|
+
}
|
|
103
|
+
```
|
|
68
104
|
|
|
69
|
-
|
|
105
|
+
6. **Expose a table as an external resource endpoint** with `@export`. This makes the table accessible via REST, MQTT, and other interfaces. The optional `name` parameter sets the URL path segment; without it, the type name is used.
|
|
70
106
|
|
|
71
|
-
|
|
107
|
+
```graphql
|
|
108
|
+
type MyTable @table @export(name: "my-table") {
|
|
109
|
+
id: Long @primaryKey
|
|
110
|
+
}
|
|
111
|
+
```
|
|
72
112
|
|
|
73
|
-
|
|
113
|
+
7. **Restrict extra properties** with `@sealed` when records must not include attributes beyond those declared. By default, Harper allows additional properties.
|
|
74
114
|
|
|
75
|
-
|
|
115
|
+
```graphql
|
|
116
|
+
type StrictRecord @table @sealed {
|
|
117
|
+
id: Long @primaryKey
|
|
118
|
+
name: String
|
|
119
|
+
}
|
|
120
|
+
```
|
|
76
121
|
|
|
77
|
-
|
|
122
|
+
8. **Configure expiration, eviction, and scan behavior** together when building caching tables. These three arguments control the full record lifecycle:
|
|
123
|
+
- `expiration` — record becomes stale; next request triggers a source fetch
|
|
124
|
+
- `eviction` — additional time after `expiration` before physical removal
|
|
125
|
+
- `scanInterval` — how often Harper scans for records to evict; clock-aligned, not startup-aligned
|
|
78
126
|
|
|
79
|
-
|
|
127
|
+
#### Examples
|
|
80
128
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
129
|
+
**Caching table with tuned expiration:**
|
|
130
|
+
|
|
131
|
+
```graphql
|
|
132
|
+
# Expire after 5 minutes, evict after 1 hour, scan every 10 minutes
|
|
133
|
+
type WeatherCache @table(expiration: 300, eviction: 3300, scanInterval: 600) {
|
|
134
|
+
id: ID @primaryKey
|
|
135
|
+
temperature: Float
|
|
136
|
+
}
|
|
86
137
|
```
|
|
87
138
|
|
|
88
|
-
|
|
139
|
+
**Table in a named database with expiration and an indexed field:**
|
|
140
|
+
|
|
141
|
+
```graphql
|
|
142
|
+
type Event @table(database: "analytics", expiration: 86400) {
|
|
143
|
+
id: Long @primaryKey
|
|
144
|
+
name: String @indexed
|
|
145
|
+
}
|
|
146
|
+
```
|
|
89
147
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
148
|
+
**Session cache with auto-expiry:**
|
|
149
|
+
|
|
150
|
+
```graphql
|
|
151
|
+
type Session @table(expiration: 3600) {
|
|
152
|
+
id: Long @primaryKey
|
|
153
|
+
userId: String
|
|
154
|
+
}
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
**Table with audit timestamps:**
|
|
158
|
+
|
|
159
|
+
```graphql
|
|
160
|
+
type Order @table @export(name: "orders") {
|
|
161
|
+
id: Long @primaryKey
|
|
162
|
+
createdAt: Long @createdTime
|
|
163
|
+
updatedAt: Long @updatedTime
|
|
164
|
+
status: String @indexed
|
|
165
|
+
}
|
|
166
|
+
```
|
|
93
167
|
|
|
94
|
-
|
|
168
|
+
**Overriding the table name and disabling replication:**
|
|
95
169
|
|
|
96
|
-
|
|
170
|
+
```graphql
|
|
171
|
+
type Product @table(table: "products") {
|
|
172
|
+
id: Long @primaryKey
|
|
173
|
+
name: String
|
|
174
|
+
}
|
|
97
175
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
├── package.json
|
|
103
|
-
├── schema.graphql
|
|
104
|
-
└── resources.js
|
|
176
|
+
type LocalRecord @table(replicate: false) {
|
|
177
|
+
id: Long @primaryKey
|
|
178
|
+
value: String
|
|
179
|
+
}
|
|
105
180
|
```
|
|
106
181
|
|
|
182
|
+
#### Notes
|
|
183
|
+
|
|
184
|
+
- Use unique `database` names in plugins and applications to avoid table naming collisions, since all tables default to the `"data"` database.
|
|
185
|
+
- Eviction removes non-indexed record data but does **not** remove a record from its secondary indexes. Indexes remain functional for evicted records; Harper fetches the full record from the source on demand when a query matches an evicted record.
|
|
186
|
+
- `scanInterval` is clock-aligned to the server's local timezone. The server's startup time does not affect when eviction runs.
|
|
187
|
+
- If replication is disabled on a table and later re-enabled, it will not catch up on writes made while replication was disabled.
|
|
188
|
+
- Null values are indexed by `@indexed` fields, enabling queries such as `GET /Product/?category=null`.
|
|
189
|
+
|
|
107
190
|
### 1.3 Defining Relationships
|
|
108
191
|
|
|
109
192
|
Instructions for the agent to follow when defining relationships between Harper tables.
|
|
@@ -1138,34 +1221,60 @@ for await (const record of tables.Product.search({
|
|
|
1138
1221
|
|
|
1139
1222
|
Be very careful when performing updates and deletions! You may be dealing with live production data. The wrong request to delete, without approval from a human, could be devastating to a business. Always use the proper approval process.
|
|
1140
1223
|
|
|
1141
|
-
### 3.4 TypeScript Type Stripping
|
|
1224
|
+
### 3.4 TypeScript Type Stripping in Harper
|
|
1142
1225
|
|
|
1143
|
-
Instructions for the agent to
|
|
1226
|
+
Instructions for the agent to run `.ts` files directly in Harper without a build step using Node.js's built-in type stripping.
|
|
1144
1227
|
|
|
1145
1228
|
#### When to Use
|
|
1146
1229
|
|
|
1147
|
-
|
|
1230
|
+
Apply this rule when writing Harper resource files in TypeScript. Use it any time you need to reference `.ts` source files from `config.yaml` or import between local TypeScript modules in a Harper project.
|
|
1148
1231
|
|
|
1149
1232
|
#### How It Works
|
|
1150
1233
|
|
|
1151
|
-
1. **
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
import { Resource } from 'harper';
|
|
1156
|
-
export class MyResource extends Resource {
|
|
1157
|
-
async get(): Promise<{ message: string }> {
|
|
1158
|
-
return { message: 'Running TS directly!' };
|
|
1159
|
-
}
|
|
1160
|
-
}
|
|
1161
|
-
```
|
|
1162
|
-
4. **Use Explicit Extensions in Imports**: When importing other local modules, include the `.ts` extension: `import { helper } from './helper.ts'`.
|
|
1163
|
-
5. **Configure `config.yaml`**: Ensure `jsResource` points to your `.ts` files:
|
|
1234
|
+
1. **Ensure Node.js version**: Require Node.js 22.6 or later. Type stripping is unavailable on earlier versions.
|
|
1235
|
+
|
|
1236
|
+
2. **Point `jsResource` at `.ts` files**: The `jsResource` plugin loads both `.js` and `.ts` files. Set its `files` glob in `config.yaml` to target your `.ts` source files:
|
|
1237
|
+
|
|
1164
1238
|
```yaml
|
|
1165
1239
|
jsResource:
|
|
1166
1240
|
files: 'resources/*.ts'
|
|
1167
1241
|
```
|
|
1168
1242
|
|
|
1243
|
+
3. **Use explicit `.ts` extensions in local imports**: Node's loader does not resolve `'./helper'` to `'./helper.ts'`, so always include the full extension:
|
|
1244
|
+
|
|
1245
|
+
```typescript
|
|
1246
|
+
import { helper } from './helper.ts';
|
|
1247
|
+
```
|
|
1248
|
+
|
|
1249
|
+
4. **Stay within type-stripping limits**: Only type annotations and declarations are removed. Do not use enums with runtime values, namespaces with runtime semantics, or any other features that require code transformation beyond type stripping.
|
|
1250
|
+
|
|
1251
|
+
#### Examples
|
|
1252
|
+
|
|
1253
|
+
A complete Harper resource written in TypeScript, using imports from the `harper` package:
|
|
1254
|
+
|
|
1255
|
+
```typescript
|
|
1256
|
+
import { type RequestTargetOrId, Resource, tables } from 'harper';
|
|
1257
|
+
|
|
1258
|
+
export class MyResource extends Resource {
|
|
1259
|
+
async get(target?: RequestTargetOrId): Promise<{ message: string }> {
|
|
1260
|
+
return { message: 'Hello from TS' };
|
|
1261
|
+
}
|
|
1262
|
+
}
|
|
1263
|
+
```
|
|
1264
|
+
|
|
1265
|
+
Paired `config.yaml` entry loading the file via `jsResource`:
|
|
1266
|
+
|
|
1267
|
+
```yaml
|
|
1268
|
+
jsResource:
|
|
1269
|
+
files: 'resources/*.ts'
|
|
1270
|
+
```
|
|
1271
|
+
|
|
1272
|
+
#### Notes
|
|
1273
|
+
|
|
1274
|
+
- No build step or transpiler is required — Harper runs `.ts` files directly.
|
|
1275
|
+
- Type imports (e.g., `import { type RequestTargetOrId }`) from the `harper` package work as usual.
|
|
1276
|
+
- Unsupported TypeScript features include: enums with runtime values, namespaces with runtime semantics, and anything requiring code transformation beyond simple type stripping.
|
|
1277
|
+
|
|
1169
1278
|
### 3.5 Caching External Data Sources in Harper
|
|
1170
1279
|
|
|
1171
1280
|
Instructions for the agent to implement integrated data caching in Harper by wrapping external sources with a cache table and `sourcedFrom`.
|
|
@@ -1456,11 +1565,14 @@ CLI_TARGET='YOUR_CLUSTER_URL'
|
|
|
1456
1565
|
|
|
1457
1566
|
### 4.3 Creating Harper Applications
|
|
1458
1567
|
|
|
1459
|
-
The fastest way to start a new Harper project is using the `create-harper` CLI tool. This command
|
|
1568
|
+
The fastest way to start a new Harper project is using the `create-harper` CLI tool. This command
|
|
1569
|
+
initializes a project with a standard folder structure, essential configuration files, and basic
|
|
1570
|
+
schema definitions.
|
|
1460
1571
|
|
|
1461
1572
|
#### When to Use
|
|
1462
1573
|
|
|
1463
|
-
Use this command when starting a new Harper application or adding a new Harper microservice to an
|
|
1574
|
+
Use this command when starting a new Harper application or adding a new Harper microservice to an
|
|
1575
|
+
existing architecture.
|
|
1464
1576
|
|
|
1465
1577
|
#### Commands
|
|
1466
1578
|
|
|
@@ -1714,3 +1826,91 @@ Tagged entries appear in `hdb.log` with the tag in the header:
|
|
|
1714
1826
|
- `console.log` output is only forwarded to `hdb.log` when `logging.console: true` is explicitly set; it is not forwarded by default.
|
|
1715
1827
|
- When logging to standard streams, run Harper in the foreground (`harper`, not `harper start`).
|
|
1716
1828
|
- `TaggedLogger` is bound to the configured log level at creation time — always use `?.` on its methods.
|
|
1829
|
+
|
|
1830
|
+
### 4.6 Load Environment Variables with loadEnv
|
|
1831
|
+
|
|
1832
|
+
Instructions for the agent to follow when loading environment variables from `.env` files into a Harper application using the `loadEnv` plugin.
|
|
1833
|
+
|
|
1834
|
+
#### When to Use
|
|
1835
|
+
|
|
1836
|
+
Apply this rule when a Harper application needs to load secrets or configuration values from `.env` files into `process.env` at startup. Use it whenever you need to configure `loadEnv` in `config.yaml`, control load order, handle multiple files, or manage override behavior.
|
|
1837
|
+
|
|
1838
|
+
#### How It Works
|
|
1839
|
+
|
|
1840
|
+
1. **Declare `loadEnv` in `config.yaml`**: Add `loadEnv` to your `config.yaml` with a `files` key pointing to the `.env` file. `loadEnv` is built into Harper and does not need to be installed separately.
|
|
1841
|
+
|
|
1842
|
+
```yaml
|
|
1843
|
+
loadEnv:
|
|
1844
|
+
files: '.env'
|
|
1845
|
+
```
|
|
1846
|
+
|
|
1847
|
+
This loads the specified file from the root of your component directory into `process.env`.
|
|
1848
|
+
|
|
1849
|
+
2. **Place `loadEnv` first**: Always declare `loadEnv` before any other components in `config.yaml` so environment variables are available before dependent components start. Because Harper is single-process, variables loaded onto `process.env` are shared across all components.
|
|
1850
|
+
|
|
1851
|
+
```yaml
|
|
1852
|
+
# config.yaml — loadEnv must come first
|
|
1853
|
+
loadEnv:
|
|
1854
|
+
files: '.env'
|
|
1855
|
+
|
|
1856
|
+
rest: true
|
|
1857
|
+
|
|
1858
|
+
myApp:
|
|
1859
|
+
files: './src/*.js'
|
|
1860
|
+
```
|
|
1861
|
+
|
|
1862
|
+
3. **Control override behavior**: By default, existing shell or container environment variables take precedence over values in `.env` files. To force `.env` values to overwrite existing variables, set `override: true`.
|
|
1863
|
+
|
|
1864
|
+
```yaml
|
|
1865
|
+
loadEnv:
|
|
1866
|
+
files: '.env'
|
|
1867
|
+
override: true
|
|
1868
|
+
```
|
|
1869
|
+
|
|
1870
|
+
4. **Load multiple files**: Provide a list of files or a glob pattern under `files`. Files are loaded in the order specified.
|
|
1871
|
+
```yaml
|
|
1872
|
+
loadEnv:
|
|
1873
|
+
files:
|
|
1874
|
+
- '.env'
|
|
1875
|
+
- '.env.local'
|
|
1876
|
+
```
|
|
1877
|
+
Or using a glob pattern:
|
|
1878
|
+
```yaml
|
|
1879
|
+
loadEnv:
|
|
1880
|
+
files: 'env-vars/*'
|
|
1881
|
+
```
|
|
1882
|
+
|
|
1883
|
+
#### Examples
|
|
1884
|
+
|
|
1885
|
+
A complete `config.yaml` using `loadEnv` with multiple files and override enabled:
|
|
1886
|
+
|
|
1887
|
+
```yaml
|
|
1888
|
+
# config.yaml — loadEnv must come first
|
|
1889
|
+
loadEnv:
|
|
1890
|
+
files:
|
|
1891
|
+
- '.env'
|
|
1892
|
+
- '.env.local'
|
|
1893
|
+
override: true
|
|
1894
|
+
|
|
1895
|
+
rest: true
|
|
1896
|
+
|
|
1897
|
+
myApp:
|
|
1898
|
+
files: './src/*.js'
|
|
1899
|
+
```
|
|
1900
|
+
|
|
1901
|
+
A minimal setup loading a single `.env` file:
|
|
1902
|
+
|
|
1903
|
+
```yaml
|
|
1904
|
+
loadEnv:
|
|
1905
|
+
files: '.env'
|
|
1906
|
+
|
|
1907
|
+
myApp:
|
|
1908
|
+
files: './src/*.js'
|
|
1909
|
+
```
|
|
1910
|
+
|
|
1911
|
+
#### Notes
|
|
1912
|
+
|
|
1913
|
+
- `loadEnv` is built into Harper — declare it in `config.yaml` only; do not install it as a separate package.
|
|
1914
|
+
- The `files` value accepts either a single string, a list of strings, or a glob pattern.
|
|
1915
|
+
- Without `override: true`, variables already present in the environment are never overwritten by values in `.env` files.
|
|
1916
|
+
- `process.env` is shared across all Harper components in the same process, so load order in `config.yaml` determines availability.
|
|
@@ -82,6 +82,7 @@ See the concrete examples embedded in each rule subsection below (GraphQL schema
|
|
|
82
82
|
- `creating-harper-apps` — How to initialize a new Harper application using the CLI.
|
|
83
83
|
- `serving-web-content` — How to serve static files and integrated Vite/React applications in Harper.
|
|
84
84
|
- `logging` — Best practices for logging in Harper, including console capture, the granular logger interface, and programmatic log retrieval.
|
|
85
|
+
- `load-env` — How to load environment variables from .env files into a Harper application using the loadEnv plugin.
|
|
85
86
|
|
|
86
87
|
<!-- END GENERATED INDEX -->
|
|
87
88
|
|
|
@@ -7,11 +7,14 @@ metadata:
|
|
|
7
7
|
|
|
8
8
|
# Creating Harper Applications
|
|
9
9
|
|
|
10
|
-
The fastest way to start a new Harper project is using the `create-harper` CLI tool. This command
|
|
10
|
+
The fastest way to start a new Harper project is using the `create-harper` CLI tool. This command
|
|
11
|
+
initializes a project with a standard folder structure, essential configuration files, and basic
|
|
12
|
+
schema definitions.
|
|
11
13
|
|
|
12
14
|
## When to Use
|
|
13
15
|
|
|
14
|
-
Use this command when starting a new Harper application or adding a new Harper microservice to an
|
|
16
|
+
Use this command when starting a new Harper application or adding a new Harper microservice to an
|
|
17
|
+
existing architecture.
|
|
15
18
|
|
|
16
19
|
## Commands
|
|
17
20
|
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: load-env
|
|
3
|
+
description: >-
|
|
4
|
+
How to load environment variables from .env files into a Harper application
|
|
5
|
+
using the loadEnv plugin.
|
|
6
|
+
metadata:
|
|
7
|
+
mode: generate
|
|
8
|
+
sources:
|
|
9
|
+
- reference/v5/environment-variables/overview.md
|
|
10
|
+
sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819
|
|
11
|
+
inputHash: c73a0caf28a2b833
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# Load Environment Variables with loadEnv
|
|
15
|
+
|
|
16
|
+
Instructions for the agent to follow when loading environment variables from `.env` files into a Harper application using the `loadEnv` plugin.
|
|
17
|
+
|
|
18
|
+
## When to Use
|
|
19
|
+
|
|
20
|
+
Apply this rule when a Harper application needs to load secrets or configuration values from `.env` files into `process.env` at startup. Use it whenever you need to configure `loadEnv` in `config.yaml`, control load order, handle multiple files, or manage override behavior.
|
|
21
|
+
|
|
22
|
+
## How It Works
|
|
23
|
+
|
|
24
|
+
1. **Declare `loadEnv` in `config.yaml`**: Add `loadEnv` to your `config.yaml` with a `files` key pointing to the `.env` file. `loadEnv` is built into Harper and does not need to be installed separately.
|
|
25
|
+
|
|
26
|
+
```yaml
|
|
27
|
+
loadEnv:
|
|
28
|
+
files: '.env'
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
This loads the specified file from the root of your component directory into `process.env`.
|
|
32
|
+
|
|
33
|
+
2. **Place `loadEnv` first**: Always declare `loadEnv` before any other components in `config.yaml` so environment variables are available before dependent components start. Because Harper is single-process, variables loaded onto `process.env` are shared across all components.
|
|
34
|
+
|
|
35
|
+
```yaml
|
|
36
|
+
# config.yaml — loadEnv must come first
|
|
37
|
+
loadEnv:
|
|
38
|
+
files: '.env'
|
|
39
|
+
|
|
40
|
+
rest: true
|
|
41
|
+
|
|
42
|
+
myApp:
|
|
43
|
+
files: './src/*.js'
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
3. **Control override behavior**: By default, existing shell or container environment variables take precedence over values in `.env` files. To force `.env` values to overwrite existing variables, set `override: true`.
|
|
47
|
+
|
|
48
|
+
```yaml
|
|
49
|
+
loadEnv:
|
|
50
|
+
files: '.env'
|
|
51
|
+
override: true
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
4. **Load multiple files**: Provide a list of files or a glob pattern under `files`. Files are loaded in the order specified.
|
|
55
|
+
```yaml
|
|
56
|
+
loadEnv:
|
|
57
|
+
files:
|
|
58
|
+
- '.env'
|
|
59
|
+
- '.env.local'
|
|
60
|
+
```
|
|
61
|
+
Or using a glob pattern:
|
|
62
|
+
```yaml
|
|
63
|
+
loadEnv:
|
|
64
|
+
files: 'env-vars/*'
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
## Examples
|
|
68
|
+
|
|
69
|
+
A complete `config.yaml` using `loadEnv` with multiple files and override enabled:
|
|
70
|
+
|
|
71
|
+
```yaml
|
|
72
|
+
# config.yaml — loadEnv must come first
|
|
73
|
+
loadEnv:
|
|
74
|
+
files:
|
|
75
|
+
- '.env'
|
|
76
|
+
- '.env.local'
|
|
77
|
+
override: true
|
|
78
|
+
|
|
79
|
+
rest: true
|
|
80
|
+
|
|
81
|
+
myApp:
|
|
82
|
+
files: './src/*.js'
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
A minimal setup loading a single `.env` file:
|
|
86
|
+
|
|
87
|
+
```yaml
|
|
88
|
+
loadEnv:
|
|
89
|
+
files: '.env'
|
|
90
|
+
|
|
91
|
+
myApp:
|
|
92
|
+
files: './src/*.js'
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Notes
|
|
96
|
+
|
|
97
|
+
- `loadEnv` is built into Harper — declare it in `config.yaml` only; do not install it as a separate package.
|
|
98
|
+
- The `files` value accepts either a single string, a list of strings, or a glob pattern.
|
|
99
|
+
- Without `override: true`, variables already present in the environment are never overwritten by values in `.env` files.
|
|
100
|
+
- `process.env` is shared across all Harper components in the same process, so load order in `config.yaml` determines availability.
|
|
@@ -1,70 +1,161 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: schema-design-tooling
|
|
3
|
-
description:
|
|
3
|
+
description: >-
|
|
4
|
+
Best practices for Harper schema design, including core directives and GraphQL
|
|
5
|
+
tooling configuration.
|
|
4
6
|
metadata:
|
|
5
|
-
mode:
|
|
7
|
+
mode: generate
|
|
8
|
+
sources:
|
|
9
|
+
- reference/v5/database/schema.md#Overview
|
|
10
|
+
- reference/v5/database/schema.md#Type Directives
|
|
11
|
+
- reference/v5/database/schema.md#Field Directives
|
|
12
|
+
sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819
|
|
13
|
+
inputHash: 4faa3baed7cfa854
|
|
6
14
|
---
|
|
7
15
|
|
|
8
|
-
# Schema Design
|
|
16
|
+
# Schema Design and Tooling
|
|
9
17
|
|
|
10
|
-
|
|
18
|
+
Instructions for the agent to follow when designing Harper schemas, applying core directives, and configuring GraphQL tooling.
|
|
11
19
|
|
|
12
|
-
##
|
|
20
|
+
## When to Use
|
|
13
21
|
|
|
14
|
-
|
|
22
|
+
Apply this rule when creating or modifying Harper schema files, configuring `graphqlSchema` in `config.yaml`, or deciding which directives to apply to tables and fields. Use it any time a component needs tables, indexes, primary keys, or exported endpoints defined.
|
|
15
23
|
|
|
16
|
-
|
|
24
|
+
## How It Works
|
|
17
25
|
|
|
18
|
-
|
|
19
|
-
- `@export`: Automatically generates REST and WebSocket APIs for the table.
|
|
20
|
-
- `@table(expiration: Int)`: Configures a time-to-expire for records in the table (useful for caching).
|
|
26
|
+
1. **Create a GraphQL schema file** with Harper-specific directives. Name it (e.g., `schema.graphql`) and place it in your component directory.
|
|
21
27
|
|
|
22
|
-
|
|
28
|
+
```graphql
|
|
29
|
+
type Dog @table {
|
|
30
|
+
id: Long @primaryKey
|
|
31
|
+
name: String
|
|
32
|
+
breed: String
|
|
33
|
+
age: Int
|
|
34
|
+
}
|
|
23
35
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
36
|
+
type Breed @table {
|
|
37
|
+
id: Long @primaryKey
|
|
38
|
+
name: String @indexed
|
|
39
|
+
}
|
|
40
|
+
```
|
|
27
41
|
|
|
28
|
-
|
|
42
|
+
2. **Register the schema in `config.yaml`** using the `graphqlSchema` plugin key:
|
|
29
43
|
|
|
30
|
-
|
|
44
|
+
```yaml
|
|
45
|
+
graphqlSchema:
|
|
46
|
+
files: 'schema.graphql'
|
|
47
|
+
```
|
|
31
48
|
|
|
32
|
-
|
|
49
|
+
Both plugins and applications can specify schemas this way.
|
|
33
50
|
|
|
34
|
-
|
|
51
|
+
3. **Mark every table type with `@table`**. The type name becomes the table name by default. Use optional arguments to override behavior:
|
|
35
52
|
|
|
36
|
-
|
|
53
|
+
| Argument | Type | Default | Description |
|
|
54
|
+
| -------------- | --------- | ----------------------------- | ------------------------------------------------------------- |
|
|
55
|
+
| `table` | `String` | type name | Override the table name |
|
|
56
|
+
| `database` | `String` | `"data"` | Database to place the table in |
|
|
57
|
+
| `expiration` | `Int` | — | Seconds until a record goes stale |
|
|
58
|
+
| `eviction` | `Int` | `0` | Additional seconds after `expiration` before physical removal |
|
|
59
|
+
| `scanInterval` | `Int` | `(expiration + eviction) / 4` | Seconds between eviction scans |
|
|
60
|
+
| `replicate` | `Boolean` | `true` | Enable replication of this table |
|
|
37
61
|
|
|
38
|
-
|
|
62
|
+
4. **Designate a primary key on every table** using `@primaryKey`. Primary keys must be unique; duplicate-key inserts are rejected. If no key is provided on insert, Harper auto-generates one:
|
|
63
|
+
- `String` or `ID` → UUID string
|
|
64
|
+
- `Int`, `Long`, or `Any` → auto-incrementing integer
|
|
39
65
|
|
|
40
|
-
|
|
66
|
+
Prefer `Long` or `Any` for auto-generated numeric keys; `Int` is 32-bit and may be insufficient for large tables.
|
|
41
67
|
|
|
42
|
-
|
|
68
|
+
5. **Index fields that need fast querying** with `@indexed`. This is required for filtering by that attribute in REST queries, SQL, or NoSQL operations. If the field value is an array, each element is individually indexed.
|
|
43
69
|
|
|
44
|
-
|
|
70
|
+
```graphql
|
|
71
|
+
type Product @table {
|
|
72
|
+
id: Long @primaryKey
|
|
73
|
+
category: String @indexed
|
|
74
|
+
price: Float @indexed
|
|
75
|
+
}
|
|
76
|
+
```
|
|
45
77
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
78
|
+
6. **Expose a table as an external resource endpoint** with `@export`. This makes the table accessible via REST, MQTT, and other interfaces. The optional `name` parameter sets the URL path segment; without it, the type name is used.
|
|
79
|
+
|
|
80
|
+
```graphql
|
|
81
|
+
type MyTable @table @export(name: "my-table") {
|
|
82
|
+
id: Long @primaryKey
|
|
83
|
+
}
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
7. **Restrict extra properties** with `@sealed` when records must not include attributes beyond those declared. By default, Harper allows additional properties.
|
|
87
|
+
|
|
88
|
+
```graphql
|
|
89
|
+
type StrictRecord @table @sealed {
|
|
90
|
+
id: Long @primaryKey
|
|
91
|
+
name: String
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
8. **Configure expiration, eviction, and scan behavior** together when building caching tables. These three arguments control the full record lifecycle:
|
|
96
|
+
- `expiration` — record becomes stale; next request triggers a source fetch
|
|
97
|
+
- `eviction` — additional time after `expiration` before physical removal
|
|
98
|
+
- `scanInterval` — how often Harper scans for records to evict; clock-aligned, not startup-aligned
|
|
99
|
+
|
|
100
|
+
## Examples
|
|
101
|
+
|
|
102
|
+
**Caching table with tuned expiration:**
|
|
103
|
+
|
|
104
|
+
```graphql
|
|
105
|
+
# Expire after 5 minutes, evict after 1 hour, scan every 10 minutes
|
|
106
|
+
type WeatherCache @table(expiration: 300, eviction: 3300, scanInterval: 600) {
|
|
107
|
+
id: ID @primaryKey
|
|
108
|
+
temperature: Float
|
|
109
|
+
}
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
**Table in a named database with expiration and an indexed field:**
|
|
113
|
+
|
|
114
|
+
```graphql
|
|
115
|
+
type Event @table(database: "analytics", expiration: 86400) {
|
|
116
|
+
id: Long @primaryKey
|
|
117
|
+
name: String @indexed
|
|
118
|
+
}
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
**Session cache with auto-expiry:**
|
|
122
|
+
|
|
123
|
+
```graphql
|
|
124
|
+
type Session @table(expiration: 3600) {
|
|
125
|
+
id: Long @primaryKey
|
|
126
|
+
userId: String
|
|
127
|
+
}
|
|
51
128
|
```
|
|
52
129
|
|
|
53
|
-
|
|
130
|
+
**Table with audit timestamps:**
|
|
54
131
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
132
|
+
```graphql
|
|
133
|
+
type Order @table @export(name: "orders") {
|
|
134
|
+
id: Long @primaryKey
|
|
135
|
+
createdAt: Long @createdTime
|
|
136
|
+
updatedAt: Long @updatedTime
|
|
137
|
+
status: String @indexed
|
|
138
|
+
}
|
|
139
|
+
```
|
|
58
140
|
|
|
59
|
-
|
|
141
|
+
**Overriding the table name and disabling replication:**
|
|
60
142
|
|
|
61
|
-
|
|
143
|
+
```graphql
|
|
144
|
+
type Product @table(table: "products") {
|
|
145
|
+
id: Long @primaryKey
|
|
146
|
+
name: String
|
|
147
|
+
}
|
|
62
148
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
├── package.json
|
|
68
|
-
├── schema.graphql
|
|
69
|
-
└── resources.js
|
|
149
|
+
type LocalRecord @table(replicate: false) {
|
|
150
|
+
id: Long @primaryKey
|
|
151
|
+
value: String
|
|
152
|
+
}
|
|
70
153
|
```
|
|
154
|
+
|
|
155
|
+
## Notes
|
|
156
|
+
|
|
157
|
+
- Use unique `database` names in plugins and applications to avoid table naming collisions, since all tables default to the `"data"` database.
|
|
158
|
+
- Eviction removes non-indexed record data but does **not** remove a record from its secondary indexes. Indexes remain functional for evicted records; Harper fetches the full record from the source on demand when a query matches an evicted record.
|
|
159
|
+
- `scanInterval` is clock-aligned to the server's local timezone. The server's startup time does not affect when eviction runs.
|
|
160
|
+
- If replication is disabled on a table and later re-enabled, it will not catch up on writes made while replication was disabled.
|
|
161
|
+
- Null values are indexed by `@indexed` fields, enabling queries such as `GET /Product/?category=null`.
|
|
@@ -2,33 +2,63 @@
|
|
|
2
2
|
name: typescript-type-stripping
|
|
3
3
|
description: How to run TypeScript files directly in Harper without a build step.
|
|
4
4
|
metadata:
|
|
5
|
-
mode:
|
|
5
|
+
mode: generate
|
|
6
|
+
sources:
|
|
7
|
+
- reference/v5/components/javascript-environment.md#TypeScript Support
|
|
8
|
+
sourceCommit: b7fbddadd42eb4487190b650a9abc4bcfeef5819
|
|
9
|
+
inputHash: 4e6bd8b610edd595
|
|
6
10
|
---
|
|
7
11
|
|
|
8
|
-
# TypeScript Type Stripping
|
|
12
|
+
# TypeScript Type Stripping in Harper
|
|
9
13
|
|
|
10
|
-
Instructions for the agent to
|
|
14
|
+
Instructions for the agent to run `.ts` files directly in Harper without a build step using Node.js's built-in type stripping.
|
|
11
15
|
|
|
12
16
|
## When to Use
|
|
13
17
|
|
|
14
|
-
|
|
18
|
+
Apply this rule when writing Harper resource files in TypeScript. Use it any time you need to reference `.ts` source files from `config.yaml` or import between local TypeScript modules in a Harper project.
|
|
15
19
|
|
|
16
20
|
## How It Works
|
|
17
21
|
|
|
18
|
-
1. **
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import { Resource } from 'harper';
|
|
23
|
-
export class MyResource extends Resource {
|
|
24
|
-
async get(): Promise<{ message: string }> {
|
|
25
|
-
return { message: 'Running TS directly!' };
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
```
|
|
29
|
-
4. **Use Explicit Extensions in Imports**: When importing other local modules, include the `.ts` extension: `import { helper } from './helper.ts'`.
|
|
30
|
-
5. **Configure `config.yaml`**: Ensure `jsResource` points to your `.ts` files:
|
|
22
|
+
1. **Ensure Node.js version**: Require Node.js 22.6 or later. Type stripping is unavailable on earlier versions.
|
|
23
|
+
|
|
24
|
+
2. **Point `jsResource` at `.ts` files**: The `jsResource` plugin loads both `.js` and `.ts` files. Set its `files` glob in `config.yaml` to target your `.ts` source files:
|
|
25
|
+
|
|
31
26
|
```yaml
|
|
32
27
|
jsResource:
|
|
33
28
|
files: 'resources/*.ts'
|
|
34
29
|
```
|
|
30
|
+
|
|
31
|
+
3. **Use explicit `.ts` extensions in local imports**: Node's loader does not resolve `'./helper'` to `'./helper.ts'`, so always include the full extension:
|
|
32
|
+
|
|
33
|
+
```typescript
|
|
34
|
+
import { helper } from './helper.ts';
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
4. **Stay within type-stripping limits**: Only type annotations and declarations are removed. Do not use enums with runtime values, namespaces with runtime semantics, or any other features that require code transformation beyond type stripping.
|
|
38
|
+
|
|
39
|
+
## Examples
|
|
40
|
+
|
|
41
|
+
A complete Harper resource written in TypeScript, using imports from the `harper` package:
|
|
42
|
+
|
|
43
|
+
```typescript
|
|
44
|
+
import { type RequestTargetOrId, Resource, tables } from 'harper';
|
|
45
|
+
|
|
46
|
+
export class MyResource extends Resource {
|
|
47
|
+
async get(target?: RequestTargetOrId): Promise<{ message: string }> {
|
|
48
|
+
return { message: 'Hello from TS' };
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Paired `config.yaml` entry loading the file via `jsResource`:
|
|
54
|
+
|
|
55
|
+
```yaml
|
|
56
|
+
jsResource:
|
|
57
|
+
files: 'resources/*.ts'
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## Notes
|
|
61
|
+
|
|
62
|
+
- No build step or transpiler is required — Harper runs `.ts` files directly.
|
|
63
|
+
- Type imports (e.g., `import { type RequestTargetOrId }`) from the `harper` package work as usual.
|
|
64
|
+
- Unsupported TypeScript features include: enums with runtime values, namespaces with runtime semantics, and anything requiring code transformation beyond simple type stripping.
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
# Phase 3 flips 7 obvious 1:1 rules to mode: generate (automatic-apis,
|
|
10
10
|
# querying-rest-apis, real-time-apps, checking-authentication, logging,
|
|
11
11
|
# deploying-to-harper-fabric, caching). All others remain synthesized.
|
|
12
|
+
# Phase 4 migrates schema-design-tooling and typescript-type-stripping to
|
|
13
|
+
# mode: generate. creating-harper-apps stays synthesized pending dedicated
|
|
14
|
+
# create-harper CLI documentation.
|
|
12
15
|
|
|
13
16
|
rules:
|
|
14
17
|
# ===========================================================================
|
|
@@ -27,7 +30,23 @@ rules:
|
|
|
27
30
|
category: schema
|
|
28
31
|
priority: 1
|
|
29
32
|
order: 2
|
|
30
|
-
mode:
|
|
33
|
+
mode: generate
|
|
34
|
+
sources:
|
|
35
|
+
- path: reference/v5/database/schema.md
|
|
36
|
+
section: 'Overview'
|
|
37
|
+
role: primary
|
|
38
|
+
- path: reference/v5/database/schema.md
|
|
39
|
+
section: 'Type Directives'
|
|
40
|
+
role: primary
|
|
41
|
+
- path: reference/v5/database/schema.md
|
|
42
|
+
section: 'Field Directives'
|
|
43
|
+
role: primary
|
|
44
|
+
must_cover:
|
|
45
|
+
- '@table'
|
|
46
|
+
- '@export'
|
|
47
|
+
- '@primaryKey'
|
|
48
|
+
- '@indexed'
|
|
49
|
+
- 'graphqlSchema'
|
|
31
50
|
|
|
32
51
|
- rule: defining-relationships
|
|
33
52
|
description: How to define and use relationships between tables in Harper using GraphQL.
|
|
@@ -178,7 +197,16 @@ rules:
|
|
|
178
197
|
category: logic
|
|
179
198
|
priority: 3
|
|
180
199
|
order: 4
|
|
181
|
-
mode:
|
|
200
|
+
mode: generate
|
|
201
|
+
sources:
|
|
202
|
+
- path: reference/v5/components/javascript-environment.md
|
|
203
|
+
section: 'TypeScript Support'
|
|
204
|
+
role: primary
|
|
205
|
+
must_cover:
|
|
206
|
+
- '.ts'
|
|
207
|
+
- 'jsResource'
|
|
208
|
+
- 'Node.js 22.6'
|
|
209
|
+
- 'type stripping'
|
|
182
210
|
|
|
183
211
|
- rule: caching
|
|
184
212
|
description: How to implement integrated data caching in Harper from external sources.
|
|
@@ -256,3 +284,19 @@ rules:
|
|
|
256
284
|
- 'console.log'
|
|
257
285
|
- 'logger'
|
|
258
286
|
- 'withTag('
|
|
287
|
+
|
|
288
|
+
- rule: load-env
|
|
289
|
+
description: How to load environment variables from .env files into a Harper application using the loadEnv plugin.
|
|
290
|
+
category: ops
|
|
291
|
+
priority: 4
|
|
292
|
+
order: 6
|
|
293
|
+
mode: generate
|
|
294
|
+
sources:
|
|
295
|
+
- path: reference/v5/environment-variables/overview.md
|
|
296
|
+
role: primary
|
|
297
|
+
must_cover:
|
|
298
|
+
- 'loadEnv'
|
|
299
|
+
- 'files'
|
|
300
|
+
- 'process.env'
|
|
301
|
+
- 'override'
|
|
302
|
+
- 'config.yaml'
|