AI-Enabled Development Playbook

Deloitte ARMY Account · US GPS DS&J

How to Use This Playbook

This playbook is organized around “I want to…” use cases, not tool names. Find the phase that matches what you’re trying to do, and follow the numbered steps in order — each phase builds on the one before it.

This playbook covers ARMY-specific access, compliance, and deployment steps. For deeper agentic-development practice — BMAD workflows, training labs, prompt library — see Deloitte’s firm-wide Agentic Software Engineering Playbook.

PhaseUse CaseOutcome
Phase 1“I want to set up my local development environment.”Working VS Code environment with supporting runtimes, plus authenticated GitHub Enterprise + Copilot access
Phase 2“I want to enable and configure my AI coding assistant.”Codex, Claude Code, or Copilot installed, authenticated, and connected to your project repo
Phase 3“I want to follow development guidelines and prompting best practices for working with AI.”Confident, reviewed use of your AI assistant — planning before building, effective prompts, and human-reviewed output
Phase 4“I want to publish my application to production.”Governed, compliant path from local prototype to deployed application

⚠️ CRITICAL SECURITY NOTE: All steps below assume you are on a Deloitte-issued laptop, connected to the Deloitte VPN, and working within the ARMY Account’s approved tool provisioning. Do not attempt any step in this guide from a personal device or off-network.


Before You Begin

⚠️ CRITICAL SECURITY NOTE: Output quality and accuracy from any AI tool is your responsibility. Review all AI-generated code and content before it leaves your local environment — nothing produced by these tools is final until it has passed human review, per GPS AI output-governance policy.


Phase 1: I want to set up my local development environment.Goal: Get your local machine and GitHub Enterprise access ready to run an AI-enabled development workflow.

Step 1 — Mac Users Only: Request Local Admin Privileges

Skip this step on Windows.

Step 2 — Install VS Code

Step 3 — Install Supporting Runtimes

These tools run in the background — you won’t interact with them directly, but AI tooling and the project repo depend on them.

ToolPurposeWindowsMac
Node.js (v20+) Runs JavaScript tooling outside the browser nodejs.orgGet Node.js → Windows Installer → when prompted, select “Deloitte Internal Support” and authenticate with SSO Same site, macOS installer; use the Privileges app first if prompted
Git Bash Linux-style terminal for Git on Windows git-scm.com (Windows tab) → download → accept GNU license → keep default component selections, ensure “Add a Git Bash Profile to Windows Terminal” is checked → for HTTPS backend, select “Use the OpenSSL Library” → Install Not required — macOS Terminal already provides Git-compatible bash
Python General-purpose scripting/automation language python.org/downloadsDownload Python install manager → Open File → Install Python Same site; installer confirms success via pop-up

Optional — BMAD-style tooling: If your team adopts BMAD-based agentic workflows (see Deloitte’s firm-wide Agentic Software Engineering Playbook), you’ll also want uv, a fast Python package manager: curl -LsSf https://astral.sh/uv/install.sh | sh (Mac/Linux) or powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" (Windows). Not required for the core setup in this playbook — Python above already covers general-purpose scripting needs.

Step 4 — Confirm Your Local IDE Environment

Your local IDE setup is on track once:

Step 5 — Request Access via the Ascend Engineering Foundation (AEF) Page

Step 6 — Retrieve Your GitHub Username

Step 7 — Authenticate and Request Copilot Access

⚠️ CRITICAL SECURITY NOTE: The GitHub Enterprise license request (Step 5) and the Copilot access request (Step 7) are two separate approvals. Holding one does not grant the other — both are required before you can use Copilot.

Troubleshooting — GitHub Enterprise

SymptomResolution
GitHub page shows a 404Confirm you’ve submitted the separate Copilot access request via AEF (not just the GitHub Enterprise license) and that it shows as granted. If neither shows granted, sign in with username_deloitte via “sign in with your provider” and retry.
Repeated sign-in prompts in VS Code (Windows)Generate a Personal Access Token (GitHub → Settings → Developer Settings → Tokens classic → Generate new token, no expiration, all scopes) → Configure SSO → Authorize for all listed orgs. Then in a Git Bash terminal, configure credential.helper manager / credential.credentialStore wincredman and store the PAT via git credential approve. Verify with two consecutive git pull calls — the second should not prompt.
Do I need to sign in at deloittegithub.com?No, not on the critical path — that’s only needed if you’re joining GitHub organizations beyond your default one. Not required for the setup in this playbook.

