Refactor: Update connector file paths to use connectors/#24
Refactor: Update connector file paths to use connectors/#24CameronCarlin merged 1 commit intomainfrom
connectors/#24Conversation
This commit updates the file paths for connector configurations from `src/configs/<provider>/` to `connectors/<provider>/` across various documentation and plugin skill files. This change standardizes the location of connector files and improves the project's organization.
There was a problem hiding this comment.
Pull request overview
This PR standardizes documentation and Claude plugin skill instructions to reference the connectors/<provider>/ directory (instead of the legacy src/configs/<provider>/) for connector configuration files, aligning guidance with the repo’s current layout.
Changes:
- Updated CLI command examples and workflow docs to use
connectors/<provider>/...paths. - Updated both
stackone-unified-builderandstackone-connector-builderplugin skill/references docs to point atconnectors/. - Adjusted metadata (
info.title,info.key) in the BambooHR example connector.
Reviewed changes
Copilot reviewed 17 out of 17 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| examples/bamboo-hr/bamboo-hr.connector.s1.yaml | Updates BambooHR example connector metadata (title/key). |
| CLAUDE.md | Repoints workflow and validation instructions from src/configs/ to connectors/. |
| .claude/plugins/stackone-unified-builder/skills/validate-connector/SKILL.md | Updates validation instructions to use connectors/ paths. |
| .claude/plugins/stackone-unified-builder/skills/test-connector/SKILL.md | Updates testing instructions and git add path to connectors/. |
| .claude/plugins/stackone-unified-builder/skills/stackone-unified-builder/SKILL.md | Updates outputs/session examples to use connectors/ paths. |
| .claude/plugins/stackone-unified-builder/skills/map-fields/SKILL.md | Updates partial/main YAML file paths to connectors/. |
| .claude/plugins/stackone-unified-builder/skills/check-connector/SKILL.md | Updates pull/scaffold verification and session connector_path to connectors/. |
| .claude/plugins/stackone-unified-builder/references/connector-patterns.md | Updates file structure reference to connectors/<provider>/. |
| .claude/plugins/stackone-unified-builder/references/cli-commands.md | Updates CLI command reference outputs/paths to connectors/. |
| .claude/plugins/stackone-unified-builder/README.md | Updates plugin README to describe connectors/<provider>/ output and requirements. |
| .claude/plugins/stackone-connector-builder/skills/validate-connector/SKILL.md | Updates validation/manual review references to connectors/. |
| .claude/plugins/stackone-connector-builder/skills/stackone-connector-builder/SKILL.md | Updates build step/session example to use connectors/. |
| .claude/plugins/stackone-connector-builder/skills/setup-connector/SKILL.md | Updates setup instructions and session connector_path to connectors/. |
| .claude/plugins/stackone-connector-builder/skills/configure-auth/SKILL.md | Updates auth configuration instructions to read from connectors/. |
| .claude/plugins/stackone-connector-builder/skills/build-config/SKILL.md | Updates partial/main YAML locations to connectors/. |
| .claude/plugins/stackone-connector-builder/references/connector-patterns.md | Updates file structure reference to connectors/<provider>/. |
| .claude/plugins/stackone-connector-builder/references/cli-commands.md | Updates CLI command reference outputs/paths to connectors/. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| title: BambooHR | ||
| key: bamboo-hr |
There was a problem hiding this comment.
This PR is described as a path refactor (moving references from src/configs/ to connectors/), but this hunk also changes the example connector's info.title and info.key. If this is intentional, please update the PR title/description to reflect the behavior change; otherwise, consider reverting these metadata changes to keep the PR scoped to path updates.
This commit updates the file paths for connector configurations from
src/configs/<provider>/toconnectors/<provider>/across various documentation and plugin skill files. This change standardizes the location of connector files and improves the project's organization.