> For the complete documentation index, see [llms.txt](https://1build.gitbook.io/1build/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://1build.gitbook.io/1build/contributing.md).

# Contributing

## [Contribution guidelines](https://github.com/gopinath-langote/1build/blob/master/CONTRIBUTING.md)

First of all: Thank you! We really appreciate your efforts to make 1build better ❤️

Create or find an issue you would like to implement:

* issues with the label `help wanted` are ready to be picked up and implemented
* review the existing issues and ensure that you are not going to create a duplicate
* create your issue and wait for comments from maintainers
* once the issue is discussed and assigned to you – feel free to implement

## Developing 1build

1. Prepare project (Install GoLang 1.9.x)

   ```bash
   git clone https://github.com/gopinath-langote/1build
   cd 1build
   go get -u github.com/golang/dep/cmd/dep
   dep ensure
   ```
2. Make sure that all the existing tests are passed, extend tests if needed

   ```bash
   go test -v -cover github.com/gopinath-langote/1build/testing -run . 
   ```
3. Project uses major library to build app - [cobra](https://github.com/spf13/cobra)
4. Update necessary documents if needed – Readme etc.
5. Submit pull request
6. Make sure all the checks are passing
7. Wait for maintainers to review the code
8. Thanks for you contribution 😄


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://1build.gitbook.io/1build/contributing.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