⚠️ CRITICAL SECURITY NOTE: Personal Access Tokens are credentials. Never commit a PAT to a repository, paste it into chat, or share it outside your own authentication flow. Store it only in your credential manager.


Phase 2: I want to enable and configure my AI coding assistant.Goal: Securely provision and configure your IDE-based AI companion, then connect it to your project repository.

Which Tool Do I Use?

You will be provisioned GitHub Copilot (everyone) plus either Codex or Claude Code — not both. Verify your provisioning before installing.

ToolPowered ByUse This If…Access Model
GitHub CopilotGPT-based inline completionYou want fast, in-flow code suggestions as you type. Tight GitHub/Azure DevOps integration.Provisioned to all pilot/ARMY participants — requires the Phase 1, Step 7 Copilot access request
CodexGPT-5 CodexYou want to build tools and automations with AI under the hood — Chat, Agent, and Agent (Full Access) modes.Pre-provisioned for most participants
Claude CodeAnthropic ClaudeYou need strong long-horizon, multi-step reasoning across your entire project folder structure to understand and fix complex code.Only if you already hold a pre-existing license — no new licenses are being issued at this time

⚠️ CRITICAL SECURITY NOTE: Do not request a Claude Code license if you don’t already have one — none are currently being provisioned. Proceed with Codex + Copilot instead.

Step 1 — Confirm Your AI Tool Access

Step 2 — Install Your AI Assistant Extension(s) in VS Code

For each tool you’re provisioned:

  1. Open VS Code → Extensions tab (left-hand icon, looks like stacked blocks).
  2. Search the exact extension name and click Install:
    • Codex (select Release Version if prompted)
    • GitHub Copilot Chat
    • Claude Code for VS Code (only if pre-provisioned)

Codex authentication:

GitHub Copilot authentication:

Claude Code authentication (pre-provisioned users only):

Step 3 — Clone the ARMY Project Repository

Step 4 — Run Guided Setup Agents

In your AI tool’s chat pane, run and answer all prompted questions for:

Once complete, ask your AI tool to write the responses to README files so future agent sessions can reference them.

Troubleshooting — AI Assistant Setup

SymptomResolution
“Couldn’t set up admin sandbox” (Codex)Click Use backup sandbox, authenticate with “Deloitte Internal Support” as the reason. Success message: “Sandbox is ready.”
GitHub icon shows “Signed out” (Copilot)Click the GitHub icon → Enable more AI featuresContinue with GitHub → complete the browser login flow.
GenAI redirect screen on claude.aiYou do not yet have Claude access — wait for the Anthropic invitation email (check junk folder).
“Claude Code process exited with code 1”Usually a corrupted Node.js install, expired session, or network/proxy block. Reinstall/repair Node.js first; if that fails, verify VPN/firewall is not blocking the connection.
PowerShell crashes during repo cloneUncheck “Always ask before opening this file” and retry. If unresolved, run PowerShell as Administrator, authenticate with “Deloitte Internal Support,” then run Set-ExecutionPolicy RemoteSigned -Scope CurrentUser before re-running the install script.

If none of the above resolves your issue: (1) ask your AI tool to help debug the exact error text, (2) post in your team’s Agentic Workspace channel with a screenshot and the step number, (3) escalate to your ARMY Account engineering POC.


Phase 3: I want to follow development guidelines and prompting best practices for working with AI.Goal: Use your AI coding assistant effectively and safely — planning before building, writing prompts that get useful results, and reviewing everything before it ships.

Note on sourcing: Unlike Phases 1, 2, and 4, this phase is not drawn from a verified ARMY Account or Deloitte-internal reference guide — it’s generic, tool-agnostic guidance reflecting common practice across Codex, Claude Code, and Copilot. Treat it as a starting point, and defer to any team- or account-specific standard your lead provides.

