Skip to content

Commit

Permalink
chore: adding CONTRIBUTING for integrations and removing DS_Store (#231)
Browse files Browse the repository at this point in the history
Co-authored-by: josh <[email protected]>
  • Loading branch information
devjsc and josh authored Feb 23, 2024
1 parent 46731f8 commit 2a53106
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
Binary file removed integrations/.DS_Store
Binary file not shown.
42 changes: 42 additions & 0 deletions integrations/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Contributing

Contributions to integrations are welcome 😊 the integrations repo is the place where you can share how you've integrated uAgents with other technology.

## A few simple rules

- Search the repo for the integration you're submitting, just in case.

- run [black](https://pypi.org/project/black/) on your code before submitting.

- Include a `project.json` file, example of:

```js
{
"title": "Bert Base Uncased",
"description": "BERT base model (uncased) Pretrained model on English language using a masked language modeling (MLM) objective.",
"categories": ["Text Classification", "Hugging Face", "Text Generation"],
"deltav": false
}
```

Set deltav to true if your agent is built using agentverse and is accessible by DeltaV.

## Commits and PRs

This project uses Conventional Commits to generate release notes and to determine versioning. Commit messages should adhere to this standard and be of the form:

You will need to fork uAgents and then clone the repo to make PRs to this project. Please be descriptive in your commits:

```bash
git commit -m "feat: add new feature x"
git commit -m "fix: fix bug in feature x"
git commit -m "docs: add documentation for feature x"
git commit -m "test: add test suite for feature x"
```

Further details on `conventional commits` can be found here: <https://www.conventionalcommits.org/en/v1.0.0/>


## Support and help

Suppport and extra information is available in our [documentation](https://fetch.ai/docs) and on [Discord](https://discord.com/invite/fetchai)

0 comments on commit 2a53106

Please sign in to comment.