agent-docs 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/.cursor/plans/OPTIMISE.md +379 -0
  2. package/.cursor/plans/VERSIONING.md +207 -0
  3. package/.cursor/rules/IMPORTANT.mdc +97 -0
  4. package/.github/ISSUE_TEMPLATE/bug_report.md +13 -0
  5. package/.github/ISSUE_TEMPLATE/feature_request.md +17 -0
  6. package/.github/dependabot.yml +38 -0
  7. package/.github/pull_request_template.md +10 -0
  8. package/.github/workflows/format.yml +35 -0
  9. package/CODE_OF_CONDUCT.md +64 -0
  10. package/CONTRIBUTING.md +52 -0
  11. package/LICENSE.md +20 -0
  12. package/PLAN.md +707 -0
  13. package/README.md +133 -0
  14. package/SECURITY.md +21 -0
  15. package/docs/APEXANNOTATIONS.md +472 -0
  16. package/docs/APEXDOC.md +198 -0
  17. package/docs/CML.md +877 -0
  18. package/docs/CODEANALYZER.md +435 -0
  19. package/docs/CONTEXTDEFINITIONS.md +617 -0
  20. package/docs/ESLINT.md +827 -0
  21. package/docs/ESLINTJSDOC.md +520 -0
  22. package/docs/FIELDSERVICE.md +4452 -0
  23. package/docs/GRAPHBINARY.md +208 -0
  24. package/docs/GRAPHENGINE.md +616 -0
  25. package/docs/GRAPHML.md +337 -0
  26. package/docs/GRAPHSON.md +302 -0
  27. package/docs/GREMLIN.md +490 -0
  28. package/docs/GRYO.md +232 -0
  29. package/docs/HUSKY.md +106 -0
  30. package/docs/JEST.md +387 -0
  31. package/docs/JORJE.md +537 -0
  32. package/docs/JSDOC.md +621 -0
  33. package/docs/PMD.md +910 -0
  34. package/docs/PNPM.md +409 -0
  35. package/docs/PRETTIER.md +716 -0
  36. package/docs/PRETTIERAPEX.md +874 -0
  37. package/docs/REVENUETRANSACTIONMANAGEMENT.md +887 -0
  38. package/docs/TINKERPOP.md +252 -0
  39. package/docs/VITEST.md +706 -0
  40. package/docs/VSCODE.md +231 -0
  41. package/docs/XPATH31.md +213 -0
  42. package/package.json +32 -0
  43. package/postinstall.mjs +51 -0
  44. package/prettier.config.js +18 -0
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: '[FEATURE] '
5
+ labels: enhancement
6
+ assignees: ''
7
+ ---
8
+
9
+ ## Which library or Salesforce API is missing?
10
+
11
+ ## Is there an official page?
12
+
13
+ ## Are there other useful pages?
14
+
15
+ ## Is there a public source code repository?
16
+
17
+ ## Is this related to any other files already in docs?
@@ -0,0 +1,38 @@
1
+ version: 2
2
+ updates:
3
+ # Update npm/pnpm dependencies (package.json and pnpm-lock.yaml)
4
+ - package-ecosystem: 'npm'
5
+ directory: '/'
6
+ schedule:
7
+ interval: 'daily'
8
+ open-pull-requests-limit: 10
9
+ labels:
10
+ - 'dependencies'
11
+ - 'npm'
12
+ commit-message:
13
+ prefix: 'chore'
14
+ include: 'scope'
15
+ groups:
16
+ dev-dependencies:
17
+ patterns:
18
+ - '*'
19
+ update-types:
20
+ - 'minor'
21
+ - 'patch'
22
+
23
+ # Update GitHub Actions workflows
24
+ - package-ecosystem: 'github-actions'
25
+ directory: '/'
26
+ schedule:
27
+ interval: 'daily'
28
+ open-pull-requests-limit: 10
29
+ labels:
30
+ - 'dependencies'
31
+ - 'github-actions'
32
+ commit-message:
33
+ prefix: 'chore'
34
+ include: 'scope'
35
+ groups:
36
+ github-actions:
37
+ patterns:
38
+ - '*'
@@ -0,0 +1,10 @@
1
+ ## Description
2
+
3
+ <!-- Provide a brief description of your changes -->
4
+
5
+ ## Type of Change
6
+
7
+ - [ ] New document(s)
8
+ - [ ] Update document(s)
9
+ - [ ] New script(s)
10
+ - [ ] Update script(s)
@@ -0,0 +1,35 @@
1
+ name: Format
2
+ permissions:
3
+ contents: read
4
+
5
+ on:
6
+ push:
7
+ branches: [main]
8
+ pull_request:
9
+ branches: [main]
10
+
11
+ jobs:
12
+ format:
13
+ runs-on: ubuntu-latest
14
+
15
+ strategy:
16
+ matrix:
17
+ node-version: [24]
18
+
19
+ steps:
20
+ - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
21
+
22
+ - name: Install pnpm
23
+ uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4
24
+
25
+ - name: Use Node.js ${{ matrix.node-version }}
26
+ uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6
27
+ with:
28
+ node-version: ${{ matrix.node-version }}
29
+ cache: 'pnpm'
30
+
31
+ - name: Install dependencies
32
+ run: pnpm install --frozen-lockfile
33
+
34
+ - name: Check formatting
35
+ run: pnpm format:check
@@ -0,0 +1,64 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the overall
26
+ community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or advances of
31
+ any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email address,
35
+ without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies within all community spaces and also applies when
49
+ an individual is officially representing the community in public spaces.
50
+
51
+ ## Enforcement
52
+
53
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
54
+ reported to the community leaders responsible for enforcement at
55
+ security@starch.uk. All complaints will be reviewed and investigated promptly
56
+ and fairly.
57
+
58
+ ## Attribution
59
+
60
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
61
+ version 2.0, available at
62
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html
63
+
64
+ [homepage]: https://www.contributor-covenant.org
@@ -0,0 +1,52 @@
1
+ # Contributing to agent-docs
2
+
3
+ Thank you for considering contributing to agent-docs! We welcome contributions
4
+ from the community.
5
+
6
+ ## How to Contribute
7
+
8
+ 1. **Fork the repository** and clone it to your local machine
9
+ 2. **Create a new branch** for your feature or bug fix:
10
+ ```bash
11
+ git checkout -b feature/your-feature-name
12
+ ```
13
+ 3. **Make your changes** following the project's code style and conventions
14
+ 4. **Run tests** to ensure everything passes:
15
+ ```bash
16
+ pnpm test
17
+ ```
18
+ 5. **Format your code**:
19
+ ```bash
20
+ pnpm format
21
+ ```
22
+ 6. **Commit your changes** with a descriptive commit message:
23
+ ```bash
24
+ git commit -m "Add feature: your feature description"
25
+ ```
26
+ 7. **Push your changes** to your forked repository:
27
+ ```bash
28
+ git push origin feature/your-feature-name
29
+ ```
30
+ 8. **Open a pull request** to the main repository's `main` branch
31
+
32
+ ## Code Style
33
+
34
+ - Follow TypeScript strict mode conventions
35
+ - Use Prettier for formatting (run `pnpm format` before committing)
36
+ - Write comprehensive tests for new features
37
+ - Ensure all tests pass before submitting a PR
38
+
39
+ ## Reporting Issues
40
+
41
+ If you encounter any issues or have suggestions for improvements, please open an
42
+ issue in the repository with:
43
+
44
+ - A clear description of the issue
45
+ - Steps to reproduce (if applicable)
46
+ - Expected vs actual behavior
47
+ - Environment details (OS, Node version, etc.)
48
+
49
+ ## License
50
+
51
+ By contributing to agent-docs, you agree that your contributions will be
52
+ licensed under the MIT License.
package/LICENSE.md ADDED
@@ -0,0 +1,20 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 starch-uk
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.