commit a5b166582b4c72f960af6a9c5f3808664cdc2a86 Author: qianyi Date: Fri Dec 26 23:37:08 2025 +0800 ok diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md new file mode 100644 index 0000000..4e4fa39 --- /dev/null +++ b/.github/copilot-instructions.md @@ -0,0 +1,23 @@ +# Copilot Instructions for Amdwie Project + +## Project Overview +This workspace (`Amdwie`) appears to be empty or in initial setup phase. No source code, configuration files, or documentation were found during analysis. + +## Architecture and Components +- No major components identified +- No service boundaries or data flows discovered +- No structural decisions documented + +## Developer Workflows +- No build, test, or debug commands established +- No project-specific conventions observed + +## Patterns and Conventions +- No codebase-specific patterns found +- No integration points or external dependencies identified + +## Key Files and Directories +- No key files or directories to reference + +## Notes +This instructions file was generated on an empty workspace. Please populate the project with code and rerun analysis to generate meaningful AI guidance. \ No newline at end of file diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..c1d55d2 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,74 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Project Status + +**This is a new, empty project** currently in initial setup phase. The workspace (`Amdwie`) contains only: +- `.github/copilot-instructions.md` - GitHub Copilot guidance file +- `main.py` - Empty Python placeholder file + +No source code, configuration files, or documentation have been established yet. + +## Project Setup + +Since this is a blank project, the first step is to determine the project type and set up the appropriate structure: + +### Common Project Types and Initial Setup + +#### Python Project +```bash +# Initialize Python project +python -m venv venv +# On Windows: +venv\Scripts\activate +# On macOS/Linux: +source venv/bin/activate + +# Create requirements.txt or pyproject.toml +echo "python-dotenv" > requirements.txt +``` + +#### Node.js/JavaScript Project +```bash +# Initialize Node.js project +npm init -y +# Or with TypeScript +npx tsc --init +``` + +#### Web Application +```bash +# For React +npx create-react-app . +# For Vue +npm create vue@latest +# For Next.js +npx create-next-app@latest +``` + +## Next Steps + +1. **Determine project type** - What kind of application is this? +2. **Set up project structure** - Create appropriate directories and files +3. **Install dependencies** - Based on the chosen technology stack +4. **Create basic configuration** - Build, test, and development setup +5. **Update this file** - Once the project structure is established + +## Current Limitations + +- No build commands established +- No test framework configured +- No development server setup +- No code quality tools (linters, formatters) +- No deployment configuration + +## Notes from Existing Files + +The `.github/copilot-instructions.md` file indicates this workspace is empty and recommends populating the project with code before meaningful AI guidance can be generated. + +Once the project structure is established, this CLAUDE.md file should be updated to include: +- Specific build, test, and development commands +- Project architecture and key components +- Development workflows and conventions +- Important configuration details \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..e69de29