Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# AGENTS.md

## Purpose

MS365 CLI is a command-line interface for Microsoft 365 covering mail, calendar, OneDrive, and SharePoint workflows, with explicit support for AI-agent-driven use cases.

## Stack

- Node.js
- JavaScript
- Commander
- Vitest
- npm

## Important Paths

- `bin/`: CLI entrypoints
- `src/`: command and integration logic
- `config/`: configuration files
- `tests/`: unit and integration tests
- `docs/`: supporting documentation

## Common Commands

- `npm install`
- `npm test`
- `npm run test:run`
- `npm run test:unit`
- `npm run test:integration`

## Agent Notes

- Keep CLI behavior script-friendly and stable.
- Prefer additive command changes over breaking flag or output changes.
- Be careful with auth and token handling; do not log secrets.
Loading