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

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Samva Integrations
# Samva

Open-source packages, examples, and cookbooks for integrating
Open-source packages, examples, cookbooks, and agent plugins for integrating
[Samva](https://samva.dev) into real applications.

Use these to send transactional email, connect auth email flows, work with
Expand Down
2 changes: 1 addition & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ token, so publish would never start.
Authentication is npm trusted publishing (OIDC). The workflow sets
`id-token: write` and does not use an `NPM_TOKEN`. Each public package on
npmjs.com must list GitHub Actions trusted publisher
`AryaLabsHQ/samva-integrations` with workflow filename `publish.yml` and no
`SamvaHQ/samva` with workflow filename `publish.yml` and no
environment name. Do not rename `publish.yml`; npm pins that filename.

This repository is public, so npm attaches provenance attestations to trusted
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "samva-integrations",
"name": "samva",
"version": "0.0.0",
"private": true,
"description": "Open-source integration packages and examples for Samva.",
Expand Down
4 changes: 2 additions & 2 deletions packages/better-auth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
],
"homepage": "https://samva.dev",
"bugs": {
"url": "https://github.com/AryaLabsHQ/samva-integrations/issues"
"url": "https://github.com/SamvaHQ/samva/issues"
},
"license": "MIT",
"author": "Arya Labs, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/AryaLabsHQ/samva-integrations.git",
"url": "git+https://github.com/SamvaHQ/samva.git",
"directory": "packages/better-auth"
},
"files": [
Expand Down
4 changes: 2 additions & 2 deletions packages/email-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
],
"homepage": "https://samva.dev",
"bugs": {
"url": "https://github.com/AryaLabsHQ/samva-integrations/issues"
"url": "https://github.com/SamvaHQ/samva/issues"
},
"license": "MIT",
"author": "Arya Labs, Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/AryaLabsHQ/samva-integrations.git",
"url": "git+https://github.com/SamvaHQ/samva.git",
"directory": "packages/email-sdk"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion plugins/samva/.codex-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Integrate and operate Samva email with the canonical hosted MCP server and Samva agent skill.",
"author": { "name": "Arya Labs, Inc.", "url": "https://samva.dev" },
"homepage": "https://samva.dev/docs/developers/mcp",
"repository": "https://github.com/AryaLabsHQ/samva-integrations",
"repository": "https://github.com/SamvaHQ/samva",
"license": "MIT",
"keywords": ["samva", "email", "mcp", "agent-skills", "transactional-email"],
"skills": "./skills/",
Expand Down
2 changes: 1 addition & 1 deletion plugins/samva/.cursor-plugin/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"description": "Operate Samva email through its hosted MCP server and canonical agent skill.",
"author": { "name": "Arya Labs, Inc." },
"homepage": "https://samva.dev/docs/developers/mcp",
"repository": "https://github.com/AryaLabsHQ/samva-integrations",
"repository": "https://github.com/SamvaHQ/samva",
"license": "MIT",
"logo": "./assets/icon.png",
"keywords": ["samva", "email", "mcp", "agent-skills", "transactional-email"],
Expand Down
2 changes: 1 addition & 1 deletion plugins/samva/docs/verification.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ customer result.

## Automated package conformance

Run from the `samva-integrations` repository root:
Run from the `Samva` repository root:

```bash
bun run validate:agent-plugin
Expand Down
6 changes: 3 additions & 3 deletions scripts/tegami.mts
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import { tegami, type TegamiPlugin } from "tegami";
import { runCli } from "tegami/cli";
import { github } from "tegami/plugins/github";

const REPOSITORY = "AryaLabsHQ/samva-integrations";
const REPOSITORY = "SamvaHQ/samva";
const publicNames = new Set(["@samva/better-auth", "@samva/email-sdk"]);

const releaseChecks = (): TegamiPlugin => ({
name: "samva-integrations-release-checks",
name: "samva-release-checks",
enforce: "pre",
async afterPreflight({ plan }) {
const shouldPublish = [...plan.packages.entries()].some(
Expand All @@ -44,7 +44,7 @@ const releaseChecks = (): TegamiPlugin => ({
});

const paper = tegami({
ignore: ["samva-integrations", /^@samva-examples\//],
ignore: ["samva", /^@samva-examples\//],
npm: {
client: "bun",
updateLockFile: true,
Expand Down
Loading