
Int Project Context
- 61 installs
- 380 repo stars
- Updated July 24, 2026
- microsoft/skills-for-copilot-studio
int-project-context is a Copilot Studio shared context skill covering project structure, schema and connector lookup scripts, and skill-first YAML rules.
About
The int-project-context skill is shared background for Copilot Studio sub-agents working inside .mcs.yml agent projects. It documents the standard directory layout with agent.mcs.yml, settings, topics, actions, knowledge, variables, and child agents folders. Schema lookup runs through schema-lookup.bundle.js for search, lookup, resolve, kinds, summary, and validate commands without loading the full bot schema file. Connector lookup via connector-lookup.bundle.js lists connectors, operations, and full input-output definitions beyond what configured action YAML exposes. A skill-first rule requires invoking specialized copilot-studio skills for YAML creation, editing, validation, and testing instead of manual authoring that risks hallucinated kind values or missing fields. Key conventions cover agent discovery via Glob on agent.mcs.yml, random alphanumeric IDs, replacing _REPLACE placeholders, Power Fx expression syntax, and generative orchestration patterns when GenerativeActionsEnabled is true. Use as preloaded context when authoring or advising on Copilot Studio agent YAML projects.
- Documents Copilot Studio .mcs.yml project folder structure and file types.
- Schema lookup script commands replace loading the full bot schema file.
- Connector lookup script exposes full operation inputs and outputs.
- Skill-first rule mandates specialized copilot-studio skills over manual YAML.
- Covers agent discovery, ID generation, Power Fx, and generative orchestration.
Int Project Context by the numbers
- 61 all-time installs (skills.sh)
- Ranked #6,246 of 16,659 AI & Agent Building skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Jul 27, 2026 (Skillselion catalog sync)
int-project-context capabilities & compatibility
- Capabilities
- copilot studio project structure reference · schema lookup script command guide · connector lookup script usage · skill first yaml authoring enforcement · id generation and power fx conventions
- Use cases
- orchestration · documentation
What int-project-context says it does
ALWAYS invoke the matching skill instead of doing it manually.
npx skills add https://github.com/microsoft/skills-for-copilot-studio --skill int-project-contextAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 61 |
|---|---|
| repo stars | ★ 380 |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 24, 2026 |
| Repository | microsoft/skills-for-copilot-studio ↗ |
What is the Copilot Studio agent project layout and how should sub-agents look up schema and connectors?
Provide shared Copilot Studio project structure, schema lookup usage, connector scripts, and skill-first YAML authoring rules.
Who is it for?
Copilot Studio author and advisor sub-agents working inside .mcs.yml agent repositories.
Skip if: Skip for end-user invocations; this skill is user-invocable false shared context only.
When should I use this skill?
Preloaded when a Copilot Studio sub-agent needs project structure or schema lookup guidance.
What you get
Sub-agents follow correct project structure, schema scripts, connector lookup, and skill-first authoring conventions.
Files
Copilot Studio — Shared Project Context
You are working inside a Copilot Studio agent project. All YAML files have the .mcs.yml extension.
Project Structure
<agent-dir>/ # Auto-discover via Glob: **/agent.mcs.yml
├── agent.mcs.yml # Agent metadata (display name, schema version)
├── settings.mcs.yml # Agent settings (schemaName, GenerativeActionsEnabled, instructions)
├── topics/ # Conversation topics (AdaptiveDialog YAML files)
├── actions/ # Connector-based actions (TaskDialog YAML files)
├── knowledge/ # Knowledge sources (KnowledgeSourceConfiguration YAML files)
├── variables/ # Global variables (GlobalVariableComponent YAML files)
└── agents/ # Child agents (AgentDialog YAML files, each in its own subfolder)Schema Lookup Script
When you write new YAML files, be sure to use the schema lookup script to understand the schema, including mandatory fields, definitions, and references. The script is located at ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js, and you can use it in the terminal as follows:
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js search trigger # Search by keyword
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js lookup SendActivity # Look up a definition
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js resolve AdaptiveDialog # Resolve with $refs
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js kinds # List all valid kind values
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js summary Question # Compact overview
node ${CLAUDE_SKILL_DIR}/../../scripts/schema-lookup.bundle.js validate <file.yml> # Validate a YAML fileIf you already know the specific definition you want to look up, use lookup. If you want to explore the schema around a certain topic, use search or summary. Always check the schema before writing YAML to ensure you include all required fields and use valid values.
NEVER load the full schema file (reference/bot.schema.yaml-authoring.json) — it's too long. Always use the script above.
Connector Lookup Script
The connector lookup script is at ${CLAUDE_SKILL_DIR}/../../scripts/connector-lookup.bundle.js. Use it for any questions about connectors, actions, their inputs, and outputs:
node ${CLAUDE_SKILL_DIR}/../../scripts/connector-lookup.bundle.js list # List all connectors with operation counts
node ${CLAUDE_SKILL_DIR}/../../scripts/connector-lookup.bundle.js operations <connector> # List operations for a connector
node ${CLAUDE_SKILL_DIR}/../../scripts/connector-lookup.bundle.js operation <connector> <operationId> # Full details of one operation (inputs/outputs)
node ${CLAUDE_SKILL_DIR}/../../scripts/connector-lookup.bundle.js search <keyword> # Search operations across all connectors<connector> matches by API name (shared_office365) or partial display name (outlook).
When to use this: When you need to understand available connectors, what inputs/outputs an action has, or what operations are available. The action YAML files in the agent only show configured inputs — connector-lookup shows the full connector definition with all available inputs and outputs.
Skill-First Rule (VERY IMPORTANT)
You have access to specialized skills that handle YAML creation, editing, validation, and testing. ALWAYS invoke the matching skill instead of doing it manually. Skills contain correct templates, schema validation, and patterns. Doing it manually risks hallucinated kind: values, missing required fields, and broken YAML. Example skills include /copilot-studio:new-topic for creating new topics, /copilot-studio:add-action for adding connector actions and tools, and /copilot-studio:validate for validating YAML files.
If no skill matches, only then work manually — but always validate with /copilot-studio:validate afterward.
Key Conventions
- Agent Discovery: NEVER hardcode agent names. Always
Glob: **/agent.mcs.yml. - ID Generation: Random alphanumeric, 6-8 chars after prefix (e.g.,
sendMessage_g5Ls09). - Template `_REPLACE`: Always replace
_REPLACEplaceholder IDs with unique random IDs. - Power Fx: Expressions start with
=. String interpolation uses{}. Only use supported functions (checkint-referenceskill). - Generative Orchestration: When
GenerativeActionsEnabled: true, use topic inputs/outputs instead of hardcoded questions/messages.
Related skills
FAQ
What does int-project-context provide?
Shared Copilot Studio project layout, schema and connector lookup scripts, and skill-first YAML authoring rules.
Should I load the full bot schema file?
No. Use schema-lookup.bundle.js commands instead; the full schema file is too long to load.
Is int-project-context safe to install?
Review the Security Audits panel on this page before installing in production.