Step 1 — Plan Before You Build

For any task touching more than one file, or where the requirements aren’t fully pinned down, use your tool’s planning mode before it starts writing code:

Planning first surfaces bad assumptions — about which files are involved, what the existing pattern is, what “done” means — while they’re still cheap to fix.

Step 2 — Write Effective Prompts

Step 3 — Review Every AI-Generated Change

Step 4 — Know Where to Go Deeper

Phase 3 Completion Checklist


Phase 4: I want to publish my application to production.Goal: Move an application from local AI-assisted prototype to a fully governed, compliant, deployed state under Deloitte’s ARMY Account cloud and security controls.

⚠️ CRITICAL SECURITY NOTE: This phase is a governance gate, not a suggestion. Nothing built in Phase 1–3 may be deployed, exposed to a client, or connected to production data until it has cleared APM registration, PAM-governed access provisioning, and OneCloud subscription review. AI-assisted code carries the same compliance obligations as any other code.

🔧 Advanced phase — set expectations accordingly: Unlike Phases 1–3, this phase routes through multiple external teams and approval systems (APM approvers, PAM/AD teams, Cloud Engineering, pipeline reviewers). This playbook explains what each step does and who to go to — it is not a substitute for expertise in APM, PAM, or OneCloud administration, and you shouldn’t expect to complete every step solo in one sitting. Steps below are marked 🔧 Advanced where hands-on coordination with another team is the norm, not the exception.

⏱️ Time expectation: Budget days to weeks, not hours — APM approval routing, MAC entitlement approval, and Secret Server provisioning each depend on another person or team acting, not just your own effort.

Note on sourcing: Phases 1–2 above and Steps 1–3 below (APM, MAC/Secret Server, and OneCloud) are drawn directly from verified Deloitte reference guides (Agentic Desktop pilot setup guide, MAC User Guide, Secret Server User Guide and FAQs, ServiceNow KB0041744APM: How to Register a Product in APM, and Request & Relate Application Service(s), and the OneCloud Console User Guide). The OneCloud guide is explicitly written for non-US member firms — if your screens don’t match Step 3 below, contact US Hosting Services or your ARMY Account Cloud Engineering POC to confirm US-specific navigation before proceeding. Step 4 below (deployment pipelines) leads with generic, publicly-documented GitHub Actions practices — pending an ARMY Account-specific CI/CD standard, treat it as a starting template rather than settled policy. Phase 3 (development guidelines and prompting best practices) is generic guidance, not drawn from an ARMY-specific verified reference — see the sourcing note at the top of that phase.

Step 1 — Register the Application as a Product in APM 🔧 Advanced

Source: ServiceNow KB0041744 — “APM: How to Register a Product in APM, and Request & Relate Application Service(s).”

Navigation

Complete the form (sections appear conditionally based on your earlier answers — select the ? icon next to any question for inline help):

