Skip to main content

setup-my-iq

Create, set up, or update the personal context portfolio: structured markdown files describing who you are, how you work, your teams, and your tool/ADO configuration. Runs the interview workflow for first-time setup and targeted edits for updates. Trigger this skill when the user asks to: set up their context, create or update their context portfolio, "create my IQ", "set up my IQ", edit their profile, add/remove a stakeholder, update ADO config, change team info, update pillars, or set up any plugin configuration. Trigger when another skill fails to find context (missing files or TODO markers) and needs context populated. Also trigger when the user mentions a context change in passing (e.g., "my manager changed", "we added someone to the team") to offer a context file update. Do NOT trigger for read-only questions like "who's on my team?" or "what's my ADO config?". Those are answered directly from the context files referenced in the loaded custom instructions; no skill is needed.

跳到安装

来源信息

仓库
github/awesome-copilot
最近来源活动
2026年6月16日 01:50
检测到的 SKILL.md 语言
英语
星标
39,255
分支
4,987

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
8 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
setup-my-iq
description
Create, set up, or update the personal context portfolio: structured markdown files describing who you are, how you work, your teams, and your tool/ADO configuration. Runs the interview workflow for first-time setup and targeted edits for updates. Trigger this skill when the user asks to: set up their context, create or update their context portfolio, "create my IQ", "set up my IQ", edit their profile, add/remove a stakeholder, update ADO config, change team info, update pillars, or set up any plugin configuration. Trigger when another skill fails to find context (missing files or TODO markers) and needs context populated. Also trigger when the user mentions a context change in passing (e.g., "my manager changed", "we added someone to the team") to offer a context file update. Do NOT trigger for read-only questions like "who's on my team?" or "what's my ADO config?". Those are answered directly from the context files referenced in the loaded custom instructions; no skill is needed.
# Setup My IQ: Create and Update Context Portfolio Create and maintain the personal context portfolio: a set of structured markdown files that represent who you are, how you work, and what matters to you. The files can live anywhere on disk (OneDrive folder, a git repo, a local directory, etc.). What ties them into the agent is a pointer in one of the user's custom instructions files (`AGENTS.md`, `copilot-instructions.md`, `CLAUDE.md`, or any `*.instructions.md` that the host loads into the session). ## How This Skill Works When invoked, determine the current state and take the right action. ### Discovering existing context Scan the session for references to the files this skill creates. The host has already merged all relevant custom instructions files into the session: `AGENTS.md` (workspace or user-scope), `copilot-instructions.md`, `CLAUDE.md`, any `*.instructions.md` file, and similar host-specific equivalents. It doesn't matter which file the pointer came from, just look for the filenames: - `identity.md` - `role-and-responsibilities.md` - `team.md` - `tools-systems-and-config.md` - `communication-style.md` - `preferences-and-constraints.md` For each, find an `@<absolute-path>` (or equivalent path reference) anywhere in the loaded instruction text. That's the file's location. Don't rely on the label or variable name next to the path: users may name pointers differently (`identityProfile`, `me`, `who-i-am`, etc.). Match on the filename at the end of the path. For each filename, classify as: - **NOT REFERENCED** — no path to this filename is loaded in the session. - **REFERENCED, FILE MISSING** — a path is loaded but the file doesn't exist on disk. - **PRESENT** — path is loaded and the file exists. Read it to check for placeholders. If the six filenames are in mixed states, handle them in this priority order: first create any NOT REFERENCED files via the interview, then fill REFERENCED, FILE MISSING entries, then fix incomplete fields in PRESENT files. Summarize the combined state to the user before starting so they know what to expect. Concrete example. Suppose `identity.md` and `team.md` are PRESENT and complete, `tools-systems-and-config.md` is PRESENT but has TODO placeholders in the ADO section, `role-and-responsibilities.md` and `communication-style.md` are REFERENCED but the files don't exist on disk, and `preferences-and-constraints.md` is NOT REFERENCED. The skill should tell the user: "You have identity and team done. Tools-config has gaps. Role and communication-style are referenced but missing. Preferences isn't set up at all. I'll interview you for preferences first, then create role and communication-style, then fill the gaps in tools-config. OK?" ### 1. No context files referenced None of the expected filenames appear anywhere in the loaded instructions. Treat this as first-time setup. Run **First-Time Setup** below. ### 2. Some files referenced but missing on disk The user started setup previously and didn't finish, or paths exist without files behind them. **Resume where they left off:** - List which files exist and which are missing. - Tell the user: "You have {existing files}. Still need: {missing files}. Want to pick up where you left off?" - When choosing the next file to interview for, the priority order from *Discovering existing context* still applies. Within a tie, use this default sequence: identity -> role -> team -> tools -> communication-style -> preferences-and-constraints. ### 3. Files exist but have incomplete fields Files exist but some contain unfilled placeholder values. **Fill gaps:** - Scan all referenced files for any of these incomplete-field patterns: - `<!-- TODO -->` — explicit placeholder - HTML comments of the form `<!-- ... -->` used as stand-in values (e.g., `<!-- your name -->`, `<!-- org name -->`, `<!-- manager name -->`) - Any table cell or field whose only content is an HTML comment - List the gaps: "I found incomplete fields in {files}. Want to fill them in?" - For each gap, ask the specific question for that field (not the full interview). - Update the file in place with the user's answer. ### 4. Files are complete, user wants to update The user asked to change something, or mentioned a context change in passing (e.g., "my manager changed", "we hired someone new", "I moved to a different team"). **Targeted update:** - If the user mentioned the change in passing during another task, offer: "It sounds like your {file} may need updating. Want me to fix that now?" - If the user explicitly asked, proceed directly. - Read the file from the path resolved in *Discovering existing context*. - Make the edit and confirm with the user. ### 5. Files are complete, user wants a full refresh The user wants to redo a file from scratch. Re-run the interview for that specific file following the same steps as first-time setup. --- ## First-Time Setup All `assets/...` paths in this skill are relative to this SKILL.md's directory. Use your file-read tool to load the bundled templates from those paths. If for some reason a template isn't readable, fall back to the field structure shown in the example walkthrough at the bottom of this file. ### 1. Choose context directory Ask: "Where should your context files live? Anywhere persistent works: a synced cloud folder (OneDrive, Dropbox, iCloud), a local directory, or a git repo. Just pick a path you can find again later." - Create the directory if it doesn't exist. - Store the path for later steps. - On macOS or Linux, suggest `~/my-iq-context` or `~/OneDrive/my-iq-context` as defaults. Substitute `$HOME` for `%USERPROFILE%` in any path the skill produces later. ### 2. Begin the interview Introduce the process: "I'm going to interview you and produce your personal context portfolio: a set of markdown files that represent who you are, how you work, and what matters to you. Any AI skill, agent, or plugin can read these files and immediately understand what it's working with. We'll go one file at a time. I'll ask you questions, draft the file, and then ask you to tell me what I got wrong. You can skip any file you don't want right now. Ready to start?" ### 3. Pre-fill factual fields from available data sources **This step is MANDATORY before asking any interview questions.** Do not skip it, even if you expect it to return nothing. Before asking the user anything, attempt to gather factual data from whatever connected sources your environment provides. The user should never have to type information a connected system already knows. **What to look for (per file):** | File | Factual fields to pre-fill | |------|---------------------------| | `identity.md` | Name, role/title, organization, team, manager | | `role-and-responsibilities.md` | Teams supported, cadences (from calendar), reporting line | | `team.md` | Direct reports, frequent collaborators, org chart data | | `tools-systems-and-config.md` | ADO org/project/team/area path, repos, tools in use | | `communication-style.md` | Writing samples from mail/docs (ask permission first) | | `preferences-and-constraints.md` | No pre-fill (these are subjective boundaries) | **How to execute:** 1. Check what data sources are available in your environment (work profile, directory, calendar, ADO, mail, etc.). Use only sources already authorized. 2. Query them for the relevant factual fields for the file you're about to interview for. 3. Present findings as a proposal: "I pulled some information from your work profile. Here's what I found -- confirm or correct before we continue." 4. Mark each value as auto-filled so the user knows what came from a system vs. what you're asking them to provide. 5. Only after the pre-fill proposal is confirmed (or if no sources are available), proceed to ask the remaining questions. **If no data sources are available:** State that explicitly ("I don't have access to a work profile or directory in this environment, so I'll ask you directly") and proceed to the interview questions. Do not silently skip this step. See the full rules and constraints in the *Pre-fill from available data sources before asking* section under Interview Rules. ### 4. Interview for identity.md Load the template from `assets/templates/identity.md` in this skill bundle for the file structure. **First: apply step 3 (pre-fill).** Query available sources for name, role, org, team, and manager. Present any findings for confirmation. Then proceed to the questions below for fields not covered by pre-fill. Open-ended questions to ask (these always need the user): - If you had to explain what you actually do to someone at a dinner party, what would you say? - What do people come to you for? Factual questions to ask only if pre-fill didn't cover them: - What's your name and current role? - What organization or company are you with? - What team are you on? - Who's your manager? Once you have enough to draft (don't keep asking past that point), draft the file. Present it with the reaction pass (see Interview Rules below). Revise, then write to the context directory. Transition: "That's identity done. Next is role-and-responsibilities, which captures what your weeks actually look like. Ready?" ### 5. Interview for role-and-responsibilities.md Load the template from `assets/templates/role-and-responsibilities.md`. **First: apply step 3 (pre-fill).** Query available sources for teams supported, recurring calendar cadences, and reporting line. Present any findings for confirmation before asking questions. Key questions: - Walk me through a typical week. What are the recurring things? - What teams or groups do you support? - For each team: what are you accountable for? What cadences do you run? - What decisions do you make regularly? Not big strategic ones, the routine ones. - What do you produce? Reports, emails, dashboards? - Who do you report to? - Are there monthly or quarterly rhythms that shape your work? Once you have enough to draft, draft. Organize by team: each team gets its own section with responsibilities, cadences, and deliverables. Present, revise, write. Transition: "That's role-and-responsibilities done. Next is team, which covers the key people in your work life. Ready?" ### 6. Interview for team.md Load the template from `assets/templates/team.md`. **First: apply step 3 (pre-fill).** Query available sources for direct reports, org chart, frequent collaborators (from calendar/chat). Present any findings for confirmation before asking questions. Key approach: - Who are the people you interact with most? Start with your own team. - Ask for team rosters (the user may paste email lists) - For each team, identify the lead and hierarchy - For key people: what do they need from you, what do you need from them? - Capture focus areas or pillars per person where known - Note interaction patterns (1:1s, scrums, syncs) - Is there anything an agent should know about working with or preparing for interactions with specific people? Use information from earlier files. If they mentioned collaborators during the roles interview, reference them here rather than re-asking. Draft, present, revise, write. Transition: "That's team done. Last one: tools, systems, and configuration. This is where we capture how everything is set up. Ready?" ### 7. Interview for tools-systems-and-config.md Load the template from `assets/templates/tools-systems-and-config.md`. **First: apply step 3 (pre-fill).** Query available sources for ADO org/project/team/area path, repos, and tool configuration. Present any findings for confirmation before asking questions. Key questions: - What tools and platforms do you use daily? - How do you organize meeting notes? Where do they live? - What tags or patterns classify your meetings by type and by team? Then for each workstream/team the user supports (use information from the role-and-responsibilities interview): If the user supports more than three workstreams, ask first whether they want to configure all of them now or start with the most important one or two and add the rest later. For similar workstreams, ask if the same config applies and only interview for differences. - Does this workstream use Azure DevOps? If yes: what org, project, team, area path? If no, skip the ADO section for this workstream. - (ADO workstreams only) Are there work item title patterns to exclude from sprint scorecards? (e.g., estimation or review placeholder items) - What are the strategic pillars or sections for this workstream? These are used as grouping headers in weekly updates and sprint reports. Define them even if the workstream doesn't use ADO. - For ADO workstreams: which ADO Epics map to each pillar? - Where do sprint updates get saved? What file prefix? - Where do weekly updates get saved? What file prefix? - Is there a roadmap file for this workstream? Organize with common settings at top, workstream-specific config in sections below. Draft, present, revise, write. Transition: "That's tools and config done. Next is communication style, so any agent writing on your behalf can sound like you. Ready?" ### 8. Interview for communication-style.md Load the template from `assets/templates/communication-style.md`. This section is harder than the others. People describe their own voice in clichés. Two stronger paths: ask about negatives, and offer to analyze real writing samples. Use both. Start by offering the samples path: > "Want to share a few samples of your real writing? Paste 2 to 5 things > you've sent: weekly status updates, leadership emails, Loop updates, a > review entry, a Teams message you're proud of. I'll read them, extract > the voice traits I see, and propose what should go in your file. You > approve before anything gets written. I won't copy the raw content, > only the style patterns." If the user shares samples: - Read each sample for style only: register, sentence length, openings, transitions, specific words used or avoided, framing patterns, how they handle credit, how they handle bad news. - Do not copy raw sample text into the file. Extract patterns and present them back as proposed bullets in the file's structure. - Present the proposed draft: "Here's what I extracted. Tell me what's wrong or missing." - Apply the reaction pass as normal. If the user doesn't share samples (or in addition to them), ask these questions one at a time: 1. "If a colleague described how you write in one sentence, what would they say?" 2. "Read this sentence: *'I'd encourage you to lean into the opportunity to be a genuine force multiplier for the team.'* What's wrong with it for your voice?" (Surfaces the avoid-list faster than positive questions.) 3. "When you write a weekly status to leadership, what do you wish you could automate, and what do you always end up rewriting?" 4. "Who's the hardest audience for you to write to? What changes when you write to them?" 5. "When you write about yourself in a Connect or performance review, what's a phrase you've caught yourself writing and immediately deleted?" Draft, present, revise, write. After writing, tell the user: > "I won't automatically pick up on patterns over time. If you notice me > repeating a mistake, swapping phrases, or fighting your edits, ask me to > update this file and I'll fold the correction in. This file evolves when > you tell it to." Transition: "Last one: preferences and constraints. This is how you want AI to behave around you. Ready?" ### 9. Interview for preferences-and-constraints.md Load the template from `assets/templates/preferences-and-constraints.md`. Most rules here are about what an agent shouldn't do unilaterally. Surface them by recalling concrete frustrations rather than asking for abstract rules. Ask one question at a time: 1. "When was the last time an AI tool did something you didn't want? What did it do, and what should it have done instead?" (One answer often produces 3 boundary rules.) 2. "What's safe for an agent to do without asking you? What absolutely requires your approval?" 3. "Speed or thoroughness. If you had to pick one, which?" 4. "Are there any decisions you want AI to make for you, or do you always want options surfaced?" 5. "Where do you not want an AI speaking on your behalf?" (Teams, email, meetings, public chats.) 6. "Do you use any tool with persistent memory (VS Code session memory, an agent memory feature, etc.)? If yes, anything you want stored there, or specifically not stored there?" Skip the memory section if the answer is no. Draft, present, revise, write. Apply the reaction pass. Transition: "That's the interview done. Now I'll wire the files into your custom instructions so every agent can find them." ### 10. Wire the files into a custom instructions file Add pointer entries to one of the user's custom instructions files so other skills and agents can find the new files. **Recommend user scope, not workspace scope.** The whole point of this context is that it's available everywhere, not tied to one repo. Quick map: 10a detect harnesses, 10b pick the target file, 10c (only if more than one harness) offer to symlink them to a canonical file, 10d write the pointers using the bundled template. On macOS or Linux, every command and path below has a POSIX equivalent. Substitute `$HOME` for `%USERPROFILE%` in every path, use `ln -s <canonical-target> <harness-file>` instead of `New-Item -ItemType SymbolicLink`, and skip the Developer Mode check entirely (symlinks don't require elevation on macOS or Linux). **Step 10a. Detect which harnesses the user uses.** Check whether any of these user-scope paths exist (use the filesystem; no need to ask first): | Harness | User-scope custom instructions path | |---------|--------------------------------------| | VS Code Copilot Chat / Claude Code | `%USERPROFILE%\.claude\CLAUDE.md` | | GitHub Copilot CLI | `%USERPROFILE%\.copilot\copilot-instructions.md` | VS Code Copilot Chat does not natively read `%USERPROFILE%\.agents\AGENTS.md`, but it does read `%USERPROFILE%\.claude\CLAUDE.md`, which is the same file Claude Code uses. So `.claude\CLAUDE.md` is the shared user-scope file for those two harnesses. If `%USERPROFILE%\.agents\AGENTS.md` exists, treat it as the canonical target. In some setups the harness-specific files above are symlinked to it, so a single write flows to every wired-up harness. **Step 10b. Pick the target.** Apply the first rule that matches: 1. If `%USERPROFILE%\.agents\AGENTS.md` exists, default to it. The harness-specific files are symlinks to it, so a single write flows to every wired-up harness. Confirm with the user before writing. 2. Else if exactly one harness-specific file exists, propose writing to it. Confirm. Also mention the canonical-plus-symlink option in step 10c. 3. Else if both harness-specific files exist (`copilot-instructions.md` and `CLAUDE.md`), list them and ask which to update. Strongly recommend creating `.agents\AGENTS.md` as the canonical file and symlinking the others to it so a single edit reaches all harnesses (step 10c). 4. Else (no user-scope custom instructions files exist anywhere), ask: "Which AI harness do you use most: VS Code Copilot Chat, Claude Code, GitHub Copilot CLI, something else?" Then create the matching user-scope file (`.claude\CLAUDE.md` for the first two, `.copilot\copilot-instructions.md` for Copilot CLI) with a `## Personal Context` section. If the user explicitly asks for workspace scope instead, write to `<workspace>\AGENTS.md` and tell them the trade-off: it only applies to that repo. **Step 10c. Offer to symlink other harnesses to the canonical file.** Only relevant when the user has (or wants) more than one harness. Ask: "Want me to make `%USERPROFILE%\.agents\AGENTS.md` the canonical file and symlink your other harness files to it? That way you edit once and every harness sees the change." If yes, for each other harness file the user wants linked: 1. **Prerequisites.** File symlinks on Windows need either Developer Mode enabled or an elevated PowerShell. Check Developer Mode with: ```powershell Get-ItemPropertyValue 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock' AllowDevelopmentWithoutDevLicense -ErrorAction SilentlyContinue ``` Returns `1` if Dev Mode is on. If it isn't, offer the user two options and let them pick:
在 GitHub 查看
这个 SKILL.md 很大,SkillsMP 这里只预览前一段内容。 在 GitHub 查看