# ASDM Workspace AI-assisted software development workspace powered by the ASDM (Agentic Software Development Methodology) platform. ## Workspace Overview This workspace is configured with the following ASDM toolsets and specs: - **Basic Tools** (`basic-tools` v0.0.2) - Git operations and project startup commands - **Context Builder** (`context-builder` v0.0.1) - Automated context building for AI models - **Code Review** spec (`code-review` v1.0.0) - Code review guidelines ## Directory Structure ``` .asdm/ ├── contexts/ ## Workspace context files (generated by Context Builder) ├── specs/ │ └── code-review/ ## Code review spec │ ├── README.md │ └── manifest.json ├── toolsets/ │ ├── basic-tools/ ## Basic Tools toolset │ │ ├── actions/ │ │ │ ├── asdm-git-commit.md │ │ │ ├── asdm-git-commit-message.md │ │ │ └── asdm-start-project.md │ │ ├── spec/ │ │ │ ├── git-commit-message-spec.md │ │ │ └── git-commit-spec.md │ │ ├── INSTALL.md │ │ ├── README.md │ │ └── manifest.json │ └── context-builder/ ## Context Builder toolset │ ├── actions/ │ │ ├── asdm-context-build.md │ │ ├── asdm-context-update.md │ │ └── specs/ │ │ ├── index.md │ │ ├── architecture.md │ │ ├── api.md │ │ ├── data-models.md │ │ ├── deployment.md │ │ ├── standard-coding-style.md │ │ └── standard-project-structure.md │ ├── INSTALL.md │ ├── README.md │ └── manifest.json └── workspace-install.json ## Workspace configuration .codebuddy/ └── commands/ ## CodeBuddy command shortcuts ├── asdm-context-build.md ├── asdm-context-update.md ├── asdm-git-commit.md ├── asdm-git-commit-message.md └── asdm-start-project.md .workspace/ ## Working directory for project files ``` ## Available Commands | Command | Description | |---------|-------------| | `/asdm-start-project` | Detect workspace context and start project in development mode | | `/asdm-git-commit-message` | Generate a standard git commit message | | `/asdm-git-commit` | Commit changes with the generated commit message | | `/asdm-context-build` | Build/initialize context for the current workspace | | `/asdm-context-update` | Update context for the current workspace | ## Getting Started 1. **Install toolsets** - Follow instructions in the respective `INSTALL.md` files: - `.asdm/toolsets/basic-tools/INSTALL.md` - `.asdm/toolsets/context-builder/INSTALL.md` 2. **Build workspace context** - Run `/asdm-context-build` to generate context files under `.asdm/contexts/`. 3. **Start development** - Run `/asdm-start-project` to detect workspace context and begin development. ## Code Review Checklist Refer to `.asdm/specs/code-review/README.md` for review guidelines: - Code style and formatting - Logic correctness - Error handling - Performance considerations ## Copyright & License Copyright (c) 2026 LeansoftX.com & iSoftStone. All rights reserved. Licensed under the PROPRIETARY SOFTWARE LICENSE.