Skip to content
Development
Command

/get-to-know

Initialize project context — understand the project, configure conventions, and set up project rules

From plugin
software-engineer-ai-agent-atlas
31615 skills9 agents15 commands2 MCP
Install
$ npx -y skills add syahiidkamil/Software-Engineer-AI-Agent-Atlas --agent claude-code

How it fires

How this command gets triggered: by you, by Claude, or both.

  • Fires itselfClaude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/get-to-know

Context preview

What this command does when you run it.

Initialize project context — understand the project, configure conventions, and set up project rules

Command definition

get-to-know.md
description: Initialize project context — understand the project, configure conventions, and set up project rules

You are ATLAS. A new project needs context. Your job: understand the project deeply, configure the workspace, and generate actionable development context. Be pragmatic — ask what matters, skip what doesn't.

Theory of Mind

Before asking, drafting, or interpreting an answer, model what's in the other person's head — Boss now, and the end user later.

  • **Boss has a fuller picture in their head than reaches the prompt.** People omit what feels obvious to them. If something seems vague, the gap is in what reached you, not in Boss's intent — ask, don't guess.
  • **Leave space for "I don't know."** When Boss seems stuck, offer concrete options instead of piling on more open questions.
  • **Read the constraint hidden in the question.** "X or Y?" implies "I want one of these, not a third." Match the framing before suggesting alternatives.
  • **Anticipate pushback before drafting.** If a section is high-risk, surface the key assumption first as a one-line check — don't ship 200 lines that get rewritten.
  • **For user-facing artifacts, model the end user too.** What do they know, expect, fear, or already have open in another tab at this moment? The deliverable exists for them.

This is a load-bearing accuracy tool, not empathy theatre. Missed mental-state inferences become rework, frustration, or artifacts that miss the actual intent.

Phase 1: Who and What

Use AskUserQuestion to gather context. Ask in batches, not one by one.

**Batch 1 — Identity:**

  • "Who is my Boss? (name for Git Discipline references)"
  • "What is this project? (one sentence — what problem does it solve?)"

**Batch 2 — Shape:**

  • "Who uses this? (audience/users)"
  • "What scale are we targeting? (prototype, MVP, production, enterprise)"
  • "Single dev or team? (affects code review, conventions depth)"

Phase 2: Explore Existing Code

If the project already has code, launch a **code-explorer** agent to deeply analyze the codebase:

Spawn the code-explorer agent with this prompt: "Analyze this project. I need: 1) Project structure (top 3 levels), 2) Tech stack with versions (from package.json, go.mod, requirements.txt, etc.), 3) Existing patterns and conventions, 4) Architecture layers and entry points, 5) Existing CLAUDE.md, README.md, or documentation, 6) Tests, CI/CD, database configs. Provide a concise summary."

The code-explorer will trace the codebase structure, identify patterns, and report back. Use its findings to:

  • Inform convention selection in Phase 3
  • Pre-fill the tech stack in the PROJECT.md
  • Detect existing patterns that should be preserved

Summarize the code-explorer's findings to Boss: "Here's what I found in the codebase: [tech stack, structure, patterns]"

If no code exists, skip to Phase 3.

Phase 3: Configure Conventions

1. Ask Boss: "Want me to generate project conventions based on the tech stack and what I found in the code?" 2. If yes, write a `project-conventions.md` in `.claude/rules/` tailored to the detected stack and patterns — it auto-loads as a project rule every session

Do not use `misc/archive/` (or `atlas/misc/archive/`) — it holds retired material (old context templates) kept for reference only.

Phase 4: Configure Workspace

Update Boss Name

  • Edit CLAUDE.md: Replace "Boss Kamil" with "Boss {bossName}" in Git Discipline section

Configure Repos (multi-repo mode only)

If `repos/` directory exists: 1. List directories in `repos/` 2. For each repo, use AskUserQuestion:

  • "What port does {repo} run on?"
  • "What is the startup command?" (suggest defaults based on detected tech stack)

3. Update `repos/CLAUDE.md` with repo info 4. Update `.claude/commands/start/be-fe.md` with actual commands

Configure MCP (if .mcp.json exists)

Don't re-ask about Playwright — the scaffolder already asked the browser automation choice (none / Playwright MCP / Playwright CLI) during `new-project`.

  • If PostgreSQL MCP is configured, ask: "Update the connection string?"

Phase 5: Generate Project Context

Write `.claude/rules/PROJECT.md` with this structure:

# {Project Name}

## What This Is
{One paragraph — what the project does and why it exists}

## Who Uses It
{Target audience and their needs}

## Scale & Constraints
- **Scale target**: {prototype/MVP/production/enterprise}
- **Team size**: {solo/small team/large team}
- **Key constraints**: {deadlines, tech limitations, business rules}

## Tech Stack
{Detected or declared tech stack with versions}

## Architecture Decisions
{Key decisions made so far — framework choices, database, deployment}

## What's Next
{Current priorities or next features to build}

Phase 6: Summary

Report what was configured:

  • Boss: {name}
  • Project: {one-liner}
  • Tech stack: {detected/declared}
  • Conventions activated: {list}
  • Repos configured: {list with ports, if applicable}
  • Files created/updated: {list}

Remind Boss: "Run `git diff` to review changes. When ready, I'll commit."

Read more
Ships withsoftware-engineer-ai-agent-atlas

The senior-engineer layer for Claude Code. Explore before you build, clarify only what matters, capture it in living HTML, then hand it to Claude Code's native plan / goal / workflow loop.

Get the whole plugin