-
Notifications
You must be signed in to change notification settings - Fork 0
feat: DISHA v5.0.0 β Global Launch & Elite Modernization #66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| # Contributor Covenant Code of Conduct | ||
|
|
||
| ## Our Pledge | ||
|
|
||
| In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. | ||
|
|
||
| ## Our Standards | ||
|
|
||
| Examples of behavior that contributes to creating a positive environment include: | ||
|
|
||
| * Using welcoming and inclusive language | ||
| * Being respectful of differing viewpoints and experiences | ||
| * Gracefully accepting constructive criticism | ||
| * Focusing on what is best for the community | ||
| * Showing empathy towards other community members | ||
|
|
||
| Examples of unacceptable behavior by participants include: | ||
|
|
||
| * The use of sexualized language or imagery and unwelcome sexual attention or advances | ||
| * Trolling, insulting/derogatory comments, and personal or political attacks | ||
| * Public or private harassment | ||
| * Publishing others' private information, such as a physical or electronic address, without explicit permission | ||
| * Other conduct which could reasonably be considered inappropriate in a professional setting | ||
|
|
||
| ## Our Responsibilities | ||
|
|
||
| Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. | ||
|
|
||
| Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. | ||
|
|
||
| ## Scope | ||
|
|
||
| This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. | ||
|
|
||
| ## Enforcement | ||
|
|
||
| Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at `conduct@disha.agi`. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. | ||
|
|
||
| Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. | ||
|
|
||
| ## Attribution | ||
|
|
||
| This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html | ||
|
|
||
| [homepage]: https://www.contributor-covenant.org | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,59 +1,61 @@ | ||||||||||||||||||||||
| ### Prerequisites | ||||||||||||||||||||||
| # Contributing to DISHA v5.0.0 | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| - **Bun** 1.1+ (CLI runtime) | ||||||||||||||||||||||
| - **Node.js** 18+ (MCP server) | ||||||||||||||||||||||
| - **Python** 3.11+ (AI platform, decision engine, cyber defense) | ||||||||||||||||||||||
| - **Git** | ||||||||||||||||||||||
| First off, thank you for considering contributing to DISHA! It's people like you that make DISHA an elite tool for the AGI community. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Setup | ||||||||||||||||||||||
| ## π Code of Conduct | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||
| git clone https://github.com/Tashima-Tarsh/Disha.git | ||||||||||||||||||||||
| cd Disha | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
| By participating in this project, you agree to abide by our [Code of Conduct](./CODE_OF_CONDUCT.md). | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### MCP Server Development | ||||||||||||||||||||||
| ## π Getting Started | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||
| cd mcp-server | ||||||||||||||||||||||
| npm install | ||||||||||||||||||||||
| npm run dev # Run with tsx (no build step) | ||||||||||||||||||||||
| npm run build # Compile to dist/ | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
| ### Prerequisites | ||||||||||||||||||||||
| - **Bun** β₯ 1.1.0 (Primary runtime) | ||||||||||||||||||||||
| - **Python** β₯ 3.13 (AI & ML modules) | ||||||||||||||||||||||
| - **Node.js** β₯ 20 (Compatibility) | ||||||||||||||||||||||
| - **Docker** (For full ecosystem testing) | ||||||||||||||||||||||
|
Comment on lines
+11
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. **Python version mismatch between documentation and CI.**The documentation claims Python β₯ 3.13 as a prerequisite, but Python 3.14.0 was released on October 7, 2025, and Python 3.13.13 was released on April 7, 2026 β so Python 3.13 does exist. However, there's a mismatch: the CI workflow ( Either update the CI to use Python 3.13+ or adjust this documentation to reflect the actual minimum version used in CI (Python 3.11). βοΈ Option A: Lower documented requirement to match CI ### Prerequisites
- **Bun** β₯ 1.1.0 (Primary runtime)
-- **Python** β₯ 3.13 (AI & ML modules)
+- **Python** β₯ 3.11 (AI & ML modules)
- **Node.js** β₯ 20 (Compatibility)βοΈ Option B: Update CI to match documentationUpdate - name: Set up Python
uses: actions/setup-python@v5
with:
- python-version: "3.11"
+ python-version: "3.13"π Committable suggestion
Suggested change
π§° Toolsπͺ markdownlint-cli2 (0.22.0)[warning] 11-11: Headings should be surrounded by blank lines (MD022, blanks-around-headings) π€ Prompt for AI Agents |
||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Setup | ||||||||||||||||||||||
| 1. Fork the repository | ||||||||||||||||||||||
| 2. Clone your fork: `git clone https://github.com/Tashima-Tarsh/Disha.git` | ||||||||||||||||||||||
| 3. Install dependencies: `bun install` | ||||||||||||||||||||||
| 4. Create a new branch: `git checkout -b feature/your-feature-name` | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Linting & Type Checking | ||||||||||||||||||||||
| ## π οΈ Development Workflow | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### CLI Core (TypeScript) | ||||||||||||||||||||||
| The core engine is located in `src/`. We use **Biome** for linting and formatting. | ||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||
| # From the repo root β checks the src/ | ||||||||||||||||||||||
| npm run lint # Biome lint | ||||||||||||||||||||||
| npm run typecheck # TypeScript type check | ||||||||||||||||||||||
| bun run lint # Check for issues | ||||||||||||||||||||||
| bun run format # Auto-format code | ||||||||||||||||||||||
| bun run build # Build the CLI bundle | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### Python Modules | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ### AI Platforms (Python) | ||||||||||||||||||||||
| Each platform has its own `requirements.txt`. | ||||||||||||||||||||||
| ```bash | ||||||||||||||||||||||
| # AI Platform | ||||||||||||||||||||||
| cd ai-platform/backend && pip install -r requirements.txt | ||||||||||||||||||||||
| # Example: AI Platform | ||||||||||||||||||||||
| cd ai-platform/backend | ||||||||||||||||||||||
| pip install -r requirements.txt | ||||||||||||||||||||||
| python -m pytest tests/ | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Decision Engine (mock mode β no LLM needed) | ||||||||||||||||||||||
| cd decision-engine && pip install -r requirements.txt | ||||||||||||||||||||||
| DISHA_MODEL_PROVIDER=mock python -m pytest tests/ -v | ||||||||||||||||||||||
| ## π Coding Standards | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| # Cyber Defense | ||||||||||||||||||||||
| cd cyber-defense && pip install torch --index-url https://download.pytorch.org/whl/cpu | ||||||||||||||||||||||
| ``` | ||||||||||||||||||||||
| - **TypeScript:** Strict mode, ES Modules, descriptive naming. | ||||||||||||||||||||||
| - **Python:** PEP 8, 120 char line limit, docstrings for all public classes/methods. | ||||||||||||||||||||||
| - **CSS:** Tailwind CSS utility-first approach with semantic HSL tokens. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Code Style | ||||||||||||||||||||||
| ## π¬ Pull Request Process | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| For any new code (MCP server, tooling, scripts): | ||||||||||||||||||||||
| 1. Ensure your code passes all linting and tests. | ||||||||||||||||||||||
| 2. Update the README or documentation if you've added new features. | ||||||||||||||||||||||
| 3. Submit the PR with a clear description of the "What" and the "Why". | ||||||||||||||||||||||
| 4. One of the maintainers (Tashima Tarsh) will review your PR within 48 hours. | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| - TypeScript with strict mode | ||||||||||||||||||||||
| - ES modules | ||||||||||||||||||||||
| - 2-space indentation (tabs for `src/` to match Biome config) | ||||||||||||||||||||||
| - Descriptive variable names, minimal comments | ||||||||||||||||||||||
| - Python: PEP 8, max line length 120, flake8 for linting | ||||||||||||||||||||||
| ## π Reporting Bugs & Suggestions | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| Please use [GitHub Issues](https://github.com/Tashima-Tarsh/Disha/issues) to report bugs or suggest new features. For security-related reports, please see our [Security Policy](./SECURITY.md). | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| ## Questions? | ||||||||||||||||||||||
| --- | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| Open an issue at https://github.com/Tashima-Tarsh/Disha/issues | ||||||||||||||||||||||
| <sub>Dedicated to the evolution of digital thought.</sub> | ||||||||||||||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π§Ή Nitpick | π΅ Trivial
Consider upgrading the template to Contributor Covenant v2.1.
Using the newer version improves clarity around enforcement guidelines and reporting expectations.
π€ Prompt for AI Agents