SectionKey fields to get right
Product DetailsProduct name; whether this is under evaluation/POC (fewer fields are mandatory if Yes, and status auto-sets to Under Evaluation (POC)); Product Family (select Unknown if unsure — the Portfolio Manager will fix it); Business Group; Managing Organization (DT-US/USI-DT-US require a Product Group Leader and trigger 2 approvals unless EA or FSS is selected, which requires only 1); Initial Product Status; Application Category; Service Impact; whether it stores official data/records; description; user base and anticipated user count; Business Capability.
Product Type and EnvironmentsCustom Developed vs. Purchased (Purchased adds a Vendor Details section); mobile/Android-iOS flag; hosting location — if hosted outside a Deloitte-managed environment, list every environment hosted and every environment being provisioned (Production is pre-selected unless POC, which defaults to Sandbox), plus hosting location and URL per environment; whether other member firms will use it (drives the Global Impact section); Emerging Technologies used; “Does this Product use GenAI Technology?” → Yes for this application; whether it resides on an existing platform; Limited Use flag + description.
Product OwnersTechnical Application Owner, Product Business Owner, Product Business Sponsor, Additional Contacts, and the DevHub supporting the product.
Compliance DetailsRequested Recovery Tier (auto-sets Availability Level); Client Data, Internet-Facing, PII, Sensitive/Special-Handling PII, Week 53 compliance, Government Data, and Controlled Unclassified Information (CUI) flags — CUI becomes mandatory for Government & Public Services portfolio work (relevant for ARMY Account products); Confidential/High-Risk Confidential Information flags; AAM22852 and ISQM1 GITC certification questions (mandatory only for Audit & Assurance portfolio).
Vendor Details (only if Purchased / Purchased-with-Development)Vendor name, integration type, contract end date (must not be in the past), and support-vendor details if separately supported.
Global Impact (only if other member firms will use it)US-hosted-but-globally-accessed vs. hosted in other member firms/multi-geo — these two answers are mutually exclusive and the form rejects contradictory combinations; funding/managing member firm.
CyberAuthentication method; MFA-protected flag and MFA method.
Value LeversRevenue-generating, regulatory requirement, cyber-threat-reduction, and efficiency-enabler flags.
Cookie Compliance (only if Initial Product Status = In Production)UI presence, cookies/tracking-tech usage, existing Deloitte Cookie Consent implementation, and proof-of-compliance attachment.

⚠️ CRITICAL SECURITY NOTE: Do not proceed to PAM or OneCloud provisioning on an unregistered or unapproved APM Product. Downstream teams will reject access/subscription requests that don’t trace to an approved Product ID.

Escalation: SolveIT first; if unresolved, US Contact Center at 1-800-335-6488 (1-800-DELOITTE).

Step 2 — Provision Access via Privileged Access Management (PAM) 🔧 Advanced

Deloitte’s PAM flow is two sequential systems, not one. You must complete them in order: MAC grants you the entitlement; Secret Server is where you actually retrieve the credential to use it.

StageSystemWhat it doesYou need
AMAC (Modern Access Control)Request, approve, and certify entitlement to a privileged AD group/role/accountSSO (VPN or Deloitte network)
BSecret ServerCheck out the actual privileged credential for a resource you’re already entitled to, and connectDeloitte Outlook credentials (no @deloitte.com) + MFA (Azure Authenticator) + VPN/office network

Stage A — Request the entitlement in MAC

⚠️ CRITICAL SECURITY NOTE: Do not request standing/broad AD group membership as a workaround for a narrower entitlement that doesn’t exist yet — submit a ServiceNow ticket to the AD Team (via your Product/entitlement owner) to have the correct scoped entitlement created instead.

Stage B — Check out the credential in Secret Server

Once MAC access is approved, the privileged account appears in Secret Server. To actually use it:

⚠️ CRITICAL SECURITY NOTE: Never embed MAC-granted or Secret Server-issued credentials, tokens, or secrets in source code, commit history, or AI chat prompts. Reference them exclusively via your pipeline’s approved secrets manager — Secret Server is for interactive checkout, not pipeline-time secret injection.

ProblemWhere to go
Account/secret not visible in Secret Server despite MAC approvalServiceNow → CYS-Identity and Access Management-US PAM queue
Locked out of an accountServiceNow → ITSM-AD Administration queue, or call 1-800-DELOITTE
“Invalid Credentials” in Secret ServerCheck the account’s Heartbeat status first; if still failing, file a ServiceNow ticket to CYS-Identity and Access Management-US PAM
General Secret Server feedback/questionsusitsiampam@deloitte.com
Bulk request (20+ direct reports) in MACServiceNow ticket to the MAC team — do not submit individually

Step 3 — Provision a OneCloud Environment/Project (Check for Existing First) 🔧 Advanced

Source: OneCloud Console User Guide — general/non-US representation. Confirm with US Hosting Services or your Cloud Engineering POC if your tenant’s screens differ.

Navigate: OneCloud ConsoleMy OneCloud (left nav) → click + Add New in the My Projects tile. This opens the Create OneCloud Service guided form (5 sections).

