From ed12aaee484db38926079b810e3f4a3cec1bc47f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 22:30:32 +0000 Subject: [PATCH 1/2] Initial plan From 62e737badc28a617eb547e558e03945921897694 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 14 Nov 2025 22:36:11 +0000 Subject: [PATCH 2/2] Add connector scaffold for this-is-another-test - Created root connector directory structure at connector-registry/this-is-another-test/ - Added connector.json with metadata (identifier, name, category, tags, description, homepage) - Added README.md following existing connector patterns - Created assets directory with .gitkeep placeholder This scaffold follows the 514 Labs Registry structure and is ready for implementation. --- .../this-is-another-test/_meta/README.md | 13 +++++++++++++ .../this-is-another-test/_meta/assets/.gitkeep | 2 ++ .../this-is-another-test/_meta/connector.json | 9 +++++++++ 3 files changed, 24 insertions(+) create mode 100644 connector-registry/this-is-another-test/_meta/README.md create mode 100644 connector-registry/this-is-another-test/_meta/assets/.gitkeep create mode 100644 connector-registry/this-is-another-test/_meta/connector.json diff --git a/connector-registry/this-is-another-test/_meta/README.md b/connector-registry/this-is-another-test/_meta/README.md new file mode 100644 index 00000000..d51a41cd --- /dev/null +++ b/connector-registry/this-is-another-test/_meta/README.md @@ -0,0 +1,13 @@ +# this-is-another-test (connector root) + +Shared, provider-agnostic documentation and assets for the This is atest connector. + +- Name: `this-is-another-test` +- Title: This is atest +- Category: `api` +- Tags: wooo +- Homepage: https://openweathermap.org + +Provider implementations live under `{connector}/{author}/`. + +- FiveOneFour TypeScript schemas: `fiveonefour/typescript/src/schemas/index.json` diff --git a/connector-registry/this-is-another-test/_meta/assets/.gitkeep b/connector-registry/this-is-another-test/_meta/assets/.gitkeep new file mode 100644 index 00000000..a4644385 --- /dev/null +++ b/connector-registry/this-is-another-test/_meta/assets/.gitkeep @@ -0,0 +1,2 @@ +# Placeholder for assets +# This directory contains logos and other visual assets for the connector diff --git a/connector-registry/this-is-another-test/_meta/connector.json b/connector-registry/this-is-another-test/_meta/connector.json new file mode 100644 index 00000000..8ef84502 --- /dev/null +++ b/connector-registry/this-is-another-test/_meta/connector.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://schemas.connector-factory.dev/connector-root.schema.json", + "identifier": "this-is-another-test", + "name": "This is atest", + "category": "api", + "tags": ["wooo"], + "description": "fdsfsdfdsfdsfsfsdfsfsdfsdfsdfsdfsdfsdfsdf", + "homepage": "https://openweathermap.org" +}