diff --git a/en/contribute/index.html b/en/contribute/index.html
index 064d384..7fdd0c4 100644
--- a/en/contribute/index.html
+++ b/en/contribute/index.html
@@ -2,21 +2,35 @@
Contributing
#
+Before you start, please fork this repository, clone it locally, and set up your Go development environment.
+Here are some guidelines and suggestions for contributing code. You don’t have to strictly follow them, but they help speed up review and merging:
+
+Open an issue before adding new features, so we can discuss design and implementation details and avoid work that doesn’t fit the project design.
+Use modern development tools, format your code before committing, and keep the style consistent.
+Use Conventional Commits, and avoid vague or overly simple commit messages.
+
Contributing New Storage Backend
#
-Fork this repository and clone it to your local machine.
Add the new storage backend type in pkg/enums/storage/storages.go and run code generation.
Define the storage backend configuration in the config/storage directory and add it to config/storage/factory.go.
Create a new package in the storage directory, implement the storage backend, and import it in storage/storage.go.
Update the documentation to include configuration details for the new storage backend.
-">
Contributing | Save Any Bot
+
+
+ Contributing New Parsers
+ #
+
+You can either implement native parsers in Go (recommended), or write JavaScript-based parser plugins.">Contributing | Save Any Bot