Skip to content

Commit b80a61c

Browse files
committed
Merge branch 'development' into feature/update
2 parents 371948f + f84c599 commit b80a61c

6 files changed

Lines changed: 47 additions & 3 deletions

File tree

.agents/skills/humanizer/SKILL.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,30 @@ Avoiding AI patterns is only half the job. Sterile, voiceless writing is just as
5757

5858
**Be specific about feelings.** Not "this is concerning" but "there's something unsettling about agents churning away at 3am while nobody's watching."
5959

60+
### For landing pages and product copy
61+
62+
Human does not mean longer.
63+
64+
A lot of weak AI copy explains the product to death. It keeps telling you what the thing means, why it exists, how it fits into a workflow, and what philosophy sits behind it. Real product copy usually has more restraint.
65+
66+
Use these rules:
67+
68+
- Say what it is.
69+
- Say what it does.
70+
- Say where to get it.
71+
- Stop.
72+
73+
When editing marketing pages:
74+
75+
- Cut any sentence that explains the page more than the product.
76+
- Cut any sentence that sounds like the company is narrating its own strategy.
77+
- Prefer capability over commentary.
78+
- Prefer commands, nouns, and concrete outcomes over thesis statements.
79+
- If one short sentence does the job, do not expand it into three.
80+
- If a section exists only to justify the product's existence, delete or compress it.
81+
- Keep CTAs and subheads tight. They should scan fast.
82+
- Do not confuse "human" with "chatty." Brevity feels more confident.
83+
6084
### Before (clean but soulless):
6185

6286
> The experiment produced interesting results. The agents generated 3 million lines of code. Some developers were impressed while others were skeptical. The implications remain unclear.

.github/workflows/release-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
uses: actions/download-artifact@v7
149149
with:
150150
pattern: nuget-native-*
151-
path: nuget/smbcloud-cli
151+
path: nuget/smbcloud-cli/native
152152
merge-multiple: true
153153

154154
- name: Setup .NET SDK

.gitignore

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,23 @@
55
.zed
66
.vscode
77

8+
# Local .NET CLI state
9+
/.dotnet/
10+
811
# Secrets
912
.env
13+
1014
# Generated npm release artifacts
1115
/npm/cli-*/
12-
# Generated PyPI release artifacts
16+
17+
# Generated Python release artifacts
1318
/pypi/dist/
1419
/pypi/.venv/
20+
/sdk/python/dist/
21+
/sdk/python/.venv/
22+
23+
# Generated NuGet release artifacts
24+
/nuget/dist/
25+
/nuget/smbcloud-cli/bin/
26+
/nuget/smbcloud-cli/obj/
27+
/nuget/smbcloud-cli/native/

.nuget/NuGet/NuGet.Config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
5+
</packageSources>
6+
</configuration>

nuget/smbcloud-cli/SmbCloud.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121

2222
<ItemGroup>
2323
<None Include="README.md" Pack="true" PackagePath="" />
24-
<None Include="native/**/*" Pack="true" PackagePath="tools/$(TargetFramework)/any/native/%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" Visible="false" />
24+
<Content Include="native/**/*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" Pack="false" Visible="false" />
2525
</ItemGroup>
2626
</Project>

sdk/python/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
dist/
2+
.venv/

0 commit comments

Comments
 (0)