SectionWhat you’ll do
I. Project InformationSelect Member Firm, Function, CMS, Platform (AWS, Azure, or GCP — later fields change based on this), Country Code, and Business Area. Click Continue.
II. Project Details and ContactsEnter OneCloud Project Name, Billing/Charge Code, Description, Budget Manager, Primary Contact, Responsible Business Owner, and Group Email Address (the last four require valid emails). Click Continue — or Exit to save as a Draft and resume later.
III. Environment ConfigurationCheck one or more environment types: Sandbox, Non-Production (NPD), Production (PRD). For each selected type, click its Confirm [Type] Environment checkbox, then: Azure only — fill in Role Management Group (Role, Service Principal/Security Group) and Configure Management Group; Non-Production/Production only — choose No Deloitte network connectivity or Deloitte network connectivity needed (Region, Subnet Mask Count, and Azure only BYON). Sandbox never has Deloitte network connectivity. Acknowledge any policy checkboxes — a green label means the environment is correctly configured, red means a field needs fixing. Click Continue.
IV. TagsEnter App/APM ID, Data Type, Data Classification, Data Qualifier, and Estimated Annual Spend. Click Continue.
V. ConfirmationReview the summary and submit.

⚠️ CRITICAL SECURITY NOTE — APM dependency: The App/APM ID field in the Tags section is the Product ID from Phase 4, Step 1. Complete the APM registration before starting this form — the Tags section includes a “Register my application in Service Now” link if you haven’t, but going back mid-form to register costs you a restart.

Adding an environment to an existing project: My OneCloud → select the project in My Projects → in the Environment tile, click + Add New (only visible if an environment type is still available to add) → follow the same Section III steps above → Submit.

⚠️ CRITICAL SECURITY NOTE: Duplicate OneCloud projects are one of the most common sources of untracked cloud spend and shadow infrastructure. The search-before-create step above is mandatory, not optional — treat it as a hard gate before any new project request is submitted.

Step 4 — Configure Secure Deployment Pipelines 🔧 Advanced

Note on sourcing: No ARMY Account-specific CI/CD standard or GitHub Actions runbook has been supplied for this section. The guidance below leads with GitHub Actions (since Phase 1 already provisions GitHub Enterprise for this account) using generic, publicly-documented GitHub Actions security practices — it is not yet verified against an ARMY Account or Deloitte-internal pipeline policy. Treat specifics (job structure, required checks, naming) as a starting template to confirm with your ARMY Account Cloud Engineering POC, not as settled policy. Other CI/CD tooling may be approved for this account — where it is, substitute the equivalent control at each bullet below rather than treating GitHub Actions as mandatory.

If using GitHub Actions (primary path, given GitHub Enterprise is already provisioned in Phase 1):

Regardless of pipeline tooling:

Phase 4 Completion Checklist


Appendix: Tool Glossary

ToolWhat It Is
VS CodeMicrosoft’s free code editor — your primary workspace for this playbook.
Node.jsRuns JavaScript outside the browser; required by supporting tooling.
PythonGeneral-purpose scripting language used across automation and data tasks.
Git BashLinux-style terminal for using Git on Windows (not needed on Mac).
CodexOpenAI coding model, used via Chat, Agent, and Agent (Full Access) modes.
Claude CodeAnthropic’s terminal/IDE agent for deep, multi-step reasoning across a project.
GitHub CopilotInline AI code-completion assistant built into VS Code.
GitHub EnterpriseDeloitte’s governed code hosting, version control, and collaboration platform.
APMApplication Portfolio Management — the system of record for registered Products.
PAMPrivileged Access Management — the overall governance model for elevated/service-account access, implemented via MAC + Secret Server (below).
MACModern Access Control — Deloitte’s system for requesting, approving, and periodically re-certifying entitlement/AD group access (Stage A of PAM).
Secret ServerDeloitte’s credential vault — where an already-entitled user checks out the actual privileged password to connect to a resource (Stage B of PAM).
OneCloudDeloitte’s cloud subscription and resource governance platform.
Pandoc (optional)Converts Markdown/Word/PDF formats — useful for turning playbook outputs into client-ready docs.